
    :root {
      --blue: #235196;
      --cyan: #4dd0e1;
      --dark: #1f2937;
      --light: #6b7280;
      --bg: #f8fbff;
      --white: #ffffff;
      --blue-light: rgba(35, 81, 150, 0.08);
      --cyan-light: rgba(77, 208, 225, 0.12);
      --radius: 18px;
      --radius-sm: 12px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      line-height: 1.8;
      color: var(--dark);
      background: var(--bg);
      overflow-x: hidden;
    }

    h1 {
      font-weight: 700;
    }

    h2 {
      font-weight: 600;
    }

    @media (min-width: 992px) {
      h1 {
        font-size: 35px;
      }

      h2 {
        font-size: 30px;
      }
    }

    @media (max-width: 991px) {
      h1 {
        font-size: 30px;
      }

      h2 {
        font-size: 25px;
      }
    }

    /* ═══ NAVBAR ═══ */
    .navbar {
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(35, 81, 150, 0.1);
      padding: 12px 0;
      transition: box-shadow 0.3s;
    }
    img{
      width:100px;
    }

    .navbar.scrolled {
      box-shadow: 0 4px 28px rgba(35, 81, 150, 0.12);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .brand-icon {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--blue), #3a6fc4);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px;
      font-weight: 800;
    }

    .brand-text {
      line-height: 1.1;
    }

    .brand-text .name {
      font-size: 18px;
      font-weight: 800;
      color: var(--blue);
      letter-spacing: -0.3px;
    }

    .brand-text .tagline {
      font-size: 10px;
      font-weight: 500;
      color: var(--light);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .nav-link {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--dark) !important;
      padding: 6px 12px !important;
      border-radius: 8px;
      transition: all 0.2s;
    }

    .nav-link:hover {
      background: var(--blue-light);
      color: var(--blue) !important;
    }

    .btn-nav {
      background: linear-gradient(135deg, var(--blue), #3a6fc4);
      color: #fff !important;
      border-radius: 50px;
      padding: 8px 22px !important;
      font-size: 13.5px;
      font-weight: 600;
      transition: all 0.25s;
      box-shadow: 0 4px 14px rgba(35, 81, 150, 0.3);
    }

    .btn-nav:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(35, 81, 150, 0.4);
    }

    /* ═══ HERO ═══ */
    .hero {
      background: linear-gradient(135deg, #eef4ff 0%, #f0fafe 50%, #f8fbff 100%);
      padding: 118px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-blob-1 {
      position: absolute;
      width: 560px;
      height: 560px;
      background: radial-gradient(circle, rgba(77, 208, 225, 0.18) 0%, transparent 70%);
      top: -120px;
      right: -80px;
      border-radius: 50%;
    }

    .hero-blob-2 {
      position: absolute;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(35, 81, 150, 0.1) 0%, transparent 70%);
      bottom: -60px;
      left: 0;
      border-radius: 50%;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(35, 81, 150, 0.08);
      color: var(--blue);
      border: 1px solid rgba(35, 81, 150, 0.18);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 12.5px;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .hero h1 {
      line-height: 1.3;
      color: var(--dark);
      margin-bottom: 18px;
    }

    .hero h1 em {
      font-style: normal;
      color: var(--blue);
    }

    .hero h1 .cyan-text {
      color: #1ea8ba;
    }

    .hero-sub {
      color: var(--light);
      max-width: 530px;
      margin-bottom: 34px;
    }

    .btn-primary-blue {
      background: linear-gradient(135deg, var(--blue), #3a6fc4);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 14px 30px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 14.5px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: all 0.3s;
      box-shadow: 0 6px 20px rgba(35, 81, 150, 0.35);
    }

    .btn-primary-blue:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(35, 81, 150, 0.45);
      color: #fff;
    }

    .btn-outline-cyan {
      background: transparent;
      color: #1ea8ba;
      border: 2px solid var(--cyan);
      border-radius: 50px;
      padding: 12px 28px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 14.5px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: all 0.3s;
    }

    .btn-outline-cyan:hover {
      background: var(--cyan);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(77, 208, 225, 0.4);
    }

    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

.policy-box{
    margin-top:70px;
}
    .hero-card-main {
      background: linear-gradient(135deg, #e8f0fb 0%, #eafbfd 100%);
      border-radius: 24px;
      padding: 44px 36px;
      width: 100%;
      max-width: 460px;
      box-shadow: 0 24px 70px rgba(35, 81, 150, 0.12);
      border: 1px solid rgba(77, 208, 225, 0.2);
      min-height: 340px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .med-icon-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      width: 100%;
    }

    .med-icon-item {
      background: #fff;
      border-radius: 14px;
      padding: 18px 8px;
      text-align: center;
      box-shadow: 0 4px 14px rgba(35, 81, 150, 0.08);
      transition: transform 0.3s;
      border: 1px solid rgba(35, 81, 150, 0.06);
    }

    .med-icon-item:hover {
      transform: translateY(-4px);
    }

    .med-icon-item i {
      font-size: 26px;
      display: block;
      margin-bottom: 6px;
    }

    .med-icon-item span {
      font-size: 10.5px;
      font-weight: 600;
      color: var(--dark);
    }

    .fl-badge {
      position: absolute;
      background: #fff;
      border-radius: 12px;
      padding: 10px 16px;
      box-shadow: 0 8px 28px rgba(35, 81, 150, 0.15);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 600;
      color: var(--dark);
      z-index: 10;
      border-left: 3px solid var(--blue);
      animation: floatUp 3s ease-in-out infinite;
    }

    .fl-badge.b2 {
      border-left-color: var(--cyan);
      animation-delay: 1.2s;
    }

    .fl-badge.b3 {
      animation-delay: 2.2s;
    }

    .fl-badge.pos1 {
      top: -18px;
      left: -22px;
    }

    .fl-badge.pos2 {
      bottom: 20px;
      right: -24px;
    }

    .fl-badge.pos3 {
      top: 46%;
      left: -28px;
    }

    .fl-badge i {
      font-size: 18px;
      color: var(--blue);
    }

    .fl-badge.b2 i {
      color: #1ea8ba;
    }

    .fl-badge-title {
      font-size: 11.5px;
      font-weight: 700;
    }

    .fl-badge-sub {
      font-size: 10px;
      color: var(--light);
      font-weight: 400;
    }

    @keyframes floatUp {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-9px);
      }
    }

    .fl-badge.pos3 {
      animation: floatMid 3s ease-in-out 2.2s infinite;
    }

    @keyframes floatMid {

      0%,
      100% {
        transform: translateY(-50%);
      }

      50% {
        transform: translateY(calc(-50% - 9px));
      }
    }

    .hero-checklist {
      display: flex;
      flex-wrap: wrap;
      gap: 18px;
      margin-top: 28px;
    }

    .hero-check {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 600;
      color: var(--light);
    }

    .hero-check i {
      color: var(--cyan);
      font-size: 15px;
    }

    /* ═══ SECTION COMMON ═══ */
    .s-pad {
      padding: 80px 0;
    }

    .s-white {
      background: #fff;
    }

    .s-bg {
      background: var(--bg);
    }

    .eyebrow {
      display: inline-block;
      font-size: 14px;
      font-weight: 700;

      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 10px;
    }

    .s-heading {
      color: var(--dark);
      margin-bottom: 12px;
    }

    .s-sub {
      color: var(--light);
      max-width: 550px;
      margin: 0 auto;
    }

    .divider {
      width: 48px;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      border-radius: 4px;
      margin: 14px auto 38px;
    }

    /* ═══ TRUST ═══ */
    .trust-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 34px 24px;
      text-align: center;
      border: 1px solid rgba(35, 81, 150, 0.08);
      transition: all 0.32s;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .trust-card::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      transform: scaleX(0);
      transition: transform 0.3s;
      transform-origin: left;
    }

    .trust-card:hover::after {
      transform: scaleX(1);
    }

    .trust-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(35, 81, 150, 0.12);
    }

    .t-icon {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      margin: 0 auto 18px;
    }

    .t-blue {
      background: var(--blue-light);
      color: var(--blue);
    }

    .t-cyan {
      background: var(--cyan-light);
      color: #1ea8ba;
    }

    .t-num {
      font-size: 30px;
      font-weight: 800;
      color: var(--dark);
      line-height: 1;
    }

    .t-lbl {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--light);
      margin-top: 4px;
    }

    /* ═══ ABOUT ═══ */
    .about-visual {
      background: linear-gradient(135deg, #e8f0fb 0%, #eafbfd 100%);
      border-radius: var(--radius);
      min-height: 440px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 22px;
      padding: 40px 30px;
      border: 1px solid rgba(77, 208, 225, 0.2);
    }

    .about-visual i {
      font-size: 90px;
      color: var(--blue);
      opacity: 0.35;
    }

    .about-stats {
      display: flex;
      gap: 16px;
      width: 100%;
    }

    .a-stat {
      flex: 1;
      background: #fff;
      border-radius: var(--radius-sm);
      padding: 16px;
      box-shadow: 0 4px 16px rgba(35, 81, 150, 0.08);
      border-left: 4px solid var(--blue);
    }

    .a-stat.cyan-b {
      border-left-color: var(--cyan);
    }

    .a-stat .n {
      font-size: 24px;
      font-weight: 800;
      color: var(--dark);
    }

    .a-stat .l {
      font-size: 12px;
      color: var(--light);
      font-weight: 500;
    }

    .cert-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .cert-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--blue-light);
      color: var(--blue);
      border-radius: 50px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 600;
      border: 1px solid rgba(35, 81, 150, 0.15);
    }

    /* ═══ FEATURE CARDS ═══ */
    .feat-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 30px 22px;
      text-align: center;
      border: 1px solid rgba(35, 81, 150, 0.08);
      transition: all 0.35s;
      height: 100%;
    }

    .feat-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(35, 81, 150, 0.14);
      border-color: rgba(77, 208, 225, 0.4);
    }

    .feat-ico {
      width: 62px;
      height: 62px;
      border-radius: 16px;
      background: var(--blue-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--blue);
      margin: 0 auto 16px;
      transition: all 0.3s;
    }

    .feat-card:hover .feat-ico {
      background: var(--blue);
      color: #fff;
      transform: rotate(6deg) scale(1.1);
    }

    .feat-card h5 {
      font-size: 15.5px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }

    .feat-card p {
      font-size: 13.5px;
      color: var(--light);
      margin: 0;
      line-height: 1.7;
    }

    /* ═══ PRODUCT CARDS ═══ */
    .prod-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 26px 18px;
      text-align: center;
      border: 1px solid rgba(35, 81, 150, 0.07);
      transition: all 0.3s;
      height: 100%;
    }

    .prod-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 50px rgba(77, 208, 225, 0.18);
      border-color: var(--cyan);
    }

    .prod-ico {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      background: var(--cyan-light);
      color: #1ea8ba;
      margin: 0 auto 14px;
      transition: all 0.3s;
    }

    .prod-card:hover .prod-ico {
      background: var(--cyan);
      color: #fff;
    }

    .prod-card h5 {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .prod-card p {
      font-size: 12.5px;
      color: var(--light);
      margin: 0;
      line-height: 1.6;
    }

    /* ═══ QUALITY TIMELINE ═══ */
    .q-section {
      background: linear-gradient(135deg, #eef4ff 0%, #edfbfd 100%);
      padding: 80px 0;
    }

    .q-timeline {
      position: relative;
    }

    .q-timeline::before {
      content: '';
      position: absolute;
      left: 34px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--blue), var(--cyan));
    }

    .q-item {
      display: flex;
      gap: 22px;
      margin-bottom: 32px;
      position: relative;
    }

    .q-item:last-child {
      margin-bottom: 0;
    }

    .q-dot {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--blue);
      flex-shrink: 0;
      z-index: 1;
      box-shadow: 0 4px 18px rgba(35, 81, 150, 0.18);
    }

    .q-item:nth-child(even) .q-dot {
      border-color: var(--cyan);
      color: #1ea8ba;
      box-shadow: 0 4px 18px rgba(77, 208, 225, 0.22);
    }

    .q-content {
      background: #fff;
      border-radius: var(--radius-sm);
      padding: 20px 22px;
      flex: 1;
      box-shadow: 0 4px 18px rgba(35, 81, 150, 0.07);
      border: 1px solid rgba(35, 81, 150, 0.07);
    }

    .q-content h5 {
      font-size: 15.5px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 7px;
    }

    .q-content p {
      font-size: 13.5px;
      color: var(--light);
      margin: 0;
      line-height: 1.7;
    }

    /* ═══ BENEFITS ═══ */
    .ben-card {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      background: #fff;
      border-radius: var(--radius);
      padding: 26px 22px;
      height: 100%;
      border: 1px solid rgba(35, 81, 150, 0.08);
      transition: all 0.3s;
      background: linear-gradient(135deg, #f8fbff, #edfbfd);
    }

    .ben-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(35, 81, 150, 0.1);
      border-color: var(--cyan);
    }

    .ben-num {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: var(--blue);
      color: #fff;
      font-size: 15px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .ben-num.cyan {
      background: linear-gradient(135deg, var(--cyan), #1ea8ba);
    }

    .ben-card h5 {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .ben-card p {
      font-size: 13.5px;
      color: var(--light);
      margin: 0;
      line-height: 1.7;
    }

    /* ═══ PROCESS ═══ */
    .proc-section {
      background: #fff;
      padding: 80px 0;
    }

    .proc-wrap {
      display: flex;
      gap: 0;
      position: relative;
    }

    .proc-wrap::before {
      content: '';
      position: absolute;
      top: 38px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--cyan));
      z-index: 0;
    }

    .proc-step {
      flex: 1;
      text-align: center;
      padding: 0 14px;
      position: relative;
      z-index: 1;
    }

    .p-circle {
      width: 76px;
      height: 76px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), #3a6fc4);
      color: #fff;
      font-size: 22px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      border: 4px solid #fff;
      box-shadow: 0 8px 24px rgba(35, 81, 150, 0.3);
      transition: transform 0.3s;
    }

    .proc-step:nth-child(2) .p-circle,
    .proc-step:nth-child(4) .p-circle {
      background: linear-gradient(135deg, var(--cyan), #1ea8ba);
      box-shadow: 0 8px 24px rgba(77, 208, 225, 0.35);
    }

    .proc-step:hover .p-circle {
      transform: scale(1.12);
    }

    .proc-step h5 {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .proc-step p {
      font-size: 13px;
      color: var(--light);
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width:767px) {
      .proc-wrap {
        flex-direction: column;
        gap: 24px;
      }

      .proc-wrap::before {
        display: none;
      }
    }

    /* ═══ COUNTER ═══ */
    .counter-section {
      background: linear-gradient(135deg, #1a3d75 0%, var(--blue) 50%, #1ea8ba 100%);
      padding: 70px 0;
      position: relative;
      overflow: hidden;
    }

    .counter-section::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 50%;
      top: -100px;
      right: -80px;
    }

    .counter-section::after {
      content: '';
      position: absolute;
      width: 280px;
      height: 280px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 50%;
      bottom: -60px;
      left: -40px;
    }

    .c-card {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .c-card .c-num {
      font-size: 46px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 2px;
    }

    .c-card .c-plus {
      font-size: 28px;
      font-weight: 700;
      color: var(--cyan);
    }

    .c-card .c-lbl {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.75);
      margin-top: 8px;
      font-weight: 500;
    }

    .c-divider {
      width: 1px;
      background: rgba(255, 255, 255, 0.15);
    }

    @media (max-width: 767px) {
      .c-divider {
        display: none;
      }
    }

    /* ═══ TESTIMONIALS ═══ */
    .testi-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 34px 28px;
      box-shadow: 0 8px 32px rgba(35, 81, 150, 0.08);
      border: 1px solid rgba(35, 81, 150, 0.08);
      height: 100%;
    }

    .testi-stars {
      color: #f59e0b;
      font-size: 14px;
      margin-bottom: 16px;
    }

    .testi-text {
      font-size: 14.5px;
      color: var(--light);
      line-height: 1.8;
      font-style: italic;
      margin-bottom: 20px;
    }

    .testi-author {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testi-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue-light), var(--cyan-light));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 800;
      color: var(--blue);
      border: 2px solid rgba(35, 81, 150, 0.12);
      flex-shrink: 0;
    }

    .testi-name {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark);
    }

    .testi-loc {
      font-size: 12px;
      color: var(--light);
    }

    .testi-role {
      font-size: 11px;
      color: var(--cyan);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ═══ FAQ ═══ */
    .accordion-item {
      border: 1px solid rgba(35, 81, 150, 0.12) !important;
      border-radius: var(--radius-sm) !important;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .accordion-button {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 14.5px;
      color: var(--dark) !important;
      background: #fff !important;
      padding: 18px 22px;
      box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
      color: var(--blue) !important;
      background: #eef4ff !important;
    }

    .accordion-button::after {
      filter: invert(20%) sepia(80%) saturate(500%) hue-rotate(200deg) brightness(0.7);
    }

    .accordion-body {
      font-size: 13.5px;
      color: var(--light);
      line-height: 1.8;
      padding: 14px 22px 20px;
    }

    /* ═══ CONTACT ═══ */
    .contact-section {
      background: linear-gradient(135deg, #0e1f3d 0%, #162d5a 40%, #0d3a46 100%);
      padding: 80px 0 0;
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(77, 208, 225, 0.1) 0%, transparent 70%);
      top: -120px;
      right: 80px;
      border-radius: 50%;
    }

    .contact-section::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(35, 81, 150, 0.15) 0%, transparent 70%);
      bottom: 80px;
      left: -60px;
      border-radius: 50%;
    }

    .c-heading {
      font-size: 30px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
    }

    .c-sub {
      color: rgba(255, 255, 255, 0.65);
      font-size: 15px;
      margin-bottom: 44px;
    }

    .c-info-item {
      display: flex;
      gap: 14px;
      margin-bottom: 22px;
      align-items: flex-start;
    }

    .c-info-ico {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(77, 208, 225, 0.1);
      border: 1px solid rgba(77, 208, 225, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      color: var(--cyan);
      flex-shrink: 0;
    }

    .c-info-label {
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.38);
      font-weight: 600;
      margin-bottom: 2px;
    }

    .c-info-val {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.88);
    }

    .q-links-title {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.5);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .q-links a {
      display: block;
      color: rgba(255, 255, 255, 0.6);
      font-size: 13.5px;
      text-decoration: none;
      padding: 4px 0;
      transition: color 0.2s;
    }

    .q-links a:hover {
      color: var(--cyan);
    }

    .social-row {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .soc-btn {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, 0.7);
      font-size: 16px;
      text-decoration: none;
      transition: all 0.2s;
    }

    .soc-btn:hover {
      background: var(--cyan);
      border-color: var(--cyan);
      color: #fff;
      transform: translateY(-2px);
    }

    /* Glass Form */
    .glass-form {
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 40px 34px;
      position: relative;
      z-index: 1;
    }

    .glass-form h4 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 24px;
      font-size: 18px;
    }

    .form-floating label {
      font-size: 13.5px;
      color: rgba(255, 255, 255, 0.5);
    }

    .form-floating .form-control,
    .form-floating .form-select {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: var(--radius-sm);
      color: #fff;
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      transition: border-color 0.25s;
    }

    .form-floating .form-control:focus,
    .form-floating .form-select:focus {
      background: rgba(255, 255, 255, 0.1);
      border-color: var(--cyan);
      box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.15);
      color: #fff;
    }

    .form-floating textarea.form-control {
      height: 100px;
    }

    .form-floating .form-select option {
      background: #162d5a;
      color: #fff;
    }

    .btn-submit-blue {
      width: 100%;
      background: linear-gradient(135deg, var(--blue), #3a6fc4);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 15px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 14.5px;
      box-shadow: 0 6px 22px rgba(35, 81, 150, 0.45);
      transition: all 0.3s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-submit-blue:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(35, 81, 150, 0.55);
    }

    /* Footer Bottom */
    .foot-bottom {
      background: rgba(0, 0, 0, 0.28);
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding: 22px 0;
      margin-top: 60px;
      text-align: center;
    }

    .foot-bottom p {
      color: rgba(255, 255, 255, 0.45);
      font-size: 12.5px;
      margin: 0;
    }
 .foot-bottom a{
  text-decoration: none;
  color: #3a6fc4;
 }
    .foot-links {
      display: flex;
      justify-content: center;
      gap: 22px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .foot-links a {
      color: rgba(255, 255, 255, 0.42);
      font-size: 12.5px;
      text-decoration: none;
      transition: color 0.2s;
    }

    .foot-links a:hover {
      color: var(--cyan);
    }

    /* ═══ REVEAL ═══ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s, transform 0.6s;
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .rd1 {
      transition-delay: 0.1s;
    }

    .rd2 {
      transition-delay: 0.2s;
    }

    .rd3 {
      transition-delay: 0.3s;
    }

    .rd4 {
      transition-delay: 0.4s;
    }

    @media (max-width:991px) {
      .hero {
        padding: 100px 0 60px;
      }

      .hero-visual {
        margin-top: 48px;
      }

      .fl-badge {
        display: none;
      }

      .glass-form {
        padding: 26px 20px;
      }
    }

    /* ══════════════════════════════════
   GOOGLE ADS CTA UPGRADES
══════════════════════════════════ */

    /* Urgency top bar */
    .urg-bar {
      background: linear-gradient(90deg, #0e1f3d 0%, var(--blue) 45%, #1ea8ba 100%);
      color: #fff;
      text-align: center;
      padding: 10px 16px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: .2px;
      position: relative;
      z-index: 1060;
    }

    .urg-bar strong {
      color: #fff;
    }

    .urg-sep {
      opacity: .55;
      margin: 0 8px;
    }

    .urg-cta {
      color: #fff;
      text-decoration: underline;
      font-weight: 700;
      margin-left: 10px;
      cursor: pointer;
      white-space: nowrap;
    }

    .urg-cta:hover {
      opacity: .82;
    }

    /* Navbar CTA – pulsing cyan-blue */
    .btn-nav-ads {
      background: linear-gradient(135deg, var(--blue), #3a6fc4) !important;
      color: #fff !important;
      border-radius: 50px;
      padding: 10px 26px !important;
      font-size: 14px !important;
      font-weight: 700 !important;
      transition: all .25s;
      box-shadow: 0 4px 16px rgba(35, 81, 150, .38);
      display: inline-flex !important;
      align-items: center;
      gap: 7px;
      animation: nav-pulse 2.6s ease-in-out infinite;
    }

    .btn-nav-ads:hover {
      transform: translateY(-2px) scale(1.04) !important;
      box-shadow: 0 8px 26px rgba(35, 81, 150, .58) !important;
      animation: none;
    }

    @keyframes nav-pulse {

      0%,
      100% {
        box-shadow: 0 4px 16px rgba(35, 81, 150, .38);
      }

      50% {
        box-shadow: 0 4px 28px rgba(77, 208, 225, .65);
      }
    }

    /* Hero PRIMARY CTA – large, two-line, shimmer */
    .btn-hero-primary {
      background: linear-gradient(135deg, var(--blue) 0%, #3a6fc4 100%);
      color: #fff;
      border: none;
      border-radius: 16px;
      padding: 12px 36px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 16px;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      transition: all .3s;
      box-shadow: 0 8px 28px rgba(35, 81, 150, .42);
      position: relative;
      overflow: hidden;
    }

    .btn-hero-primary::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
      transition: left .55s;
    }

    .btn-hero-primary:hover::after {
      left: 140%;
    }

    .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 36px rgba(35, 81, 150, .55);
      color: #fff;
    }

    .btn-hero-primary .bi {
      font-size: 22px;
      flex-shrink: 0;
    }

    .bmt {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.2;
    }

    .bst {
      font-size: 11px;
      font-weight: 500;
      opacity: .85;
      line-height: 1;
      margin-top: 3px;
    }

    /* Hero SECONDARY CTA – phone call */
    .btn-hero-secondary {
      background: #fff;
      color: var(--blue);
      border: 2.5px solid var(--blue);
      border-radius: 16px;
      padding: 12px 30px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      transition: all .3s;
    }

    .btn-hero-secondary:hover {
      background: var(--blue);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(35, 81, 150, .3);
    }

    /* Urgency micro-copy */
    .hero-urgency-note {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--light);
      margin-top: 12px;
    }

    .hero-urgency-note i {
      color: var(--blue);
      font-size: 14px;
    }

    .hero-urgency-note strong {
      color: var(--blue);
    }

    /* Mid-page CTA strip */
    .midcta {
      background: linear-gradient(135deg, #0e1f3d 0%, var(--blue) 55%, #1a3d75 100%);
      padding: 66px 0;
      position: relative;
      overflow: hidden;
    }

    .midcta::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(77, 208, 225, .06);
      border-radius: 50%;
      top: -120px;
      right: -60px;
    }

    .midcta::after {
      content: '';
      position: absolute;
      width: 240px;
      height: 240px;
      background: rgba(255, 255, 255, .03);
      border-radius: 50%;
      bottom: -60px;
      left: 20px;
    }

    .midcta-inner {
      position: relative;
      z-index: 1;
    }

    .midcta-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(77, 208, 225, .15);
      border: 1px solid rgba(77, 208, 225, .3);
      color: var(--cyan);
      border-radius: 50px;
      padding: 5px 16px;
      font-size: 12px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .midcta h3 {
      font-size: 27px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.3;
    }

    .midcta p {
      color: rgba(255, 255, 255, .78);
      font-size: 15px;
      margin-bottom: 0;
    }

    .midcta-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .midcta-pill {
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .18);
      color: #fff;
      border-radius: 50px;
      padding: 5px 14px;
      font-size: 12px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .btn-midcta-main {
      background: #fff;
      color: var(--blue);
      border: none;
      border-radius: 14px;
      padding: 16px 32px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
      transition: all .3s;
      box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
      white-space: nowrap;
    }

    .btn-midcta-main:hover {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 10px 32px rgba(0, 0, 0, .3);
      color: var(--blue);
    }

    .btn-midcta-call {
      background: linear-gradient(135deg, var(--cyan), #1ea8ba);
      color: #fff;
      border: none;
      border-radius: 14px;
      padding: 16px 28px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
      transition: all .3s;
      box-shadow: 0 6px 24px rgba(77, 208, 225, .4);
      white-space: nowrap;
    }

    .btn-midcta-call:hover {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 10px 32px rgba(77, 208, 225, .55);
      color: #fff;
    }

    .midcta-note {
      color: rgba(255, 255, 255, .45);
      font-size: 12px;
      margin-top: 10px;
    }

    /* Form submit – full-width upgrade */
    .btn-submit-ads {
      width: 100%;
      background: linear-gradient(135deg, var(--blue), #3a6fc4);
      color: #fff;
      border: none;
      border-radius: 16px;
      padding: 18px 24px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      box-shadow: 0 8px 28px rgba(35, 81, 150, .45);
      transition: all .3s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .btn-submit-ads::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
      transition: left .55s;
    }

    .btn-submit-ads:hover::after {
      left: 140%;
    }

    .btn-submit-ads:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(35, 81, 150, .58);
    }

    .btn-submit-ads .bi {
      font-size: 20px;
      flex-shrink: 0;
    }

    /* Form trust pills */
    .form-trust-pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 12px;
    }

    .ftp {
      display: flex;
      align-items: center;
      gap: 5px;
      color: rgba(255, 255, 255, .48);
      font-size: 11.5px;
      font-weight: 500;
    }

    .ftp i {
      color: var(--cyan);
      font-size: 12px;
    }

    /* Sticky mobile bar */
    .sticky-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      background: #fff;
      border-top: 1px solid rgba(35, 81, 150, .18);
      box-shadow: 0 -4px 24px rgba(0, 0, 0, .12);
      padding: 10px 14px;
      gap: 10px;
      display: none;
    }

    @media (max-width:991px) {
      .sticky-bar {
        display: flex;
      }

      body {
        padding-bottom: 68px;
      }
    }

    .sb-btn {
      flex: 1;
      border: none;
      border-radius: 12px;
      padding: 13px 8px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 13.5px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      text-decoration: none;
      transition: transform .15s;
      cursor: pointer;
    }

    .sb-btn:active {
      transform: scale(.97);
    }

    .sb-blue {
      background: #25D366;
      color: #fff;
      box-shadow: 0 4px 14px rgba(35, 81, 150, .4);
    }

    .sb-cyan {
      background: #3a6fc4;
      color: #fff;
      box-shadow: 0 4px 14px rgba(77, 208, 225, .4);
    }
    .foot-bottom a {
        color:#4DD0E1;
    }

    @media (max-width:575px) {
      .midcta h3 {
        font-size: 21px;
      }

      .btn-hero-primary {
        padding: 16px 24px;
        font-size: 15px;
      }

      .btn-hero-secondary {
        padding: 14px 22px;
        font-size: 14px;
      }
       .floating-cta{
        display:none !important;
       }
       .policy-box{
    margin-top:70px;
}
    }

    .floating-cta{
    position:fixed;
    right:20px;
    bottom:100px;
    z-index:99999;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.cta-btn{
    width:65px;
    height:65px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    text-decoration:none;
    position:relative;
}

.call-btn{
    background:#3a6fc4;
}

.whatsapp-btn{
    background:#25D366;
}

.cta-btn::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    animation:pulse 2s infinite;
}

.call-btn::before{
    border:2px solid #3a6fc4;
}

.whatsapp-btn::before{
    border:2px solid rgba(37,211,102,.5);
}

@keyframes pulse{
    0%{
        transform:scale(1);
        opacity:1;
    }
    100%{
        transform:scale(1.8);
        opacity:0;
    }
}
