  :root {
    --primary-green: #206785;
    --dark-green: #1a5c40;
    --bg-light: #f8fafc;
    --text-main: #2c3e50;
    --border-color: #d1d5db;
    --gradient: linear-gradient(to right, #199e82, #206785);
  }
 
  .hero-section {
    background: #fff;
    padding: 19px 0 27px;
    overflow: hidden;
    position: relative;
  }
 
  .hero-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(25,158,130,0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
 
  /* ---- HEADING ---- */
  .hero-heading {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.18;
    color: var(--text-main);
  }
 
  .hero-heading .highlight {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
 
  .hero-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
  }
 
  .hero-subtitle strong {
    color: var(--text-main);
  }
 
  /* ---- SEARCH BAR ---- */
  .hero-search-wrap {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: 50px;
    padding: 6px 6px 6px 18px;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(32,103,133,0.10);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
 
  .hero-search-wrap:focus-within {
    border-color: #199e82;
    box-shadow: 0 4px 24px rgba(25,158,130,0.18);
  }
 
  .search-icon {
    color: #9ca3af;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
 
  .hero-search-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14.5px;
    color: var(--text-main);
    background: transparent;
    padding: 6px 0;
    min-width: 0;
  }
 
  .hero-search-wrap input::placeholder {
    color: #adb5bd;
  }
 
  .hero-search-btn {
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 11px 26px;
    border-radius: 50px;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.15s;
    flex-shrink: 0;
  }
 
  .hero-search-btn:hover {
    opacity: 0.92;
    transform: scale(1.02);
    color: #fff;
  }
 
  /* ---- POPULAR TAGS ---- */
  .popular-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
  }
 
  .popular-label {
    font-weight: 600;
    color: #374151;
  }
 
  .pop-tag {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--primary-green);
    font-size: 12.5px;
    font-weight: 500;
    padding: 5px 13px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    text-decoration: none;
  }
 
  .pop-tag:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
  }
 
  /* ---- FLOAT BADGE CARDS ---- */
  .float-card {
    background: #fff;
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 6px 24px rgba(32,103,133,0.13);
    animation: floatY 3s ease-in-out infinite;
    white-space: nowrap;
  }
 
  .float-card:nth-child(1) { animation-delay: 0s; }
  .float-card:nth-child(2) { animation-delay: 0.8s; }
  .float-card:nth-child(3) { animation-delay: 1.5s; }
 
  .float-card .card-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
 
  .icon-prices     { background: #e6f7f3; color: #199e82; }
  .icon-hospitals  { background: #e8f2f8; color: #206785; }
  .icon-procedures { background: #fff3e0; color: #e67e22; }
 
  @keyframes floatY {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-7px); }
  }
 
  /* ---- DOCTOR IMAGE ---- */
  .hero-img-wrap {
    position: relative;
    text-align: center;
  }
 
  .hero-img-wrap::before {
    content: '';
    position: absolute;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25,158,130,0.10) 0%, rgba(32,103,133,0.08) 60%, transparent 100%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
 
  .hero-doctor-img {
    position: relative;
    z-index: 1;
    max-height: 350px;
    object-fit: contain;
    display: inline-block;
  }
 
  /* ---- RESPONSIVE ---- */
  @media (max-width: 767px) {
    .hero-section {
      padding: 36px 0 28px;
      text-align: center;
    }
 
    .popular-row {
      justify-content: center;
    }
 
    .float-card {
      justify-content: center;
    }
 
    .hero-doctor-img {
      max-height: 200px;
    }
  }

  .actions-works-wrap {
    background: var(--bg-light);
    padding: 70px 0 70px;
  }
 
  /* ======================================================
     SHARED SECTION LABEL
  ====================================================== */
  .sec-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg,rgba(25,158,130,.10),rgba(32,103,133,.10));
    border: 1px solid rgba(32,103,133,.15);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
  }
 
  .sec-label .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gradient);
  }
 
  .sec-heading {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
    line-height: 1.25;
  }
 
  .sec-heading span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
 
  .sec-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
  }
 
  /* ======================================================
     QUICK ACTION CARDS — broad boxes
  ====================================================== */
  .qa-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    position: relative;
    overflow: hidden;
  }
 
  .qa-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
    border-radius: 16px 16px 0 0;
  }
 
  .qa-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(32,103,133,.13);
    border-color: rgba(32,103,133,.25);
  }
 
  .qa-card:hover::before {
    transform: scaleX(1);
  }
 
  .qa-card-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
  }
 
  .ic-blue   { background: #e8f2f8; }
  .ic-teal   { background: #e6f7f3; }
  .ic-orange { background: #fff3e0; }
  .ic-mint   { background: #e0f4f1; }
  .ic-indigo { background: #eef2ff; }
 
  .qa-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
  }
 
  .qa-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
    flex: 1;
  }
 
  .qa-card-link {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--teal);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s;
  }
 
  .qa-card-link:hover {
    color: var(--primary);
    gap: 8px;
  }
 
  /* ======================================================
     DIVIDER
  ====================================================== */
  .sections-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 25px 0;
  }
 
 .hiw-section {
    background: #fff;
    padding: 60px 0 70px;
    border-top: 1px solid var(--border);
  }
 
  /* ---- Section label + heading ---- */
  .sec-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg,rgba(25,158,130,.10),rgba(32,103,133,.10));
    border: 1px solid rgba(32,103,133,.15);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
  }
 
  .sec-pill .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gradient);
  }
 
  .sec-h {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 6px;
    line-height: 1.25;
  }
 
  .sec-h span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
 
  .sec-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 36px;
  }
 
  /* ======================================================
     STEP TABS TRACK
  ====================================================== */
  .hiw-track-wrap {
    position: relative;
    margin-bottom: 24px;
  }
 
  /* Dashed connector line running through all circle midpoints */
  .hiw-connector {
    position: absolute;
    top: 21px; /* half of circle height (42px) */
    left: calc(10% + 21px); /* starts from centre of first circle */
    right: calc(10% + 21px); /* ends at centre of last circle */
    height: 2px;
    border-top: 2px dashed #d1d5db;
    z-index: 0;
    pointer-events: none;
  }
 
  /* Active progress fill inside connector */
  .hiw-connector-fill {
    position: absolute;
    top: 21px;
    left: calc(10% + 21px);
    height: 2px;
    background: var(--gradient);
    z-index: 0;
    transition: width .4s ease;
    pointer-events: none;
  }
 
  /* Steps row */
  .hiw-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
  }
 
  .hiw-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
    position: relative;
  }
 
  /* Circle */
  .hiw-circle {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-muted);
    transition: background .25s, border-color .25s, color .25s, box-shadow .25s;
    position: relative;
    z-index: 1;
  }
 
  .hiw-tab.active .hiw-circle,
  .hiw-tab.done .hiw-circle {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 14px rgba(25,158,130,.30);
  }
 
  .hiw-tab-label {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-align: center;
    transition: color .25s;
    line-height: 1.3;
  }
 
  .hiw-tab-sub {
    font-size: 15px;
    color: #808793;
    text-align: center;
    line-height: 1.3;
    margin-top: -6px;
  }
 
  .hiw-tab.active .hiw-tab-label {
    color: var(--primary);
  }
 
  /* ======================================================
     DETAIL PANEL (below tabs)
  ====================================================== */
  .hiw-panel-wrap {
    position: relative;
    min-height: 90px;
  }
 
  .hiw-panel {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 26px;
    animation: fadePanelIn .25s ease;
  }
 
  .hiw-panel.active {
    display: flex;
    align-items: center;
    gap: 20px;
  }
 
  @keyframes fadePanelIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
 
  .hiw-panel-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg,rgba(25,158,130,.12),rgba(32,103,133,.12));
  }
 
  .hiw-panel-body h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 5px;
  }
 
  .hiw-panel-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
  }
 
  /* ======================================================
     PRICING WORKS CARD — height matches steps+panel
  ====================================================== */
  .pw-card {
    background: var(--gradient);
    border-radius: 16px;
    padding: 30px 26px;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
 
  .pw-card::before {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.07);
  }
 
  .pw-card::after {
    content: '';
    position: absolute;
    top: -20px; right: 40px;
    width: 90px; height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,.05);
  }
 
  .pw-card-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
    position: relative;
    z-index: 1;
  }
 
  .pw-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13.5px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
  }
 
  .pw-check {
    width: 18px; height: 18px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 1px;
  }
 
  /* ======================================================
     MOBILE
  ====================================================== */
  @media (max-width: 767px) {
    .hiw-section {
      padding: 40px 0 50px;
    }
 
    .hiw-connector,
    .hiw-connector-fill {
      left: calc(10% + 18px);
      right: calc(10% + 18px);
      top: 18px;
    }
 
    .hiw-circle {
      width: 36px; height: 36px;
      font-size: 13px;
    }
 
    .hiw-tab-sub {
      display: none;
    }
 
    .hiw-panel.active {
      flex-direction: column;
      text-align: center;
    }
 
    .pw-card {
      margin-top: 20px;
    }
  }
  /* ======================================================
     FAQ ACCORDION — broad boxes
  ====================================================== */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
 
  .faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .2s, border-color .2s;
  }
 
  .faq-item:hover {
    border-color: rgba(32,103,133,.3);
    box-shadow: 0 4px 18px rgba(32,103,133,.08);
  }
 
  .faq-item.open {
    border-color: rgba(25,158,130,.4);
    box-shadow: 0 4px 20px rgba(25,158,130,.10);
  }
 
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
  }
 
  .faq-q-text {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
  }
 
  .faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 17px;
    font-weight: 300;
    transition: background .2s, color .2s, transform .3s;
  }
 
  .faq-item.open .faq-icon {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    transform: rotate(45deg);
  }
 
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .3s ease;
    padding: 0 22px;
  }
 
  .faq-answer-inner {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.7;
    padding-bottom: 18px;
    border-top: 1px solid var(--border);
    padding-top: 14px;
  }
 
  .faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 22px;
  }
 
  /* View All Button */
  .faq-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 11px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s;
    border: 1px solid #1e7584;
  }
 
  .faq-view-all:hover {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
  }
 
  /* ======================================================
     SEARCH TIPS CARD — broad box
  ====================================================== */
  .tips-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px 26px;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-top: 86px;
  }
 
  .tips-card::before {
    content: '';
    position: absolute;
    bottom: -50px; right: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25,158,130,.08), transparent 70%);
  }
 
  .tips-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
  }
 
  .tips-card-header .tip-icon-wrap {
    width: 38px; height: 38px;
    background: linear-gradient(135deg,rgba(25,158,130,.15),rgba(32,103,133,.15));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
 
  .tips-card-header h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
  }
 
  .tip-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }
 
  .tip-check {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }
 
  .tip-check svg {
    width: 11px; height: 11px;
    stroke: #fff;
    stroke-width: 2.5;
    fill: none;
  }
 
  .tip-text {
    font-size: 13.5px;
    color: var(--text-main);
    line-height: 1.55;
    font-weight: 500;
  }
 
  .tip-text small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 2px;
  }
 
  /* Image placeholder area */
  .tips-img-wrap {
    margin-top: 24px;
    text-align: right;
  }
 
  .tips-img-wrap img {
    max-width: 130px;
    opacity: .9;
  }
 
  /* ======================================================
     RESPONSIVE
  ====================================================== */
  @media (max-width: 991px) {
    .tips-card {
      margin-top: 10px;
    }
  }
 
  @media (max-width: 767px) {
    .faq-tips-section {
      padding: 40px 0 50px;
    }
  }


    .cta-section {
    position: relative;
    background: linear-gradient(135deg, #e8f7f3 0%, #dff0f8 50%, #eaf5f0 100%);
    padding: 30px 0 30px;
    overflow: hidden;
    text-align: center;
  }
 
  /* ---- Wave blobs ---- */
  .cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
  }
 
  .cta-blob-1 {
    width: 340px; height: 260px;
    background: rgba(25,158,130,.18);
    top: -60px; left: -80px;
  }
 
  .cta-blob-2 {
    width: 280px; height: 220px;
    background: rgba(32,103,133,.13);
    bottom: -50px; right: -60px;
  }
 
  .cta-blob-3 {
    width: 180px; height: 180px;
    background: rgba(25,158,130,.10);
    top: 20px; right: 20%;
  }
 
  /* SVG wave bottom decorations */
  .cta-wave {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    opacity: .35;
    line-height: 0;
  }
 
  /* ---- Content ---- */
  .cta-inner {
    position: relative;
    z-index: 1;
  }
 
  .cta-heading {
    font-size: clamp(22px, 4vw, 29px);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.25;
  }
 
  .cta-heading .cta-accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
 
  .cta-sub {
    font-size: 15.5px;
    color: #4b6272;
    margin-bottom: 10px;
    line-height: 1.6;
  }
 
  /* short decorative line under subtext */
  .cta-divider {
    width: 44px;
    height: 2px;
    background: var(--gradient);
    border-radius: 2px;
    margin: 0 auto 20px;
  }
 
  .cta-btn {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    border: none;
    padding: 12px 33px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .02em;
    box-shadow: 0 8px 28px rgba(25,158,130,.30);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s;
  }
 
  .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(25,158,130,.38);
    opacity: .95;
    color: #fff;
  }
 
  .cta-btn:active {
    transform: translateY(0);
  }
 
  /* ---- Responsive ---- */
  @media (max-width: 576px) {
    .cta-section {
      padding: 54px 0 64px;
    }
 
    .cta-btn {
      width: 100%;
      max-width: 320px;
      padding: 15px 32px;
    }
  }

   /* ── SECTION WRAP ── */
   
