body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}
/* NAVBAR */
.custom-navbar {
  background: white;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.18);
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #ffffff !important;
}

.nav-link {
  color: black !important;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}
@media (max-width: 991px) {
  .nav-link {
    color: white !important;
    margin: 8px 0;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
  }

  .nav-link:hover,
  .nav-link:focus,
  .nav-link.active {
    color: #0a58ca !important;
  }
}

.nav-link:hover {
  /* color: #ffffff !important; */
}

.nav-link.active {
  color: #f34a21!important;
}

/* CTA Button */
.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  background: #292467;
  border: none;
  box-shadow: 0 10px 20px rgba(41, 36, 103, 0.24);
}

.nav-cta:hover {
  background: #201c54;
  box-shadow: 0 14px 24px rgba(41, 36, 103, 0.3);
}

.custom-dropdown {
  border: none;
  border-radius: 14px;
  padding: 10px;
  min-width: 240px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.custom-dropdown .dropdown-item {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.custom-dropdown .dropdown-item:hover {
  background: #f34a21;
  color: #0f172a;
  transform: translateX(4px);
}

.dropdown-feature-card {
  padding-top: 8px;
}

.featured-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
 background: linear-gradient(90deg, #f34a21, #ff7a59);
  color: #fff !important;
  background-color: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 14px 28px rgba(30, 58, 138, 0.22);
}

.featured-service-link:hover,
.featured-service-link:focus,
.featured-service-link:active,
.featured-service-link.dropdown-item:hover,
.featured-service-link.dropdown-item:focus,
.featured-service-link.dropdown-item:active {
  background: linear-gradient(135deg, #17306f, #0ea5e9);
  color: #fff !important;
  transform: translateY(-2px);
}

.featured-service-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-service-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  flex-shrink: 0;
}

.featured-service-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.82;
  margin-bottom: 2px;
}

.featured-service-link strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}

.navbar-toggler {
  border: 2px solid rgba(131, 34, 34, 0.25);
  padding: 8px 10px;

}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(56, 189, 248, 0.25);
}

/* Mobile Fix */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #0f172a;
    padding: 16px;
    border-radius: 16px;
    margin-top: 12px;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.28);
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .nav-link {
    margin: 6px 0;
    padding: 10px 12px;
    border-radius: 10px;
    display: block;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(56, 189, 248, 0.12);
  }

  .custom-dropdown {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 8px;
    margin-top: 8px;
    min-width: 100%;
  }

  .custom-dropdown .dropdown-item {
    color: #e2e8f0;
    padding: 10px 12px;
  }

  .custom-dropdown .dropdown-item:hover {
    background: rgba(56, 189, 248, 0.12);
    color: #ffffff;
    transform: none;
  }

  .featured-service-link {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(56, 189, 248, 0.95));
    border-radius: 14px;
  }

  .featured-service-link:hover,
  .featured-service-link:focus {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(56, 189, 248, 0.95));
    transform: none;
  }

  .featured-service-link:active {
    transform: scale(0.99);
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    margin-top: 10px;
  }
}

.custom-toggler {
  background: #292467;
  border: 2px solid #292467;
  color : #fff;
  padding: 8px 10px;
}

.custom-toggler:focus {
  box-shadow: none;
}

.custom-toggler .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    color: #f34a21;
    margin-top: 0;
  }
}

@media (hover: none) and (pointer: coarse) {
  .featured-service-link:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(56, 189, 248, 0.95));
    transform: none;
  }
}

/* HERO SECTION WITH IMAGE */
.hero-section {
  position: relative;
  min-height: auto;
  background: url("/image/02.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 50px 0;
  overflow: hidden;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(2,6,23,0.75) 35%, rgba(2,6,23,0.5));
  top: 0;
  left: 0;
}

/* CONTENT */
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* BADGE */
.hero-badge {
  text-align: left;
}

.hero-badge span {
  display: inline-block;
  background: rgba(59,130,246,0.25);
  border: 1px solid rgba(59,130,246,0.6);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
}

