/* Custom CSS Styles */
body {
/* font-family: "Roboto", sans-serif;*/
 background-color: #fffae5;
 margin: 0;
 padding: 0;
}

.logo-circle img{
  width:75px;
}

/* Top Header Bar */
.top-header {
  background-color: #1e4a72;
  color: white;
  padding: 10px 0;
  font-size: 14px;
}

.contact-info span {
  color: white;
}

.contact-info i {
  margin-right: 8px;
}

.social-links {
  color: white;
  font-size: 14px;
}

.social-links span {
  cursor: pointer;
}

.social-links span:hover {
  text-decoration: underline;
}

/* Navigation Bar */
.custom-navbar {
  background-color: #f5f1e8;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #d4af37;
}

.logo-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4af37, #f4d03f);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d4af37;
}

.logo-text {
  color: #1e4a72;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.navbar-nav {
  align-items: center;
}

.nav-link {
  color: #1e4a72 !important;
  font-weight: 700;
  padding: 0 8px !important;
  font-size: 15px;
}

.nav-link:hover {
  color: #d4af37 !important;
}

.nav-separator {
  color: #1e4a72;
  font-weight: bold;
  padding: 2px 5px;
}

.appointment-btn {
  background-color: #1e4a72;
  color: #ffcf10;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.appointment-btn:hover {
  background-color: #2c5a82;
  color: white;
}

/* Hero Section */
.hero-section {
  background-color: #f5f1e8;
  padding: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
}

.carousel-item {
/*  min-height: 100vh;*/
}

.hero-content {
  padding: 50px 30px;
  padding-top: 0px;
}

.trusted-badge {
  background-color: #f4d03f;
  color: #1e4a72;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 6px;
}

.hero-title {
  color: #1e4a72;
  font-size: 2.9rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 3px;
}

.doctor-name {
  color: #1e4a72;
  font-weight: 800;
}

.hero-subtitle {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 11px;
  font-weight: 400;
}

.consult-btn {
  background-color: transparent;
  color: #1e4a72;
  border: 2px solid #1e4a72;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.consult-btn:hover {
  background-color: #1e4a72;
  color: white;
}

/* Doctor Image Container */
.doctor-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 50px 30px;
}

.doctor-image {
  position: relative;
  z-index: 3;
  width: 500px;
  height: 500px;
 /* border-radius: 50%;
  overflow: hidden;
  border: 8px solid #1e4a72;*/
}

.doctor-image img {
  /* width: 100%; */
  /* height: 100%; */
  /* object-fit: cover; */
  /* object-position: center; */
}

.decorative-circle-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  border: 3px dashed #f4d03f;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.decorative-circle-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 2px solid #f4d03f;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0.3;
}

/* Custom Carousel Indicators */
.custom-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  display: flex;
  gap: 15px;
}

.custom-indicators button {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  border: none;
  background-color: rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  text-indent: -999px;
  overflow: hidden;
}

.custom-indicators button.active {
  background-color: #d4af37;
  width: 60px;
}

.custom-indicators button:hover {
  background-color: #d4af37;
}

/* Info Cards Section */
.info-cards-section {
  padding: 80px 0;
  background-color: #f5f1e8;
}

.info-card {
  background: #1e4a72;
  border-radius: 20px;
  padding: 30px 25px;
  position: relative;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 74, 114, 0.2);
}

.location-card {
  background: #f4d03f;
}

.card-icon {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 40px;
  height: 40px;
  background: #f4d03f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-card .card-icon {
  background: #1e4a72;
}

.card-icon i {
  color: #1e4a72;
  font-size: 18px;
}

.location-card .card-icon i {
  color: #f4d03f;
}

.card-title {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
  /* padding-right: 60px; */
}