.hc-section {
  padding: 70px 0 80px;
  background: #f8fafc;
}
 
.hc-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(25,158,130,.10), rgba(32,103,133,.10));
  border: 1px solid rgba(32,103,133,.15);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #206785;
  margin-bottom: 10px;
}
 
.hc-pill .hc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(to right, #199e82, #206785);
  flex-shrink: 0;
}
 
.hc-heading {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 8px;
}
 
.hc-heading span {
  background: linear-gradient(to right, #199e82, #206785);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
 
.hc-sub {
  font-size: 15px;
  color: #6b7280;
  max-width: 540px;
  margin-bottom: 0;
}
 
/* View All button */
.hc-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #206785;
  border: 1.5px solid rgba(32,103,133,.30);
  border-radius: 50px;
  padding: 7px 20px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
 
.hc-view-all-btn:hover {
  background: linear-gradient(to right, #199e82, #206785);
  color: #fff;
  border-color: transparent;
}
 
/* Card */
.hc-card {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
}
 
.hc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, #199e82, #206785);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  border-radius: 20px 20px 0 0;
  z-index: 2;
}
 
.hc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(32,103,133,.14);
  border-color: rgba(32,103,133,.28);
  color: inherit;
  text-decoration: none;
}
 
.hc-card:hover::before {
  transform: scaleX(1);
}
 
/* Image wrap */
.hc-img-wrap {
  width: 100%;
  height: 175px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #e8f7f3, #dff0f8);
}
 
.hc-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(11,124,124,.45) 100%);
  transition: opacity .35s ease;
  pointer-events: none;
  z-index: 0;
}
 