/* TITLE */
.hero-title {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-title span {
  color: white;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 1.1rem;
  color: #e2e8f0;
  margin-top: 15px;
  max-width: 520px;
}

/* BUTTONS */
.btn-primary {
  background: #f34a21;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
}

.btn-primary:hover {
  background: #292467;
}

.btn-outline-light {
  padding: 12px 28px;
  border-radius: 8px;
}

/* TRUST */
.hero-trust {
  font-size: 0.9rem;
  color: #cbd5f5;
  margin-top: 10px;
}

/* FORM CARD (DESKTOP RIGHT SIDE) */
.hero-form {
  max-width: 420px;
  margin-left: auto; /* right align */
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
/* MOBILE FORM SECTION */
.mobile-form-section {
  background: linear-gradient(180deg, #0a1f44, #112e67);
  padding: 50px 15px;
}

/* FORM CARD */
.mobile-form-section .hero-form {
  margin: 0 auto;
  max-width: 100%;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(140, 164, 224, 0.15);
}

/* TITLE */
.mobile-form-section .form-title {
  text-align: center;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 15px;
}

/* INPUTS */
.mobile-form-section .form-control {
  background: #f1f5f9;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
}

/* BUTTON */
.mobile-form-section .btn-primary {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-weight: 500;
}

/* SPACING FIX */
.mobile-form-section .mb-3 {
  margin-bottom: 12px;
}

/* 📱 MOBILE FIX */
@media (max-width: 992px) {

  .hero-section {
    background-attachment: scroll;
    padding: 10px 0;
    text-align: center;
  }
.hero-badge {
  text-align: start;
}

  .hero-badge {
    text-align: start;
  }

  .hero-title {
    font-size: 2.2rem;
    text-align: start;
  }

  .hero-subtitle {
    margin: auto;
    text-align: start;
  }

  .hero-trust {
    text-align: center;
  }

  /* FORM niche shift */
  .hero-form {
    max-width: 100%;
    margin: 30px auto 0;
  }

}
/* SECTION */
.about-section {
  padding: 40px 0;
  background: radial-gradient(circle at top right, rgba(15, 118, 110, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6f8ff 100%);
}

/* IMAGE */
.about-img img {
  height: 450px;
  width: 600px;
  object-fit: cover;
  object-position: 50% 0%;
  border-radius: 20px;
}

/* EXPERIENCE CARD */
.experience-card {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-card img {
  width: 70px;
  border-radius: 10px;
  margin-right: 10px;
}

.exp-text h4 {
  margin: 0;
  font-weight: 700;
}

.exp-text p {
  margin: 0;
  font-size: 12px;
}

/* TAG */
.about-tag {
  color: #292467;
  font-weight: 600;
  letter-spacing: 1px;
}

/* TITLE */
.about-title {
  font-size: 1.9rem;
  font-weight: 650;
  margin: 10px 0;
  color: #1e293b;
}

/* DESC */
.about-desc {
  color: #64748b;
  line-height: 1.7;
}

/* STATS */
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.about-stats h3 {
  color: #292467;
  font-size: 2rem;
  margin: 0;
}

.about-stats p {
  margin: 0;
  font-size: 14px;
}

/* BUTTON */
.about-btn {
background: #f34a21;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
}



/* DOCTOR */
.doctor img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
}

.doctor h6 {
  margin: 0;
  font-weight: 600;
}

.doctor p {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .about-title {
    font-size: 1.8rem;
  }

  .about-stats {
    flex-direction: column;
    gap: 10px;
  }

  .experience-card {
    position: static;
    margin-top: 15px;
  }

}








/* SECTION */
.success-section {
  padding: 30px 0;
  background: linear-gradient(180deg, #0a1f44, #112e67);
}

/* CARD */
.success-card {
  background: white;
  padding: 35px 20px;
  border-radius: 20px;
  color: #1e3a8a;
  transition: 0.3s;
  height: 100%;
}

.success-card:hover {
  transform: translateY(-10px);
  background: white;
}

/* ICON */
.icon-box {
  width: 80px;
  height: 80px;
  background: #f34a21;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
}

/* TITLE */
.success-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

/* TEXT */
.success-card p {
  font-size: 14px;
  color: #1e3a8a;
}
.section-tag , .section-title{
  color:white;

}
.section-tag{
font-size: 24px;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .success-card {
    padding: 25px 15px;
  }
}


/* SECTION */
.premium-services {
  padding-top: 40px;
  padding-bottom: 20px;
  background:
    radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(30, 58, 138, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

/* TAG */
.service-tag {
  color: #292467;
  font-weight: 600;
}

/* HEADING */
.service-heading {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1e293b;
}

/* BUTTON */
.all-service-btn {
 background: #f34a21;
  color: #fff;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
}

/* CARD */
.service-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(30, 58, 138, 0.12);
  box-shadow: 0 14px 30px rgba(30, 58, 138, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(30, 58, 138, 0.14);
  border-color: rgba(56, 189, 248, 0.30);
}

.service-box::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1e3a8a, #38bdf8, #0ea5e9);
}

.service-box:hover .service-img img {
  transform: scale(1.05);
}

/* IMAGE */
.service-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}

.service-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.35s ease;
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 12px;
}

.badge.green {
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  color: #1e3a8a;
}

.badge.blue {
  background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
  color: #0369a1;
}

.badge.pink {
  background: linear-gradient(135deg, #dbeafe, #f8fafc);
  color: #0f172a;
}

/* TITLE */
.service-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #0f172a;
}

/* TEXT */
.service-box p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* BUTTON */
.read-btn {
  display: inline-block;
  margin-top: 15px;
  background: #f34a21;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(30, 58, 138, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.read-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(30, 58, 138, 0.24);
  color: #fff;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .service-heading {
    font-size: 2rem;
  }

  .all-service-btn {
    margin-top: 15px;
  }

}



/* SECTION */
.about-doctor {
  padding: 40px 0;
  background: #f5f7fb;
}

/* IMAGE WRAPPER */
.doctor-img {
  width: 100%;
  height: 1;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* IMAGE */
.doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* perfect crop */
  object-position: 50% 0%; /* face upar rahe */
  display: block;
}

/* TAG */
.about-tag {
    display: inline-block;
    background: #f34a21;
    color: #ffffff;
    padding: 6px 7px;
    border-radius: 7px;
    font-size: 13px;
    margin-bottom: 10px;
}

/* TITLE */
.about-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

/* TEXT */
.about-text {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* BUTTON */
.call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: #f34a21;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}

.call-btn:hover {
  background: #201c54;
  color: #fff;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .doctor-img {
    height: auto;
    max-width: 100%;
  }

  .doctor-img img {
    height: auto;
    width: 100%;
    object-fit: contain;
  }

  .about-title {
    font-size: 22px;
    text-align: start;
  }
}


/* CTA SECTION */
.cta-banner {
  position: relative;
  padding: 65px 0;
  background: url("image/cta.jpg") center/cover no-repeat;
  overflow: hidden;
}

/* OVERLAY (PURPLE + ORANGE MIX) */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(121deg, #292467, #ff7a59);
}

/* CONTENT */
.cta-banner .container {
  z-index: 2;
}

/* TITLE */
.cta-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}
/* ICON SPACE */
.cta-btn i {
  margin-right: 8px;
}

.cta-title i {
  margin-left: 8px;
  color: #f34a21; /* optional highlight */
}

/* SUBTITLE */
.cta-subtitle {
  color: #e2e8f0;
  margin-top: 12px;
  margin-bottom: 30px;
  font-size: 16px;
}

/* BUTTON BASE */
.cta-btn {
  padding: 14px 30px;
  border-radius: 40px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 15px;
}

/* PRIMARY BUTTON */
.primary-btn {
  box-shadow: 0 0 20px rgba(255,255,255,0.4);
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
  background: #22c55e;
  color: #fff;
}

.whatsapp-btn:hover {
  background: #16a34a;
  color: #fff;
}

/* HOVER EFFECT */
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .cta-title {
    font-size: 2rem;
  }

  .cta-banner {
    padding: 80px 0;
  }

  .cta-btn {
    width: 100%;
  }

}

/* SECTION */
.treatment-section {
  padding-top: 40px;   /* top space only */
  padding-bottom: 20px;
  background: #f5f7fb;
}

/* HEADING */
.main-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
}