.location-card .card-title {
  color: #1e4a72 !important;
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.time-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.day {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
}

.time {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.location-text {
  color: #1e4a72;
  font-size: 14px;
  margin: 0 0 8px 0;
  font-weight: 400;
}

.get-directions {
  color: #1e4a72;
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.get-directions:hover {
  color: #2c5a82;
  text-decoration: underline;
}

.appointment-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.call-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
}

.phone-number {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

/* Treatments Section */
.treatments-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.treatments-header {
  margin-bottom: 60px;
}

.section-badge {
  background-color: #f4d03f;
  color: #1e4a72;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 30px;
}

.section-title {
  color: #1e4a72;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.section-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  padding-left: 20px;
}

.treatments-carousel-container {
  position: relative;
}

.treatment-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* height: 100%; */
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.treatment-image {
  height: 200px;
  overflow: hidden;
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-image img {
  transform: scale(1.05);
}

.treatment-content {
  padding: 25px 20px;
}

.treatment-title {
  color: #1e4a72;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.treatment-description {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.read-more-link {
  color: #1e4a72;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.read-more-link:hover {
  color: #d4af37;
  text-decoration: underline;
}

.treatments-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}

.carousel-nav-buttons {
  display: flex;
  gap: 15px;
}

.carousel-nav-btn {
  width: 50px;
  height: 50px;
  border: 2px solid #1e4a72;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e4a72;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-nav-btn:hover {
  background-color: #1e4a72;
  color: white;
}

.view-all-btn {
  background: transparent;
  color: #1e4a72;
  border: 2px solid #1e4a72;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-all-btn:hover {
  background-color: #1e4a72;
  color: white;
}

/* Appointment CTA Section */
.appointment-cta-section {
  background-color: #1e4a72;
  padding: 40px 0;
}

.cta-content {
  color: white;
}

.cta-title {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.4;
}

.cta-appointment-btn {
  background-color: #f4d03f;
  color: #1e4a72;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cta-appointment-btn:hover {
  background-color: #d4af37;
  color: #1e4a72;
  transform: translateY(-2px);
}

/* About Doctor Section */
.about-doctor-section {
  padding: 100px 0;
  background-color: #f5f1e8;
  position: relative;
}

.about-badge {
  margin-bottom: 40px;
}

.about-title {
  color: #1e4a72;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

.about-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.doctor-profile-container {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.doctor-profile-image {
  flex-shrink: 0;
  width: 200px;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.doctor-profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.doctor-credentials {
  flex-grow: 1;
  padding-top: 20px;
}

.doctor-name {
  color: #1e4a72;
  font-size: 2.9rem;
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

.doctor-degree {
  color: #1e4a72;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.fellowships {
  margin-bottom: 20px;
}

.fellowship-item {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 5px;
  line-height: 1.4;
}

.doctor-signature {
  margin-bottom: 25px;
}

.signature-text {
  font-family: "Dancing Script", cursive;
  color: #1e4a72;
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
}

.doctor-read-more-btn {
  background: transparent;
  color: #1e4a72;
  border: 2px solid #1e4a72;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.doctor-read-more-btn:hover {
  background-color: #1e4a72;
  color: white;
}

.decorative-logo {
  position: absolute;
  top: 0;
  right: -50px;
  width: 120px;
  height: 120px;
  opacity: 0.1;
}

.logo-emblem {
  width: 100%;
  height: 100%;
  border: 3px solid #d4af37;
  border-radius: 50%;
  position: relative;
}

.logo-emblem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  border: 2px solid #d4af37;
  border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .section-description {
    padding-left: 0;
  }

  .treatments-controls {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .about-title {
    font-size: 1.8rem;
  }

  .doctor-profile-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .decorative-logo {
    display: none;
  }
}

@media (max-width: 768px) {
  .treatments-section {
    padding: 60px 0;
  }

  .treatments-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .treatment-image {
    height: 180px;
  }

  .treatment-content {
    padding: 20px 15px;
  }

  .treatment-title {
    font-size: 1.1rem;
  }

  .treatment-description {
    font-size: 0.85rem;
  }

  .treatments-controls {
    margin-top: 30px;
  }

  .carousel-nav-btn {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }

  .appointment-cta-section {
    padding: 30px 0;
    text-align: center;
  }

  .cta-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .about-doctor-section {
    padding: 60px 0;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .doctor-profile-image {
    width: 150px;
    height: 200px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.5rem;
  }

  .treatment-image {
    height: 160px;
  }

  .treatment-content {
    padding: 15px;
  }

  .carousel-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .view-all-btn {
    padding: 10px 25px;
    font-size: 13px;
  }

  .cta-title {
    font-size: 1.2rem;
  }

  .cta-subtitle {
    font-size: 0.9rem;
  }

  .about-title {
    font-size: 1.3rem;
  }

  .doctor-name {
    font-size: 1.3rem;
  }

  .signature-text {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .doctor-image {
    width: 300px;
    height: 300px;
  }

  .decorative-circle-1 {
    width: 350px;
    height: 350px;
  }

  .decorative-circle-2 {
    width: 400px;
    height: 400px;
  }

  .hero-content {
    text-align: center;
    padding: 30px 15px;
  }

  .doctor-image-container {
    margin-top: 30px;
    padding: 30px 15px;
  }

  .custom-indicators {
    bottom: 20px;
  }

  .custom-indicators button {
    width: 30px;
    height: 3px;
  }

  .custom-indicators button.active {
    width: 45px;
  }
}

@media (max-width: 576px) {
  .top-header {
    text-align: center;
  }

  .contact-info {
    margin-bottom: 10px;
  }

  .social-links {
    margin-top: 10px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .doctor-image {
    width: 250px;
    height: 250px;
  }

  .decorative-circle-1 {
    width: 300px;
    height: 300px;
  }

  .decorative-circle-2 {
    width: 350px;
    height: 350px;
  }
}

/* Responsive adjustments for info cards */
@media (max-width: 768px) {
  .info-cards-section {
    padding: 60px 0;
  }

  .info-card {
    height: 120px;
    padding: 25px 20px;
  }

  .card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .card-icon {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 20px;
  }

  .card-icon i {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .info-cards-section {
    padding: 40px 0;
  }

  .info-card {
    height: 110px;
    padding: 20px 15px;
  }

  .card-title {
    font-size: 15px;
    padding-right: 50px;
  }

  .time,
  .phone-number {
    font-size: 15px;
  }

  .day,
  .call-text,
  .location-text {
    font-size: 13px;
  }
}








 .conditions-badge {
            background-color: #ffd700;
            color: #333;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        .main-heading {
            color: #1e3a8a;
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }
        
        .description-text {
            color: #6b7280;
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 40px;
        }
        
        .condition-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            height: 200px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .condition-card:hover {
            transform: translateY(-5px);
        }
        
        .condition-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 20px;
            color: white;
        }
        
        .card-title {
            font-size: 1.1rem;
            font-weight: 600;
            /* margin: 0; */
            text-align: center;
        }
        
        .card-arrow {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .large-card {
            height: 416px;
        }
        
        .small-card {
            height: 200px;
        }
        
        @media (max-width: 768px) {
            .main-heading {
                font-size: 2rem;
            }
            .large-card {
                height: 200px;
            }
        }




        .doctor-section {
            background: #fffae5;
            /* min-height: 100vh; */
            padding: 60px 0;
        }

        .about-badge {
            background-color: #d4af37;
            color: #333;
            padding: 8px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            display: inline-block;
            margin-bottom: 20px;
        }
        .main-heading {
            color: #1e3a8a;
            font-weight: 700;
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 30px;
        }
        .doctor-name {
            color: #1e3a8a;
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        .qualifications {
            color: #1e3a8a;
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        .fellowship-text {
            color: #333;
            font-weight: 600;
            font-size: 0.95rem;
            margin-bottom: 5px;
        }
        .description-text {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        .signature {
            font-family: 'Brush Script MT', cursive;
            font-size: 2.5rem;
            color: #1e3a8a;
            margin-bottom: 30px;
            font-weight: 400;
        }
        .read-more-btn {
            background-color: transparent;
            color: #1e3a8a;
            border: 2px solid #1e3a8a;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .read-more-btn:hover {
            background-color: #1e3a8a;
            color: white;
        }
        .doctor-image {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
        }
        .medical-symbol {
            position: absolute;
            right: 50px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.1;
            font-size: 8rem;
            color: #d4af37;
        }
        @media (max-width: 768px) {
            .main-heading {
                font-size: 2rem;
            }
            .doctor-name {
                font-size: 1.5rem;
            }
            .medical-symbol {
                display: none;
            }
        }


         .appointment-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
            padding: 60px 0;
            color: white;
        }
        
        .appointment-btn {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            border: none;
            padding: 6px 23px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            color: #1e3a8a;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }
        
        .appointment-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: #1e3a8a;
        }
        
        .appointment-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
        }
        
        .appointment-subtitle {
            font-size: 1.2rem;
            font-weight: 400;
            opacity: 0.9;
            line-height: 1.4;
        }
        
        @media (max-width: 768px) {
            .appointment-section {
                padding: 40px 0;
            }
            
            .appointment-title {
                font-size: 2rem;
            }
            
            .appointment-subtitle {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            
            .appointment-btn {
                padding: 12px 25px;
                font-size: 14px;
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 576px) {
            .appointment-title {
                font-size: 1.8rem;
            }
            
            .appointment-subtitle {
                font-size: 1rem;
            }
        }


          .stats-section {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            padding: 60px 0;
            color: white;
        }
        
        .stat-item {
            text-align: center;
            padding: 20px 15px;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 400;
            color: #fbbf24;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1.1rem;
            font-weight: 500;
            color: white;
            margin: 0;
            line-height: 1.4;
        }
        
        @media (max-width: 768px) {
            .stat-number {
                font-size: 2.5rem;
            }
            
            .stat-label {
                font-size: 1rem;
            }
            
            .stats-section {
                padding: 40px 0;
            }
        }
        
        @media (max-width: 576px) {
            .stat-item {
                margin-bottom: 30px;
            }



             .why-choose-section {
            background: linear-gradient(135deg, #f8f6f0 0%, #f5f2e8 100%);
            padding: 80px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
    }
        
        .section-badge {
            background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
            color: #2c3e50;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 20px;
            border: none;
        }
        
        .main-heading {
            color: #1e3a8a;
            font-size: 2.5rem;
            font-weight: 400;
            line-height: 1.2;
            margin-bottom: 25px;
        }
        
        .description-text {
            color: #4a5568;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
        }
        
        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .benefits-list li {
            color: #4a5568;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 15px;
            padding-left: 20px;
            position: relative;
        }
        
        .benefits-list li::before {
            content: ".";
            color: #d4af37;
            font-size: 65px;
            position: absolute;
            left: 0;
            top: 0;
            line-height: 0;
        }
        
        .doctor-image {
            /* width: 100%; */
            /* height: auto; */
            /* border-radius: 15px; */
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
            /* object-fit: cover; */
        }
        
        .image-container {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }
        
        @media (max-width: 768px) {
            .why-choose-section {
                padding: 60px 0;
            }
            
            .main-heading {
                font-size: 2rem;
                text-align: center;
            }
            
            .section-badge {
                display: block;
                text-align: center;
                width: fit-content;
                margin: 0 auto 20px;
            }
            
            .description-text {
                text-align: center;
                margin-bottom: 25px;
            }
            
            .benefits-list {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .main-heading {
                font-size: 1.75rem;
            }
            
            .benefits-list li {
                font-size: 14px;
            }
        }


  

        .booking-section {
     
        }
        
        .appointment-badge {
            background: linear-gradient(135deg, #f4d03f 0%, #f7dc6f 100%);
            color: #2c3e50;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: inline-block;
            margin-bottom: 20px;
            border: none;
        }
        
        .section-title {
            color: #1e3a8a;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .section-description {
            color: #4a5568;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 40px;
        }
        
        .form-container {
            background: #fffae5;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .form-label {
            color: #2d3748;
            font-weight: 600;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        
        .form-control, .form-select {
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 1rem;
            background: #ffffff;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: #f4d03f;
            box-shadow: 0 0 0 0.2rem rgba(244, 208, 63, 0.25);
            background: #ffffff;
        }
        
        .date-input-container {
            position: relative;
        }
        
        .date-input-container .form-control {
            padding-right: 45px;
        }
        
        .date-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #1e3a8a;
            font-size: 1.1rem;
            pointer-events: none;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
            background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .booking-section {
                padding: 60px 0;
            }
        }


         .faq-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
        }
        
        .faq-title {
            color: #1e3a8a;
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
        }
        
        .consultation-image {
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: auto;
            object-fit: cover;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .accordion-button {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border: none;
            padding: 20px 25px;
            font-weight: 600;
            color: #374151;
            font-size: 1.1rem;
            border-radius: 10px !important;
            border-bottom-right-radius: 0px !important;
            border-bottom-left-radius: 0px !important;
        }
        
        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23374151'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-body {
            background: #1e3a8a;
            color: white;
            padding: 25px;
            font-size: 1rem;
            line-height: 1.6;
            color: white !important;
        }
        
        .accordion-collapse {
            border-radius: 0 0 10px 10px;
        }
        
        @media (max-width: 768px) {
            .faq-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            
            .faq-section {
                padding: 60px 0;
            }
            
            .consultation-image {
                margin-bottom: 40px;
            }
        }




        .footer-section {
            background: #0a3467;
            color: white;
            padding: 0;
        }
        
        .contact-bar {
          
            padding: 20px 0;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .contact-icon {
            background: #fbbf24;
            color: #1e3a8a;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .contact-content h6 {
            color: #fbbf24;
            font-weight: 600;
            margin-bottom: 5px;
            font-size: 16px;
        }
        
        .contact-content p {
            margin: 0;
            font-size: 14px;
            line-height: 1.4;
        }
        
        .main-footer {
          
        }
        
        .footer-title {
            color: #fbbf24;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
        }
        
       
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #e5e7eb;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: #fbbf24;
            padding-left: 5px;
        }
        
        .footer-links a::before {
            content: '>';
            font-size: 16px;
            color: #fbbf24;
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .map-container iframe {
            width: 100%;
            /* height: 200px; */
            border: none;
        }
        
        .bottom-footer {
            padding: 30px 0;
        }
        
        .doctor-badge {
        
            color: whte;
            padding: 15px 20px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 15px;
       
        }
        
        .doctor-logo {
            background: #fbbf24;
            color: #1e3a8a;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
        }
        
        .doctor-info {
            font-size: 14px;
            line-height: 1.4;
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin: 20px 0;
        }
        
        .social-icon {
            background: #fbbf24;
            color: #1e3a8a;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: white;
            color: #1e3a8a;
            transform: translateY(-3px);
        }
        
        .consultation-hours {
            text-align: center;
            margin-top: 20px;
        }
        
        .consultation-hours h6 {
            color: #fbbf24;
            font-weight: 600;
            margin-bottom: 8px;
        }
        
        .consultation-hours p {
            margin: 0;
            font-size: 14px;
        }
        
        @media (max-width: 768px) {
            .contact-item {
                text-align: center;
                flex-direction: column;
                gap: 10px;
                margin-bottom: 30px;
            }
            
            .doctor-badge {
                flex-direction: column;
                text-align: center;
                margin-bottom: 30px;
            }
            
            .social-icons {
                margin: 30px 0 20px;
            }
        }


  .hero-section-service {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/service.jpg') center/cover;
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        
        .hero-title {
          /* color: #faba21; */
          font-size: 3rem;
          font-weight: 700;
          letter-spacing: 2px;
          margin-bottom: 1rem;
        }
        
        .breadcrumb-custom {
/*            background: rgba(255,255,255,0.1);*/
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        .breadcrumb-custom a {
            color: white;
            text-decoration: none;
        }
        
        .service-content {
            padding: 80px 0;
            background-color: #f8f9fa;
        }
        
        .service-category {
            color: #6c757d;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
        }
        
        .service-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 1.5rem;
        }
        
        .service-description {
            color: #6c757d;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .service-types {
            margin-bottom: 2rem;
        }
        
        .service-types h5 {
            font-weight: 600;
            color: #212529;
            margin-bottom: 1rem;
        }
        
        .service-list {
            list-style: none;
            padding: 0;
        }
        
        .service-list li {
            padding: 0.5rem 0;
            color: #6c757d;
            position: relative;
            padding-left: 20px;
        }
        
        .service-list li:before {
            content: "â—‹";
            position: absolute;
            left: 0;
            color: #007bff;
            font-weight: bold;
        }
        
        .aftercare-info {
            background: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #007bff;
            margin-bottom: 2rem;
        }
        
        .btn-service {
            background-color: #212529;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 0;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        .btn-service:hover {
            background-color: #007bff;
            color: white;
        }
        
        .service-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .service-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .service-title {
                font-size: 2rem;
            }
            
            .service-content {
                padding: 40px 0;
            }
        }


          /* Changed from :root to .service class for CSS variables */
        .service {
            --primary-color: #1e3a8a;
            --secondary-color: #fbbf24;
            --cream-bg: #fefce8;
            --light-cream: #fffbeb;
            --text-dark: #1f2937;
            --text-muted: #6b7280;
        }

     

        .bg-primary-custom {
            background-color: var(--primary-color) !important;
        }

        .bg-secondary-custom {
            background-color: var(--secondary-color) !important;
        }

        .bg-cream {
            background-color: var(--cream-bg);
        }

        .bg-light-cream {
            background-color: var(--light-cream);
        }

        .text-primary-custom {
            color: var(--primary-color) !important;
        }

        .text-secondary-custom {
            color: var(--secondary-color) !important;
        }

        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        .btn-primary-custom:hover {
            background-color: #1e40af;
            border-color: #1e40af;
        }

        .btn-secondary-custom {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            color: var(--text-dark);
        }

        .btn-secondary-custom:hover {
            background-color: #f59e0b;
            border-color: #f59e0b;
        }

        .card {
            border: none;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }

        .badge-custom {
            background-color: var(--secondary-color);
            color: var(--text-dark);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 600;
        }

        .number-circle {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .number-circle-primary {
            background-color: rgba(30, 58, 138, 0.1);
            color: var(--primary-color);
        }

        .number-circle-secondary {
            background-color: rgba(251, 191, 36, 0.2);
            color: #92400e;
        }

        .hero-gradient {
            background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
        }

        .section-padding {
            padding: 4rem 0;
        }

        .text-balance {
            text-wrap: balance;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--light-cream);
           
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(30, 58, 138, 0.25);
        }



              :root {
  --aboutprimary-color: #1e4a72;
  --aboutaccent-color: #3498db;
  --white: #ffffff;
}



.about .hero-section-about {
  background: linear-gradient(135deg, var(--aboutprimary-color) 0%, #1e4a72 100%);
  position: relative;
  overflow: hidden;
}

.about .hero-section-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.about .timeline {
  position: relative;
}

.about .timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 20px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--aboutprimary-color), var(--aboutaccent-color));
}

.about .timeline-marker {
  position: relative;
  z-index: 2;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--aboutprimary-color);
}

.hover-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.expertise-icon {
  transition: all 0.3s ease;
}

.hover-card:hover .expertise-icon i {
  transform: scale(1.1);
  color: var(--aboutaccent-color) !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--aboutprimary-color) 0%, var(--aboutaccent-color) 100%);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
  background: linear-gradient(135deg, var(--aboutaccent-color) 0%, var(--aboutprimary-color) 100%);
}

.btn-outline-primary {
  border: 2px solid var(--aboutprimary-color);
  color: var(--aboutprimary-color);
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--aboutprimary-color);
  border-color: var(--aboutprimary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
}

.about .card {
  transition: all 0.3s ease;
  border-radius: 15px;
}

.text-primary {
  color: var(--aboutprimary-color) !important;
}

.bg-primary {
  background: linear-gradient(135deg, var(--aboutprimary-color) 0%, #1e4a72 100%) !important;
}

.alert-info {
  background-color: rgba(52, 152, 219, 0.1);
  border-color: var(--aboutaccent-color);
  color: var(--aboutprimary-color);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }

  .about .hero-section-about .col-lg-4 {
    margin-top: 2rem;
  }

  .about .timeline::before {
    display: none;
  }

  .about .timeline-marker {
    display: none;
  }
}

/* Loading animation for icons */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about .card {
  animation: fadeInUp 0.6s ease forwards;
}

.about .card:nth-child(1) {
  animation-delay: 0.1s;
}
.about .card:nth-child(2) {
  animation-delay: 0.2s;
}
.about .card:nth-child(3) {
  animation-delay: 0.3s;
}
.about .card:nth-child(4) {
  animation-delay: 0.4s;
}
.about .card:nth-child(5) {
  animation-delay: 0.5s;
}
.about .card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Navbar custom look */
.custom-navbar .nav-link {
  font-weight: 600;
  white-space: nowrap;
  color: #123c66; /* deep blue tone */
  padding: 10px 18px; /* space around links */
  transition: all 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
  color: #c89b2b; /* golden hover color */
}

/* Divider ( | ) style */
.custom-navbar .sep {
  color: #ddd;
  font-weight: 300;
}

/* Dropdown styling */
.nice-dropdown {
  border-radius: 8px;
  padding: 8px 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  border: none;
}

.nice-dropdown .dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
  transition: all 0.2s ease-in-out;
}

.nice-dropdown .dropdown-item:hover {
  background: #f8f9fa;
  color: #c89b2b;
}

/* On larger screens -> hover dropdowns */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Mobile menu (collapsed) spacing */
@media (max-width: 991px) {
  .custom-navbar .nav-link {
    padding: 12px 0;      /* vertical spacing */
    text-align: center;   /* center align */
    font-size: 17px;      /* slightly bigger for touch */
  }
  .custom-navbar .dropdown-menu {
    text-align: center;
  }
}



/* Desktop: center with spacing */
@media (min-width: 992px) {
  .custom-navbar .navbar-nav {
    justify-content: center;
  }
}

/* Mobile: full width, left aligned */
/* Mobile Navbar Styling */
@media (max-width: 991px) {
  .custom-navbar .navbar-nav {
    width: 100%;
    text-align: left;
    padding: 0; /* reset */
  }

  .custom-navbar .nav-item {
    width: 100%;
  }

  .custom-navbar .nav-link {
    display: block;
    width: 100%;
    padding: 14px 20px;  /* more breathing room */
    font-size: 16px;
    border-bottom: 1px solid #eaeaea; /* light divider */
  }

  /* Last item no border */
  .custom-navbar .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  /* Dropdown menu full width on mobile */
  .custom-navbar .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    border: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .custom-navbar .dropdown-item {
    padding: 12px 30px;   /* indent inside dropdown */
    border-bottom: 1px solid #f5f5f5;
    font-size: 15px;
  }

  .custom-navbar .dropdown-item:last-child {
    border-bottom: none;
  }
}


/* Mobile Navbar Item Styling */
@media (max-width: 991px) {
  .custom-navbar .navbar-collapse {
    padding: 0 0 10px 0; /* some bottom space */
  }

  .custom-navbar .navbar-nav {
    width: 100%;
  }

  .custom-navbar .nav-item {
    width: 100%;
    margin: 0; /* reset Bootstrap */
  }

  .custom-navbar .nav-link {
    display: block;
    width: 100%;
    padding: 15px 20px !important;  /* force padding */
    font-size: 17px;
    line-height: 1.5;
    border-bottom: 1px solid #eee;  /* light divider */
  }

  .custom-navbar .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  /* Dropdown on mobile */
  .custom-navbar .dropdown-menu {
    position: static;
    width: 100%;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }

  .custom-navbar .dropdown-item {
    padding: 14px 35px !important;  /* indent dropdown */
    font-size: 16px;
    border-bottom: 1px solid #f5f5f5;
  }

  .custom-navbar .dropdown-item:last-child {
    border-bottom: none;
  }
}


/* Dr. Arun Medical Pages - Custom Styles */
.condition-page {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header Styles */
.condition-page .top-header {
  background-color: #1e3a8a;
  color: white;
  padding: 8px 0;
  font-size: 14px;
}

.condition-page .main-header {
  background-color: #fef7ed;
  padding: 15px 0;
  border-bottom: 2px solid #d4af37;
}

.condition-page .logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  font-weight: bold;
  color: #1e3a8a;
}



.condition-page .btn-appointment {
  background-color: #1e3a8a;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.condition-page .btn-appointment:hover {
  background-color: #d4af37;
  transform: translateY(-2px);
}

/* Main Content Styles */
.condition-page .hero-section {
  background: linear-gradient(135deg, #fef7ed 0%, #f9f1e6 100%);
  padding: 60px 0;
  position: relative;
  min-height:inherit;
}

.condition-page .hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%231e3a8a" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.condition-page .condition-badge {
  background-color: #d4af37;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.condition-page .hero-title {
  color: #1e3a8a;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.condition-page .hero-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.condition-page .btn-consult {
  background-color: #1e3a8a;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.condition-page .btn-consult:hover {
  background-color: #d4af37;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Content Sections */
.condition-page .content-section {
  padding: 60px 0;
  background-color: white;
}

.condition-page .content-section:nth-child(even) {
  background-color: #fafafa;
}

.condition-page h1 {
  color: #1e3a8a;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  border-bottom: 3px solid #d4af37;
  padding-bottom: 10px;
}

.condition-page h2 {
  color: #1e3a8a;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
}

.condition-page h3 {
  color: #d4af37;
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 15px;
}

.condition-page h4 {
  color: #1e3a8a;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 10px;
}

.condition-page p {
  margin-bottom: 15px;
  /* color: #000000; */
  line-height: 1.7;
}






/* Treatment Cards */
.condition-page .treatment-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #d4af37;
  transition: transform 0.3s ease;
}

.condition-page .treatment-card:hover {
  transform: translateY(-5px);
}

.condition-page .treatment-card h4 {
  color: #1e3a8a;
  margin-top: 0;
}

/* FAQ Section */
.condition-page .faq-section {
  background-color: #f8f9fa;
  padding: 50px 0;
}

.condition-page .faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.condition-page .faq-question {
  background-color: #1e3a8a;
  color: white;
  padding: 15px 20px;
  cursor: pointer;
  margin: 0;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.condition-page .faq-question:hover {
  background-color: #d4af37;
}

.condition-page .faq-answer {
  padding: 20px;
  display: none;
  border-top: 1px solid #eee;
}

.condition-page .faq-answer.active {
  display: block;
}

/* Doctor Info Section */
.condition-page .doctor-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: white;
  padding: 50px 0;
}

.condition-page .doctor-section h2,
.condition-page .doctor-section h3 {
  color: white;
}

.condition-page .doctor-section ul li::before {
  color: #d4af37;
}

/* Footer */
.condition-page .footer {
  background-color: #1e3a8a;
  color: white;
  padding: 40px 0 20px;
}

.condition-page .footer h5 {
  color: #d4af37;
  margin-bottom: 20px;
}

.condition-page .footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.condition-page .footer a:hover {
  color: #d4af37;
}

/* Responsive Design */
@media (max-width: 768px) {
  .condition-page .hero-title {
    font-size: 2rem;
  }

  .condition-page .top-header {
    text-align: center;
  }

  .condition-page .navbar-nav {
    text-align: center;
  }

  .condition-page .btn-appointment {
    margin-top: 10px;
  }
}

/* Utility Classes */
.condition-page .text-primary {
  color: #1e3a8a !important;
}

.condition-page .text-accent {
  color: #d4af37 !important;
}

.condition-page .bg-primary {
  background-color: #1e3a8a !important;
}

.condition-page .bg-accent {
  background-color: #d4af37 !important;
}

.condition-page .border-accent {
  border-color: #d4af37 !important;
}

.doctor-section p{
  color:white;
}
.doctor-section-index P{
  color:black;
}

.info-cards-section .card-title{
  color:white;
}

.accordion-button:not(.collapsed) {
   
    color: white !important;
}

.condition-card .card-title{
  color: white;
}

.CONDITIONS-section{
  background-color: white;
}

.treatment-content img{
  width:50px;
  margin-bottom: 10px;
}

.why-choose-section{
  padding-top: 70px;
  padding-bottom: 70px;
}

.booking-section{
  background-color:white;
   padding-top: 70px;
  padding-bottom: 70px;
}


   .blog_path_blog-header {
            background: linear-gradient(135deg, #2E5A87, #4A7BA7);
            color: white;
            padding: 4rem 0 2rem;
            margin-bottom: 2rem;
        }

        .blog_path_blog-meta {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .blog_path_blog-content {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }

        .blog_path_blog-content h1 {
            color: #2E5A87;
            font-weight: 300;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .blog_path_blog-content h2 {
            color: #4A7BA7;
            font-weight: 600;
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            border-left: 4px solid #F4C430;
            padding-left: 1rem;
        }

        .blog_path_blog-content h3 {
            color: #2E5A87;
            /* font-weight: 600; */
            /* margin-top: 2rem; */
            /* margin-bottom: 1rem; */
            /* font-size: 1.3rem; */
        }

        .blog_path_blog-content p {
            margin-bottom: 1.2rem;
            color: #2d3748;
            font-size: 1.05rem;
        }

        .blog_path_blog-content ul {
            margin-bottom: 1.5rem;
        }

        .blog_path_blog-content li {
            margin-bottom: 0.5rem;
            color: #2d3748;
        }

        .blog_path_highlight-box {
            background: linear-gradient(135deg, #fefcf0, #fdf8e1);
            border: 1px solid #F4C430;
            border-radius: 8px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .blog_path_doctor-info {
            background: #2E5A87;
            color: white;
            border-radius: 12px;
            padding: 2rem;
            margin-top: 2rem;
        }

        .blog_path_doctor-info h2 {
            color: white;
            border-left: 4px solid #F4C430;
        }

        .blog_path_btn-custom {
            background-color: #4A7BA7;
            border-color: #4A7BA7;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 25px;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .blog_path_btn-custom:hover {
            background-color: #2E5A87;
            border-color: #2E5A87;
            color: white;
            transform: translateY(-2px);
        }

        .blog_path_warning-list {
            background: #fffbf0;
            border-left: 4px solid #F4C430;
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
        }

        .blog_path_icon-box {
            width: 50px;
            height: 50px;
            background: #F4C430;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .blog_path_icon-box i {
            color: #2E5A87;
            font-size: 1.5rem;
        }

        @media (max-width: 768px) {
            .blog_path_blog-content {
                padding: 1.5rem;
            }
            
            .blog_path_blog-content h1 {
                font-size: 2rem;
            }
            
            .blog_path_blog-content h2 {
                font-size: 1.5rem;
            }
        }

        .blog_path_P_color_white p{
          color:white;
        }

          .blog_path_P_color_white li{
          color:white;
        }

        .keyTakeaway p{
          color: black;
        }


           /* Removed blog_path_ prefix from all CSS classes */
        .contact-header {
            background: linear-gradient(135deg, #2E5A87 0%, #4A7BA7 100%);
            color: white;
            padding: 4rem 0 2rem;
            margin-bottom: 3rem;
        }

        .contact-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: center;
        }

        .contact-subtitle {
            font-size: 1.2rem;
            text-align: center;
            opacity: 0.9;
            margin-bottom: 0;
        }

        .contact-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(46, 90, 135, 0.1);
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid #e2e8f0;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: #f8faf9;
            border-radius: 10px;
            border-left: 4px solid #F4C430;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: #2E5A87;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .contact-details h5 {
            color: #2E5A87;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .contact-details p {
            margin-bottom: 0;
            color: #718096;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            font-weight: 600;
            color: #2E5A87;
            margin-bottom: 0.5rem;
        }

        .form-control {
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: #F4C430;
            box-shadow: 0 0 0 0.2rem rgba(244, 196, 48, 0.25);
            outline: none;
        }

        .submit-btn {
            background: #F4C430;
            color: #2E5A87;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background: #e6b12a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(244, 196, 48, 0.3);
        }

        .hours-table {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(46, 90, 135, 0.1);
        }

        .hours-table th {
            background: #2E5A87;
            color: white;
            font-weight: 600;
            padding: 1rem;
            border: none;
        }

        .hours-table td {
            padding: 1rem;
            border-color: #e2e8f0;
        }

        .hours-table tr:nth-child(even) {
            background: #f8faf9;
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(46, 90, 135, 0.1);
            /* height: 300px; */
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #718096;
            font-size: 1.1rem;
        }

        .emergency-notice {
            background: linear-gradient(135deg, #dc3545, #c82333);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 2rem;
        }

        .emergency-notice h4 {
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            /* margin-top: 2rem; */
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: #2E5A87;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: #F4C430;
            color: #2E5A87;
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .contact-title {
                font-size: 2rem;
            }
            
            .contact-info-item {
                flex-direction: column;
                text-align: center;
            }
            
            .contact-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
        }

        .social-links a{
          color: white;
        }


        .home-card-color{
          color:blue;
        }

        .carousel-nav-buttons .prev-btn{
             position: absolute;
    top: 42%;
    left: -59px;
        }

          .carousel-nav-buttons .next-btn{
             position: absolute;
    top: 42%;
    right: -59px;
        }


        .cta-appointment-btn{
          margin-top: 20px;
        }

        .signature img{
          width:300px;
        }

        @media (min-width: 1200px) {
    .display-4 {
        font-size: 2rem;
        font-weight:500 !important;
        margin-top: 14px;
    }
}
/* ==============================
   Base Dropdown Hover
============================== */
.dropdown-hover:hover > .dropdown-menu {
  display: block;
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

/* Fade effect */
.nice-dropdown {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.dropdown-hover:hover .nice-dropdown {
  opacity: 1;
  visibility: visible;
}

/* ==============================
   Common Style for Nested Menus
============================== */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -2px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  min-width: 250px;
}

/* Show nested dropdown on hover */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* ==============================
   Submenu Arrow Indicator
============================== */
.dropdown-submenu > a::after {
  content: "▶";
  float: right;
  margin-left: 8px;
  font-size: 0.75rem;
  opacity: 0.6;
}
.dropdown-submenu:hover > a::after {
  opacity: 1;
}

/* ==============================
   Support for Level 3 & 4 Submenus
============================== */

/* Level 3 (third-level dropdown) */
.dropdown-submenu .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -2px;
}

/* Level 4 (fourth-level dropdown) */
.dropdown-submenu .dropdown-submenu .dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -2px;
}

/* Optional: adjust offset for narrow screens */
@media (max-width: 991px) {
  .dropdown-submenu > .dropdown-menu {
    left: 0;
    top: 100%;
  }
}


.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
     border-top:0px !important;
    /* border-top: .3em solid; */
    /* border-right: .3em solid transparent; */
    border-bottom: 0;
    border-left: .3em solid transparent;
}


 .gallery-section {
      padding: 60px 0;
    }

    .gallery-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .gallery-title h2 {
      font-weight: 700;
      color: #007bff;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .gallery-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.5rem;
      border-radius: 10px;
      transition: opacity 0.3s ease;
    }

    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    .modal img {
      width: 100%;
      border-radius: 8px;
    }

        .video-gallery-section {
      padding: 60px 0;
    }

    .gallery-title {
      text-align: center;
      margin-bottom: 40px;
    }

    .gallery-title h2 {
      font-weight: 700;
      color: #007bff;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .video-card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .video-card iframe {
      width: 100%;
      height: 230px;
      border-radius: 10px;
    }

    .video-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .video-card .video-info {
      padding: 15px;
      text-align: center;
    }

    .video-card .video-info h6 {
      font-weight: 600;
      margin: 0;
      color: #333;
    }

    .video-card .video-info p {
      font-size: 0.9rem;
      color: #777;
      margin: 5px 0 0;
    }

    .back-btn {
      display: inline-block;
      margin-bottom: 30px;
      text-decoration: none;
      color: #007bff;
      font-weight: 600;
    }

    .back-btn i {
      margin-right: 5px;
    }