.hc-card:hover .hc-img-wrap::after {
  opacity: 0;
}
 
.hc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
 
.hc-card:hover .hc-img-wrap img {
  transform: scale(1.05);
}
 
.hc-img-icon {
  position: absolute;
  bottom: 12px;
  left: 14px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b7c7c;
  box-shadow: 0 4px 14px rgba(32,103,133,.18);
  z-index: 1;
}
 
.hc-img-icon i {
  font-size: 18px;
  color: #fff;
}
 
/* Card body */
.hc-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
 
.hc-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}
 
.hc-card-desc {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.55;
  flex: 1;
}
 
.hc-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  color: #199e82;
  margin-top: 6px;
}
 
.hc-card-cta svg {
  transition: transform .2s;
}
 
.hc-card:hover .hc-card-cta svg {
  transform: translateX(3px);
}
 
 
/* ─────────────────────────────────────────
   2. DETAIL / GUIDE PAGE  (.hcg-*)
───────────────────────────────────────── */
 
.hcg-section {
  padding: 48px 0 80px;
  background: #f8fafc;
  min-height: 75vh;
}
 
/* Breadcrumb */
.hcg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 28px;
}
 
.hcg-breadcrumb a {
  color: #199e82;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
 
.hcg-breadcrumb a:hover {
  text-decoration: underline;
}
 
.hcg-bc-sep {
  color: #d1d5db;
}
 
.hcg-bc-current {
  color: #2c3e50;
  font-weight: 600;
}
 
/* Layout row */
.hcg-layout {
  align-items: flex-start;
}
 
/* ── SIDEBAR ── */
.hcg-sidebar-col {
  position: sticky;
  top: 90px;
}
 
.hcg-sidebar {
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 18px;
  overflow: hidden;
}
 
/* Mobile toggle button */
.hcg-sidebar-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(to right, #199e82, #206785);
  color: #fff;
  border: none;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}
 
.hcg-toggle-arrow {
  margin-left: auto;
  transition: transform .25s;
}
 
.hcg-sidebar-toggle[aria-expanded="true"] .hcg-toggle-arrow {
  transform: rotate(180deg);
}
 
/* Sidebar inner (collapsible on mobile) */
.hcg-sidebar-inner {
  padding: 10px 0 14px;
}
 
@media (max-width: 991px) {
  .hcg-sidebar-inner {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0;
  }
 
  .hcg-sidebar-inner.open {
    max-height: 600px;
    padding: 10px 0 14px;
  }
}
 
/* Section label inside sidebar */
.hcg-sidebar-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #206785;
  padding: 4px 18px 10px;
}
 