/* CARD */
.treatment-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px; /* improved height */
  background: #fff; /* better contrast */
}

/* CONTENT */
.treatment-card .content {
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.treatment-card h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.treatment-card p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* IMAGE FIX (DESKTOP PERFECT) */
.treatment-card .image {
  width: 50%;
  height: 300px; /* fixed height */
  overflow: hidden;
}

.treatment-card .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* BUTTON */
.white-btn {
  background: #fff;
  color: #000;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  width: fit-content;
  font-size: 14px;
}

/* COLORS */
.blue {
  background: #5b84b1;
  color: #fff;
}

.green {
  background: #6b8f71;
  color: #fff;
}

.beige {
  background: #c9b38c;
  color: #000;
}

.orange {
  background: #f59e0b;
  color: #000;
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {

  .treatment-card {
    flex-direction: column;
    text-align: start;
    min-height: auto;
  }

  .main-heading {
    font-size: 20px;
    text-align: left;
  }

  .treatment-card .image,
  .treatment-card .content {
    width: 100%;
  }

  .treatment-card .image img {
    height: 270px;
    object-fit: cover;
    object-position: 50% 0%;
  }

  .treatment-card .content {
    padding: 10px;
  }

}


/* SECTION */
.process-section {
  padding: 80px 0;
  background: #245a7a;
  color: #fff;
  position: relative;
}

/* DOT BACKGROUND EFFECT */
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

/* CONTENT ABOVE */
.process-section .container {
  position: relative;
  z-index: 2;
}

/* TAG */
.process-tag {
  background: rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  text-align: start;
}

/* TITLE */
.process-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 15px;
}

/* SUBTITLE */
.process-subtitle {
  color: #cbd5f5;
  margin-top: 5px;
}

/* CARD */
.process-card {
  background: rgba(255,255,255,0.08);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  height: 100%;
  transition: 0.3s;
}

.process-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.12);
}

