
/* Page Title Section */
.page-title {
  background: white;
  padding: 3rem 0;
  text-align: center;
  color: #0f0f4d;
}

.page-title h1 {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Service Sections */
.service-section {
  padding: 5rem 0;
}

.service-section.dark-bg {
  background: linear-gradient(135deg, #1a1a6e 0%, #0f0f4d 100%);
  color: white;
}

.service-section.light-bg {
  background: white;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.service-main {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-main.reverse {
  flex-direction: row-reverse;
}

.service-image {
  flex: 0 0 350px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #87ceeb, #98d8e8);
  height: 250px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a6e;
  font-size: 4rem;
}

.service-content {
  flex: 1;
}

.service-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.light-bg .service-content h2 {
  color: #1a1a6e;
}

.service-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
}

/* Service Details Grid */
.service-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.detail-card {
  border-radius: 15px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.dark-bg .detail-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.light-bg .detail-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
}

.detail-card:hover {
  transform: translateY(-5px);
}

.dark-bg .detail-card:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.light-bg .detail-card:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.dark-bg .detail-card h3 {
  color: #87ceeb;
}

.light-bg .detail-card h3 {
  color: #1a1a6e;
}

.detail-card ul {
  list-style: none;
  padding-left: 0;
}

.detail-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  opacity: 0.9;
  font-size: 0.95rem;
  line-height: 1.6;
}

.detail-card li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f39c12;
  font-weight: bold;
}

/* CTA Section */
.service-cta-section {
  background: linear-gradient(135deg, #0f0f4d 0%, #1a1a6e 100%);
  padding: 5rem 0;
  text-align: center;
  color: white;
}

.service-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.service-cta-button {
  display: inline-block;
  background: white;
  color: #1a1a6e;
  padding: 1rem 3rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .page-title h1 {
    font-size: 2rem;
  }

  .service-main,
  .service-main.reverse {
    flex-direction: column;
  }

  .service-image {
    flex: 1;
    width: 100%;
    max-width: 400px;
  }

  .service-content h2 {
    font-size: 2rem;
  }

  .service-details {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

}