/* Nav items */
.hcg-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 10px;
}
 
.hcg-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: background .18s, color .18s;
  line-height: 1.35;
  cursor: pointer;
}
 
.hcg-nav-item:hover {
  background: linear-gradient(135deg, rgba(25,158,130,.08), rgba(32,103,133,.08));
  color: #199e82;
  text-decoration: none;
}
 
.hcg-nav-item.active {
  background: linear-gradient(135deg, rgba(25,158,130,.13), rgba(32,103,133,.13));
  color: #0b7c7c;
  font-weight: 700;
}
 
.hcg-nav-item.active .hcg-nav-icon {
  background: #0b7c7c;
  color: #fff;
}
 
.hcg-nav-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #6b7280;
  flex-shrink: 0;
  transition: background .18s, color .18s;
}
 
/* Sidebar help note */
.hcg-sidebar-help {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 20px 4px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(25,158,130,.06), rgba(32,103,133,.06));
  border: 1px solid rgba(32,103,133,.12);
  border-radius: 10px;
  font-size: 12.5px;
  color: #6b7280;
}
 
.hcg-sidebar-help i {
  color: #199e82;
  font-size: 14px;
}
 
.hcg-sidebar-help a {
  color: #199e82;
  font-weight: 600;
  text-decoration: none;
}
 
.hcg-sidebar-help a:hover {
  text-decoration: underline;
}
 
/* ── CONTENT PANEL ── */
.hcg-content-col {
  padding-left: 28px;
}
 
@media (max-width: 991px) {
  .hcg-content-col {
    padding-left: 0;
    margin-top: 20px;
  }
}
 
.hcg-panel {
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 20px;
  overflow: hidden;
}
 
/* Pane visibility */
.hcg-pane {
  display: none;
  padding: 32px 34px 28px;
  animation: hcgFadeIn .25s ease;
}
 
.hcg-pane.active {
  display: block;
}
 
@keyframes hcgFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* Pane header */
.hcg-pane-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e9edf2;
  margin-bottom: 28px;
}
 
.hcg-pane-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b7c7c, #206785);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(11,124,124,.22);
}
 