/* STEP NUMBER */
.step-number {
  width: 50px;
  height: 50px;
  background: #22c55e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: 700;
}

/* TEXT */
.process-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #e2e8f0;
}

/* 📱 MOBILE */
@media (max-width: 768px) {

  .process-title {
    font-size: 1.8rem;
    text-align: start;
  }

}




.why-section {
  background: #f5f5f5;
  padding: 60px 0;
  overflow-x: clip;
}

/* Heading */
.small-title {
  color: #0c0c0c;
  font-weight: 600;
}

.main-title {
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1.2;
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* Image */
.why-img {
  max-width: 650px;
  margin: 0 auto;
}

.why-img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 10%;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

/* Vertical dotted line */
.timeline::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 0;
  height: 100%;
  border-left: 2px dotted #999;
}

/* Timeline item */
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
}

.timeline .content {
  min-width: 0;
}

/* Circle */
.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
  z-index: 2;
}

/* Colors */
.blue { background: #3b82f6; }
.red { background: #ef4444; }
.green { background: #22c55e; }
.purple { background: #a855f7; }

/* Content */
.content h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

.content p {
  color: black !important;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {

  .why-img img {
    margin-bottom: 30px;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline::before {
    left: 15px;
  }

  .circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .why-section {
    padding: 44px 0;
  }

  .why-section .row {
    --bs-gutter-x: 1rem;
    margin-left: 0;
    margin-right: 0;
  }

  .why-img {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .why-img img {
    width: 100%;
    margin-bottom: 0;
  }

  .timeline {
    padding-left: 18px;
  }

  .timeline::before {
    left: 12px;
  }

  .timeline-item {
    margin-bottom: 24px;
    gap: 12px;
  }

  .timeline-item .content {
    flex: 1 1 auto;
    overflow-wrap: anywhere;
  }

  .circle {
    width: 42px;
    height: 42px;
    margin-right: 12px;
    font-size: 12px;
  }

  .content h5 {
    font-size: 1rem;
  }

  .content p {
    font-size: 13px;
    line-height: 1.55;
    color:white;  
  }
}
.cd-info-section h2,
.cd-info-section h3 {
  color: #2C4874;
  font-weight: 700;
}

.cd-info-section p {
  color: #555;
  line-height: 1.7;
}

.cd-info-section ul,
.cd-info-section ol {
  padding-left: 20px;
}




/* SECTION */
.faq-section {
  padding: 80px 0;
  background: #f8fafc;
}

/* HEADING */
.faq-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e293b;
}

.faq-subtitle {
  color: #64748b;
  margin-top: 10px;
}

/* ACCORDION */
.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.accordion-button {
  font-weight: 500;
  padding: 15px;
  background: #fff;
}

.accordion-button:not(.collapsed) {
  background: #f34a21;
  color: #fff;
}

.accordion-body {
  font-size: 14px;
  color: #475569;
  background: #fff;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.8rem;
  }
}

/* FOOTER */
.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #081120 100%);
  color: #cbd5e1;
  padding: 70px 0 24px;
}

.footer-brand h3 {
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.7;
  max-width: 340px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

.footer-title {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-links a,
.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #38bdf8;
}

.footer-contact i {
  margin-right: 10px;
  color: white;
}

.footer-divider {
  border-color: rgba(148, 163, 184, 0.2);
  margin: 30px 0 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: #94a3b8;
}


@media (max-width: 768px) {
  .site-footer {
    padding: 56px 0 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .footer-brand p {
    max-width: 100%;
    margin-top: 10px;
  }
}

/* SECTION */
.contact-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at top left, rgba(30, 58, 138, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

/* HEADING */
.contact-tag {
  display: inline-block;
  background: #dbeafe;
  color: #1e3a8a;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 12px;
}

.contact-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
  margin: 8px 0 0;
}

.contact-subtitle {
  max-width: 760px;
  margin: 12px auto 0;
  color: #64748b;
}

/* CARD */
.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
 background: linear-gradient(90deg, #f34a21, #ff7a59);
}

.contact-form-card h4,
.contact-info-card h4,
.contact-map-card h4 {
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-form-header {
  margin-bottom: 22px;
}

.contact-form-header .contact-subtitle {
  max-width: 100%;
  margin: 12px 0 0;
}

.contact-card-text {
  color: #64748b;
  margin-bottom: 22px;
}

/* FORM */
.contact-form .form-control {
  border: 1px solid #dbe3f0;
  background: #f8fbff;
  padding: 12px 14px;
  border-radius: 14px;
  box-shadow: none;
  width: 100%;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form-actions {
  grid-column: 1 / -1;
}

.contact-form-field-full {
  grid-column: 1 / -1;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-form .form-control:focus {
  border-color: #1e3a8a;
  box-shadow: 0 0 0 0.2rem rgba(30, 58, 138, 0.12);
}

.contact-submit {
  border-radius: 10px;
  padding: 12px 24px;
}

.contact-whatsapp {
  background: #22c55e;
  color: #fff;
  border-radius: 10px;
  padding: 12px 24px;
}

.contact-whatsapp:hover {
  background: #16a34a;
  color: #fff;
}

/* INFO */
.contact-info-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: #f8fbff;
  min-height: 100%;
}

.info-item i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: #dbeafe;
  color: #f34a21;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.info-item h5 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.info-item p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.info-item a {
  color: inherit;
  text-decoration: none;
}

/* MAP */
.contact-side {
  display: grid;
  gap: 20px;
  height: 100%;
}

.contact-form-card {
  display: flex;
  flex-direction: column;
}

.contact-combined-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  height: 100%;
}

.contact-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-side .contact-card {
  height: auto;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  background: #f34a21;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.map-link:hover {
  color: #fff;
  background: #1d4ed8;
}

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  min-height: 280px;
  flex: 1 1 auto;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  min-height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 56px 0;
  }

  .contact-card {
    padding: 20px;
    border-radius: 20px;
  }

  .contact-title {
    font-size: 1.7rem;
  }

  .contact-side {
    height: auto;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
  }

  .contact-card-header {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-submit,
  .contact-whatsapp,
  .map-link {
    width: 100%;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 260px;
  }
}

@media (max-width: 991.98px) {
  .contact-layout .col-lg-6 {
    width: 100%;
  }
}





.floating-wa-link {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    animation: whatsappPulse 1.5s infinite;
}

.floating-wa-link i {
    color: #fff;
    font-size: 36px;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.08);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
.floating-call-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #f34a21;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(243, 74, 33, 0.4);
    z-index: 9999;
    animation: pulse-call 1.5s infinite;
}

.floating-call-btn i {
    color: #fff;
    font-size: 30px;
}

@keyframes pulse-call {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(205, 34, 11, 0.7);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.expertise-card {
  height: 100%;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e8eef5;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

.expertise-card i {
  font-size: 25px;
  color: #0d6efd;
  margin-bottom: 12px;
}

.expertise-card h5 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1d2939;
}

.expertise-card p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: #667085;
}
.webzyro-credit {
  width: 100%;
  text-align: center;
  font-size: 11px;
  margin-top: 8px;
  opacity: 0.7;
}

.webzyro-credit a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.webzyro-credit a:hover {
  text-decoration: underline;
}