/* ===========================
   Hero Section
   =========================== */

.hero-section {
  padding: 60px 0 60px;
  background:
    radial-gradient(circle at 70% 10%, #ddeeff 0%, transparent 45%),
    radial-gradient(circle at 10% 70%, #d6f5ef 0%, transparent 45%),
    #ffffff;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.2;
  color: #0d0d0d;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #555e6e;
}

.btn-cta {
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  background-color: #253858;
  border-color: #253858;
  color: #ffffff;
  transition: all 0.2s ease;
}

.btn-cta:hover {
  background-color: #253858;
  border-color: #253858;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

/* Update these rules in your CSS */

.btn-sec.btn-cta {
  background-color: #ffffff !important;
  border-color: #253858 !important;
  color: #374151 !important; /* Clean charcoal text */
}

.btn-sec.btn-cta:hover {
  background-color: #f1f5f9 !important;
  border-color: #253858 !important; /* Deep dark blue-slate border */
  color: #253858 !important;        /* Deep dark blue-slate text */
  box-shadow: 0 4px 14px rgba(37, 56, 88, 0.15) !important; /* Adjusted shadow to match slate theme */
}

.video-wrapper {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}


/* ===========================
   Features Section
   =========================== */

.features-section {
  padding: 60px 0;
  background-color: #ffffff;
}


.features-section .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .features-section .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1200px) {
  .features-section .container-fluid {
    padding-left: 100px;
    padding-right: 100px;
  }
}


.features-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #0d0d0d;
  letter-spacing: -0.4px;
}

.features-subtitle {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #555e6e;
}

.feature-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: #eff6ff;
  border-radius: 12px;
}

.feature-card-title {
  font-size: 18px;
  color: #0d0d0d;
}

.feature-card-text {
  font-size: 18px;
  line-height: 1.65;
  color: #555e6e;
}

.icon-blue {
  filter: hue-rotate(110deg) saturate(2);
}


/* ===========================
   Why Section
   =========================== */

.why-section {
  padding: 60px 0;
  background-color: #f8fafc;
}

/* FIXED RESPONSIVE PADDING: Removed hardcoded 100px padding */
.why-section .container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .why-section .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1200px) {
  .why-section .container-fluid {
    padding-left: 100px;
    padding-right: 100px;
  }
}

.why-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #0d0d0d;
  letter-spacing: -0.4px;
}

.why-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #555e6e;
}

.why-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: box-shadow 0.2s ease;
}

.why-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.why-card-title {
  font-size: 18px;
  color: #0d0d0d;
  margin-bottom: 6px;
}

.why-card-text {
  font-size: 16px;
  line-height: 1.65;
  color: #555e6e;
}

.why-cta-card {
  background: linear-gradient(135deg, #1d4ed8 0%, #0e7490 100%);
  border-radius: 20px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-cta-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.2;
  color: #ffffff;
}

.why-cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.why-cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background-color: #ffffff;
  color: #1d4ed8;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.why-cta-btn:hover {
  background-color: #f1f5f9;
  color: #1e3a8a;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}


/* ===========================
   FAQ Section
   =========================== */

.faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.faq-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #0d0d0d;
  letter-spacing: -0.4px;
}

.faq-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #555e6e;
}

.faq-cta-btn {
  background-color: #253858;
  border-color: #253858;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.faq-cta-btn:hover {
  background-color: #253858;
  border-color: #253858;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.fw-bold {
  font-weight: 700 !important;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}












/* accordion --------- */
  .faq-section .accordion-item {
            background-color: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 12px !important;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .faq-section .accordion-header {
            margin: 0;
        }

        .faq-section .accordion-button {
            position: relative;
            display: flex;
            align-items: center;
            width: 100%;
            padding: 1rem 1.25rem;
            font-size: 18px;
            color: #0d0d0d;
            text-align: left;
            background-color: #fff;
            border: 0;
            border-radius: 0;
            overflow-anchor: none;
            transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
            cursor: pointer;
            outline: none;
            box-shadow: none;
        }

        .faq-section .accordion-button:not(.collapsed) {
            color: #2563eb;
            background-color: #f0f5ff;
            box-shadow: none;
        }

        .faq-section .accordion-button::after {
            flex-shrink: 0;
            width: 1.25rem;
            height: 1.25rem;
            margin-left: auto;
            content: "";
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d0d0d'%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");
            background-repeat: no-repeat;
            background-size: 1.25rem;
            transition: transform 0.2s ease-in-out;
        }

        .faq-section .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='%232563eb'%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");
            transform: rotate(-180deg);
        }

        .faq-section .accordion-collapse {
            overflow: hidden;
            transition: height 0.35s ease;
        }

        .faq-section .accordion-collapse.collapse {
            display: none;
        }

        .faq-section .accordion-collapse.collapse.show,
        .faq-section .accordion-collapse.collapsing {
            display: block;
        }

        .faq-section .accordion-body {
            padding: 1rem 1.25rem;
            font-size: 18px;
            line-height: 1.65;
            color: #555e6e;
        }

    



.section-head {
    margin-bottom: 48px;
    width: fit-content;
    text-align: center;
    margin-left: auto;
    padding: 10px;
    margin-right: auto;
     border-width: 2px !important;
     border-color: #253858 !important;
     color: #253858 !important;
     border-radius: 50px;
     font-weight: 600;
     
}


/* .section { max-width: 1152px; margin: 0 auto; padding: 80px 24px; }

@media (min-width: 768px) { .section { padding: 60px 24px 60px 24px } }
.section-band { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(241,244,251,.55); }
.section-head { margin-bottom: 48px; max-width: 768px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); background: var(--card);
  border-radius: 999px; padding: 5px 12px; font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: #23374d;
  margin-bottom: 14px;
}
.section-eyebrow .dot { width: 6px; height: 6px; }
.section h2 {
  font-size: clamp(1.9rem, 3.5vw, 3rem); font-weight: 700; margin: 0;
} */