.hcg-pane-title {
  font-size: 22px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0 0 4px;
  line-height: 1.25;
}
 
.hcg-pane-sub {
  font-size: 14.5px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
 
/* Topic block */
.hcg-topic {
  margin-bottom: 26px;
}
 
.hcg-topic:last-of-type {
  margin-bottom: 22px;
}
 
.hcg-topic-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: #206785;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
 
.hcg-topic-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e0e7ef;
}
 
.hcg-topic-label i {
  font-size: 13px;
  color: #199e82;
}
 
/* Step */
.hcg-step {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 11px 14px;
  border-radius: 10px;
  margin-bottom: 6px;
  background: #f8fafc;
  border: 1px solid #e5eaf0;
  transition: border-color .2s;
}
 
.hcg-step:hover {
  border-color: rgba(32,103,133,.28);
}
 
.hcg-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(to right, #199e82, #206785);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
 
.hcg-step-text {
  font-size: 14.5px;
  color: #2c3e50;
  line-height: 1.55;
  font-weight: 500;
  margin: 0;
}
 
.hcg-step-text small {
  display: block;
  font-size: 12px;
  color: #6b7280;
  font-weight: 400;
  margin-top: 3px;
}
 
/* Note box */
.hcg-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: linear-gradient(135deg, rgba(25,158,130,.07), rgba(32,103,133,.07));
  border: 1px solid rgba(32,103,133,.15);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 8px 0 24px;
}
 
.hcg-note i {
  font-size: 16px;
  color: #199e82;
  margin-top: 2px;
  flex-shrink: 0;
}
 
.hcg-note strong {
  color: #206785;
}
 
/* Pane prev / next navigation */
.hcg-pane-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid #e9edf2;
  margin-top: 8px;
  gap: 12px;
}
 
.hcg-btn-prev,
.hcg-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 50px;
  padding: 9px 20px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
}
 
.hcg-btn-prev {
  border: 1.5px solid #d1d5db;
  color: #6b7280;
  background: transparent;
}
 
.hcg-btn-prev:hover {
  border-color: #199e82;
  color: #199e82;
  text-decoration: none;
}
 
.hcg-btn-next {
  background: linear-gradient(to right, #199e82, #206785);
  color: #fff;
  border: none;
}
 
.hcg-btn-next:hover {
  opacity: .88;
  color: #fff;
  text-decoration: none;
}
 
 
/* ─────────────────────────────────────────
   3. RESPONSIVE
───────────────────────────────────────── */
 
@media (max-width: 991px) {
  .hcg-sidebar-col {
    position: static;
  }
}
 
@media (max-width: 767px) {
  .hc-section {
    padding: 44px 0 54px;
  }
 
  .hc-img-wrap {
    height: 145px;
  }
 
  .hcg-section {
    padding: 28px 0 50px;
  }
 
  .hcg-pane {
    padding: 22px 18px 20px;
  }
 
  .hcg-pane-title {
    font-size: 18px;
  }
 
  .hcg-pane-header {
    flex-direction: column;
    gap: 12px;
  }
 
  .hcg-pane-nav {
    flex-direction: column-reverse;
    align-items: stretch;
  }
 
  .hcg-btn-prev,
  .hcg-btn-next {
    justify-content: center;
    width: 100%;
  }
}

/* faq css starts */

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION  —  faq.css
   Prefix: .faq-*   (fully non-conflicting)
   No :root, no body, no font-family declarations
═══════════════════════════════════════════════════════════ */


/* ─────────────────────────────────────────
   SECTION WRAPPER
───────────────────────────────────────── */

.faq-section {
  padding: 16px 0 63px;
  background: #f8fafc;
}


/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */

.faq-header {
  max-width: 620px;
}

.faq-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(25,158,130,.10), rgba(32,103,133,.10));
  border: 1px solid rgba(32,103,133,.15);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #206785;
  margin-bottom: 10px;
}

.faq-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(to right, #199e82, #206785);
  flex-shrink: 0;
  display: inline-block;
}

.faq-heading {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 800;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 10px;
}

.faq-heading span {
  background: linear-gradient(to right, #199e82, #206785);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-sub {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}


/* ─────────────────────────────────────────
   LAYOUT
───────────────────────────────────────── */

.faq-layout {
  align-items: stretch;
  gap: 0;
}


/* ─────────────────────────────────────────
   LEFT: TAB LIST
───────────────────────────────────────── */

.faq-tabs-col {
  position: sticky;
  top: 90px;
}

/* Mobile toggle button */
.faq-mob-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(to right, #199e82, #206785);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
  margin-bottom: 4px;
}

.faq-mob-arrow {
  margin-left: auto;
  transition: transform .25s ease;
  font-size: 12px;
}

.faq-mob-toggle[aria-expanded="true"] .faq-mob-arrow {
  transform: rotate(180deg);
}

/* Tab list */
.faq-tab-list {
  list-style: none;
  margin: 0;
  padding: 8px 6px;
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: 100%;
}

.faq-tab-list li {
  margin: 0;
  padding: 0;
}

/* Mobile: hidden by default, shown via .open */
@media (max-width: 991px) {
  .faq-tab-list {
    max-height: 0;
    overflow: hidden;
    padding: 0 6px;
    border: none;
    background: transparent;
    border-radius: 0;
    transition: max-height .35s ease, padding .25s ease;
  }

  .faq-tab-list.open {
    max-height: 600px;
    padding: 8px 6px;
    background: #fff;
    border: 1px solid #e0e7ef;
    border-radius: 0 0 18px 18px;
  }
}

@media (min-width: 992px) {
  .faq-mob-toggle {
    display: none !important;
  }
}

/* Individual tab button */
.faq-tab {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 11px;
  padding: 11px 13px;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
  color: #4b5563;
}

.faq-tab:hover {
  background: linear-gradient(135deg, rgba(25,158,130,.07), rgba(32,103,133,.07));
  color: #199e82;
}

.faq-tab.active {
  background: linear-gradient(135deg, rgba(25,158,130,.13), rgba(32,103,133,.13));
  color: #0b7c7c;
}

.faq-tab-num {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #6b7280;
  flex-shrink: 0;
  transition: background .18s, color .18s;
  letter-spacing: .02em;
}

.faq-tab.active .faq-tab-num {
  background: linear-gradient(to right, #199e82, #206785);
  color: #fff;
}

.faq-tab:hover .faq-tab-num {
  background: linear-gradient(to right, #199e82, #206785);
  color: #fff;
}

.faq-tab-label {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.35;
}

.faq-tab.active .faq-tab-label {
  font-weight: 700;
  color: #0b7c7c;
}


/* ─────────────────────────────────────────
   RIGHT: PANELS
───────────────────────────────────────── */

.faq-panels-col {
  padding-left: 28px;
}

@media (max-width: 991px) {
  .faq-panels-col {
    padding-left: 0;
    margin-top: 20px;
  }

  .faq-tabs-col {
    position: static;
  }
}

.faq-panels-wrap {
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}

/* Single panel */
.faq-panel {
  display: none;
  padding: 32px 34px 30px;
  animation: faqFadeIn .22s ease;
}

.faq-panel.active {
  display: block;
}

@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Panel heading */
.faq-panel-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e9edf2;
  margin-bottom: 28px;
}

.faq-panel-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0b7c7c, #206785);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(11,124,124,.22);
}

.faq-panel-title {
  font-size: 21px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0 0 4px;
  line-height: 1.25;
}

.faq-panel-sub {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}


/* ─────────────────────────────────────────
   ACCORDION (Q & A)
───────────────────────────────────────── */

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid #e5eaf0;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item.open {
  border-color: rgba(25,158,130,.35);
  box-shadow: 0 2px 14px rgba(25,158,130,.08);
}

/* Question button */
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 14px;
  background: #f8fafc;
  border: none;
  padding: 15px 18px;
  text-align: left;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.45;
  transition: background .18s ease, color .18s ease;
}

.faq-q:hover {
  background: linear-gradient(135deg, rgba(25,158,130,.06), rgba(32,103,133,.06));
  color: #0b7c7c;
}

.faq-item.open .faq-q {
  background: linear-gradient(135deg, rgba(25,158,130,.09), rgba(32,103,133,.09));
  color: #0b7c7c;
}

/* Plus / X icon */
.faq-icon {
  font-size: 13px;
  color: #199e82;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Answer body */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
  background: #fff;
}

.faq-a p,
.faq-a ul {
  font-size: 14.5px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

.faq-a > p:first-child,
.faq-a > ul:first-child {
  margin-top: 0;
}

.faq-a p + p,
.faq-a p + ul,
.faq-a ul + p {
  margin-top: 10px;
}

/* Inner padding wrapper — avoids max-height clip issues */
.faq-item.open .faq-a {
  padding: 14px 18px 18px;
}

.faq-a ul {
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 0;
}

.faq-a ul li {
  margin-bottom: 5px;
  color: #4b5563;
}

.faq-a ul li:last-child {
  margin-bottom: 0;
}

.faq-a strong {
  color: #206785;
}

.faq-a em {
  color: #199e82;
  font-style: italic;
}


/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */

@media (max-width: 767px) {
  .faq-section {
    padding: 44px 0 56px;
  }

  .faq-panel {
    padding: 22px 18px 20px;
  }

  .faq-panel-heading {
    flex-direction: column;
    gap: 12px;
  }

  .faq-panel-title {
    font-size: 18px;
  }

  .faq-q {
    font-size: 14px;
    padding: 13px 14px;
  }

  .faq-item.open .faq-a {
    padding: 12px 14px 16px;
  }
}

/* faq css ends  */

/* contact css starts  */

 
.cs-section {
  padding: 34px 0 34px;
  background: #f8fafc;
}
 
 
/* ─────────────────────────────────────────
   LEFT — INFO SIDE
───────────────────────────────────────── */
 
.cs-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, rgba(25,158,130,.10), rgba(32,103,133,.10));
  border: 1px solid rgba(32,103,133,.15);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #206785;
  margin-bottom: 14px;
}
 
.cs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(to right, #199e82, #206785);
  flex-shrink: 0;
  display: inline-block;
}
 
.cs-heading {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 14px;
}
 
.cs-heading span {
  background: linear-gradient(to right, #199e82, #206785);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
 
.cs-desc {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 440px;
}
 
/* Info items */
.cs-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.cs-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
 
.cs-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0b7c7c, #206785);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(11,124,124,.18);
}
 
.cs-info-icon i {
  font-size: 16px;
  color: #fff;
}
 
.cs-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
 
.cs-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #9ca3af;
  line-height: 1;
}
 
.cs-info-val {
  font-size: 14.5px;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.3;
}
 
 
/* ─────────────────────────────────────────
   RIGHT — FORM CARD
───────────────────────────────────────── */
 
.cs-card {
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 22px;
  padding: 36px 34px 30px;
  position: relative;
  overflow: hidden;
}
 

.cs-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #2c3e50;
  margin: 0 0 22px;
}
 
/* Form elements */
.cs-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
 
.cs-label {
  font-size: 12px;
  font-weight: 700;
  color: #4b5563;
  letter-spacing: .03em;
  margin-bottom: 0;
}
 
.cs-input,
.cs-select,
.cs-textarea {
  width: 100%;
  border: 1.5px solid #e0e7ef;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  color: #2c3e50;
  background: #f8fafc;
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
 
.cs-input::placeholder,
.cs-textarea::placeholder {
  color: #b0b9c6;
}
 
.cs-input:focus,
.cs-select:focus,
.cs-textarea:focus {
  border-color: #199e82;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(25,158,130,.10);
}
 
.cs-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}
 
.cs-textarea {
  resize: none;
  height: 110px;
  line-height: 1.6;
}
 
/* Submit button */
.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 13px 24px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(to right, #199e82, #206785);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s ease, transform .15s ease;
  margin-top: 4px;
}
 
.cs-btn i {
  font-size: 14px;
}
 
.cs-btn:hover {
  opacity: .9;
  transform: translateY(-1px);
}
 
.cs-btn:active {
  transform: translateY(0);
  opacity: 1;
}
 
/* Privacy note */
.cs-note {
  font-size: 12px;
  color: #9ca3af;
  text-align: center;
  margin: 12px 0 0;
}
 
.cs-note a {
  color: #199e82 !important;
  font-weight: 600;
  text-decoration: none !important;
}
 
.cs-note a:hover {
  text-decoration: underline !important;
}
 
 
/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
 
@media (max-width: 991px) {
  .cs-desc {
    max-width: 100%;
  }
}
 
@media (max-width: 767px) {
  .cs-section {
    padding: 48px 0 60px;
  }
 
  .cs-card {
    padding: 26px 20px 22px;
  }
 
  .cs-card-title {
    font-size: 16px;
  }
 
  .cs-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}
.cs-section-header {
  text-align: center;
}

.cs-section-header .cs-heading {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.cs-section-header .cs-desc {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.cs-section--bg {
  position: relative;
  overflow: hidden;
}

.cs-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

.cs-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(4 66 66 / 96%) 0%, rgb(67 90 100 / 49%) 100%);
  z-index: 1;
}

.cs-section--bg .container {
  position: relative;
  z-index: 2;
}

.cs-section--bg .cs-pill {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.cs-section--bg .cs-dot {
  background: #fff;
}

.cs-section--bg .cs-heading {
  color: #fff;
}

.cs-section--bg .cs-heading span {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  opacity: .85;
}

.cs-section--bg .cs-desc {
  color: rgba(255, 255, 255, 0.80);
}

.cs-section--bg .cs-info-label {
  color: rgba(255, 255, 255, 0.60);
}

.cs-section--bg .cs-info-val {
  color: #fff;
}

.cs-section--bg .cs-info-icon {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.cs-section--bg .cs-note {
  color: rgba(255, 255, 255, 0.55);
}
/* contact css ends  */

/* ─────────────────────────────────────────
   STEP ACCORDION  (.step-accord-*)
───────────────────────────────────────── */

.step-accord {
  flex-direction: column;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.step-accord:hover {
  border-color: transparent;
}

.step-accord-trigger {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 11px 14px;
  border-radius: 10px;
  background: rgb(248 250 252);
  border: 1.5px solid rgba(25,158,130,.25);
  width: 100%;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.step-accord-trigger:hover,
.step-accord.open .step-accord-trigger {
  border-color: rgba(25,158,130,.5);
  background: linear-gradient(135deg, rgba(25,158,130,.10), rgba(32,103,133,.10));
}

.sa-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(to right, #199e82, #206785);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: .03em;
}

.sa-plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(25,158,130,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform .25s, background .2s, border-color .2s;
}

.sa-plus svg {
  width: 12px;
  height: 12px;
  stroke: #199e82;
  stroke-width: 2.5;
  fill: none;
  transition: stroke .2s;
}

.step-accord.open .sa-plus {
  background: linear-gradient(to right, #199e82, #206785);
  border-color: transparent;
  transform: rotate(45deg);
}

.step-accord.open .sa-plus svg {
  stroke: #fff;
}

/* Accordion body */
.sa-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s ease;
}

.step-accord.open .sa-body {
  max-height: 700px;
}

.sa-inner {
  padding: 14px 13px 12px;
  border: 1.5px solid rgba(25,158,130,.2);
  border-top: none;
  border-radius: 0 0 10px 10px;
  background: #fff;
}

.sa-desc {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 14px;
}

/* Screen mockup inside accordion */
.screen-mock {
  border-radius: 12px;
  border: 1px solid #e0e7ef;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(32,103,133,.09);
}

.mock-bar {
  background: linear-gradient(to right, #199e82, #206785);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mock-bar-dots {
  display: flex;
  gap: 5px;
}

.mock-bar-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  display: block;
}

.mock-bar-url {
  background: rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 11px;
  color: rgba(255,255,255,.9);
  flex: 1;
  max-width: 280px;
}

.mock-body {
  padding: 16px;
}

.mock-label {
  font-size: 10.5px;
  font-weight: 800;
  color: #199e82;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}

.mock-nav {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e7ef;
}

.mock-nav-item {
  font-size: 11px;
  color: #6b7280;
  padding: 4px 10px;
  border-radius: 20px;
  background: #f1f5f9;
}

.mock-nav-item.mock-active {
  background: linear-gradient(to right, #199e82, #206785);
  color: #fff;
  font-weight: 700;
}

.mock-row {
  display: flex;
  gap: 8px;
  margin-bottom: 7px;
}

.mock-field {
  flex: 1;
  height: 32px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e0e7ef;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-size: 11px;
  color: #6b7280;
}

.mock-field.mock-filled {
  background: #fff;
  color: #2c3e50;
  font-weight: 500;
  border-color: rgba(25,158,130,.3);
}

.mock-field.mock-highlight-field {
  border-color: rgba(25,158,130,.5);
  color: #199e82;
}

.mock-btn-primary {
  background: linear-gradient(to right, #199e82, #206785);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
}

.mock-btn-ghost {
  background: #f1f5f9;
  color: #6b7280;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 11.5px;
}

.mock-card-sm {
  border: 1px solid #e0e7ef;
  border-radius: 10px;
  padding: 10px 12px;
  background: #f8fafc;
  margin-bottom: 6px;
}

.mock-card-sm.mock-card-active {
  border-color: rgba(25,158,130,.4);
  background: linear-gradient(135deg, rgba(25,158,130,.05), rgba(32,103,133,.05));
}

.mock-card-sm-title {
  font-size: 12px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 3px;
}

.mock-card-sm.mock-card-active .mock-card-sm-title {
  color: #199e82;
}

.mock-card-sm-sub {
  font-size: 10.5px;
  color: #6b7280;
  line-height: 1.4;
}

.mock-upload-zone {
  border: 2px dashed rgba(25,158,130,.35);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
  background: rgba(25,158,130,.03);
}

.mock-upload-zone p {
  font-size: 11.5px;
  color: #6b7280;
  margin: 4px 0 0;
}

.mock-upload-zone strong {
  color: #199e82;
}

.mock-tag-sm {
  display: inline-flex;
  align-items: center;
  background: rgba(25,158,130,.1);
  color: #199e82;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid rgba(25,158,130,.25);
}

.mock-flag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  border-left: 3px solid #e67e22;
  background: rgba(230,126,34,.05);
  margin-bottom: 6px;
}

.mock-flag-label {
  font-size: 11px;
  font-weight: 700;
  color: #e67e22;
}

.mock-flag-val {
  font-size: 10.5px;
  color: #e67e22;
  font-weight: 600;
}

.mock-savings-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.mock-savings-box {
  flex: 1;
  border-radius: 9px;
  padding: 9px;
  text-align: center;
}

.mock-savings-box.flagged {
  background: rgba(230,126,34,.08);
  border: 1px solid rgba(230,126,34,.3);
}

.mock-savings-box.savings {
  background: rgba(25,158,130,.07);
  border: 1px solid rgba(25,158,130,.25);
}

.mock-savings-box .sb-num {
  font-size: 17px;
  font-weight: 800;
}

.mock-savings-box.flagged .sb-num { color: #e67e22; }
.mock-savings-box.savings .sb-num { color: #199e82; }

.mock-savings-box .sb-lbl {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 3px;
}

.mock-savings-box.flagged .sb-lbl { color: #e67e22; }
.mock-savings-box.savings .sb-lbl { color: #199e82; }

.mock-steps-track {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.mock-step-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(to right, #199e82, #206785);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mock-step-circle.inactive {
  background: #e0e7ef;
  color: #9ca3af;
}

.mock-step-line {
  flex: 1;
  height: 2px;
  background: rgba(25,158,130,.2);
  border-radius: 2px;
}
/* Screen mock — image version */
.mock-img-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
  line-height: 0;
}

.mock-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}