  :root {
      --green: #3bcb83;
      --orange: #ca6c38;
      --dark: #1f2937;
      --text-light: #6b7280;
      --bg: #f8fafc;
      --white: #ffffff;
      --green-light: rgba(59, 203, 131, 0.10);
      --orange-light: rgba(202, 108, 56, 0.10);
      --radius: 18px;
      --radius-sm: 12px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    /* ── Sticky mobile CTA bar ── */
    .sticky-cta-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      display: none;
      background: #fff;
      border-top: 1px solid rgba(59, 203, 131, 0.2);
      box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
      padding: 8px 16px;
      gap: 10px;
    }

    @media (max-width: 991px) {
      .sticky-cta-bar {
        display: flex;
      }
    }

    .sticky-cta-bar .scta-btn {
      flex: 1;
      border: none;
      border-radius: 12px;
      padding: 12px 16px;
      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: all 0.2s;
    }

    .scta-btn.green {
      background: linear-gradient(135deg, var(--green), #2db872);
      color: #fff;
      box-shadow: 0 4px 14px rgba(59, 203, 131, 0.4);
    }

    .scta-btn.orange {
      background: linear-gradient(135deg, var(--orange), #e07540);
      color: #fff;
      box-shadow: 0 4px 14px rgba(202, 108, 56, 0.4);
    }

    .scta-btn:active {
      transform: scale(0.97);
    }

    body {
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      line-height: 1.8;
      color: var(--dark);
      background: var(--bg);
      overflow-x: hidden;
    }
 /* 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;
      }
    }
    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.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(59, 203, 131, 0.15);
      padding: 5px 0;
      transition: box-shadow 0.3s;
    }

    .navbar.scrolled {
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    }

    .navbar-brand {
      font-size: 22px;
      font-weight: 800;
      color: var(--dark) !important;
      letter-spacing: -0.5px;
    }

    .navbar-brand img {

      width: 100px;
    }

    .navbar-brand span {
      color: var(--green);
    }

    .navbar-brand small {
      color: var(--orange);
      font-size: 11px;
      font-weight: 500;
      display: block;
      line-height: 1;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .nav-link {
      font-size: 14px;
      font-weight: 500;
      color: var(--dark) !important;
      padding: 6px 14px !important;
      border-radius: 8px;
      transition: all 0.2s;
    }

    .nav-link:hover {
      background: var(--green-light);
      color: var(--green) !important;
    }

    .btn-nav {
      background: var(--green);
      color: #fff !important;
      padding: 8px 22px !important;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.25s;
    }

    .btn-nav:hover {
      background: #2db872;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(59, 203, 131, 0.35);
    }

    /* ─── HERO ─── */
    .hero {
      background: linear-gradient(135deg, #f0fdf7 0%, #fffaf5 50%, #f8fafc 100%);
      padding: 10px 0 80px;
      position: relative;
      overflow: hidden;
   
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(59, 203, 131, 0.15) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      border-radius: 50%;
    }

    .hero::after {
      content: '';
      position: absolute;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(202, 108, 56, 0.12) 0%, transparent 70%);
      bottom: -80px;
      left: 5%;
      border-radius: 50%;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(59, 203, 131, 0.12);
      color: #1a9e61;
      border: 1px solid rgba(59, 203, 131, 0.25);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .hero-badge i {
      color: var(--green);
    }

    .hero h1 {
      line-height: 1.3;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .hero h1 .highlight-green {
      color: var(--green);
    }

    .hero h1 .highlight-orange {
      color: var(--orange);
    }

    .hero-sub {
      font-size: 16px;
      color: var(--text-light);
      margin-bottom: 36px;
      max-width: 520px;
    }

    .btn-primary-custom {
      background: linear-gradient(135deg, var(--green) 0%, #2db872 100%);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 14px 32px;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.3s;
      box-shadow: 0 4px 18px rgba(59, 203, 131, 0.35);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .btn-primary-custom:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(59, 203, 131, 0.45);
      color: #fff;
    }

    .btn-outline-custom {
      background: transparent;
      color: var(--orange);
      border: 2px solid var(--orange);
      border-radius: 50px;
      padding: 12px 30px;
      font-weight: 600;
      font-size: 15px;
      transition: all 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .btn-outline-custom:hover {
      background: var(--orange);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(202, 108, 56, 0.35);
    }

    /* Hero Visual */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-illustration {
      width: 100%;
      max-width: 480px;
      background: linear-gradient(135deg, #e8faf2 0%, #fff8f3 100%);
      border-radius: 24px;
      padding: 50px 40px;
      position: relative;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
      border: 1px solid rgba(59, 203, 131, 0.15);
      min-height: 360px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pharma-icon-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      width: 100%;
    }

    .pharma-icon-item {
      background: #fff;
      border-radius: 16px;
      padding: 20px 10px;
      text-align: center;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s;
    }

    .pharma-icon-item:hover {
      transform: translateY(-4px);
    }

    .pharma-icon-item i {
      font-size: 28px;
      display: block;
      margin-bottom: 8px;
    }

    .pharma-icon-item span {
      font-size: 11px;
      font-weight: 600;
      color: var(--dark);
    }

    .floating-card {
      position: absolute;
      background: #fff;
      border-radius: var(--radius-sm);
      padding: 12px 18px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 600;
      color: var(--dark);
      animation: float 3s ease-in-out infinite;
      z-index: 10;
      border-left: 3px solid var(--green);
    }

    .floating-card.card-1 {
      top: -20px;
      left: -20px;
      animation-delay: 0s;
    }

    .floating-card.card-2 {
      bottom: 30px;
      right: -25px;
      animation-delay: 1s;
      border-left-color: var(--orange);
    }

    .floating-card.card-3 {
      top: 50%;
      left: -30px;
      transform: translateY(-50%);
      animation-delay: 2s;
    }

    .floating-card i {
      font-size: 20px;
      color: var(--green);
    }

    .floating-card.card-2 i {
      color: var(--orange);
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-8px);
      }
    }

    .floating-card.card-3 {
      animation: float3 3s ease-in-out infinite 2s;
    }

    @keyframes float3 {

      0%,
      100% {
        transform: translateY(-50%);
      }

      50% {
        transform: translateY(calc(-50% - 8px));
      }
    }

    /* ─── TRUST INDICATORS ─── */
    .trust-section {
      padding: 70px 0;
      background: #fff;
    }

    .trust-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 36px 28px;
      text-align: center;
      border: 1px solid #eef2ff;
      transition: all 0.3s;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .trust-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--orange));
      transform: scaleX(0);
      transition: transform 0.3s;
    }

    .trust-card:hover::before {
      transform: scaleX(1);
    }

    .trust-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
      border-color: rgba(59, 203, 131, 0.2);
    }

    .trust-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 28px;
    }

    .trust-icon.green {
      background: var(--green-light);
      color: var(--green);
    }

    .trust-icon.orange {
      background: var(--orange-light);
      color: var(--orange);
    }

    .trust-number {
      font-size: 32px;
      font-weight: 800;
      color: var(--dark);
      line-height: 1;
      margin-bottom: 6px;
    }

    .trust-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-light);
    }

    /* ─── SECTIONS SHARED ─── */
    .section-pad {
      padding: 80px 0;
    }

    .section-bg-alt {
      background: var(--bg);
    }

    .section-bg-white {
      background: #fff;
    }

    .section-eyebrow {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px;
    }

    .section-heading {
      color: var(--dark);
      margin-bottom: 14px;
    }

    .section-sub {
      color: var(--text-light);
      max-width: 560px;
      margin: 0 auto;
    }

    .divider-green {
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, var(--green), var(--orange));
      border-radius: 4px;
      margin: 16px auto 40px;
    }

    /* ─── ABOUT ─── */
    .about-img {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
    }

    .about-img-inner {
      background: linear-gradient(135deg, #e8faf2 0%, #fff8f3 100%);
      border-radius: var(--radius);
      min-height: 420px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(59, 203, 131, 0.15);
      flex-direction: column;
      gap: 20px;
    }

    .about-img-inner i {
      font-size: 80px;
      color: var(--green);
      opacity: 0.5;
    }

    .about-stat {
      background: #fff;
      border-radius: var(--radius-sm);
      padding: 18px 22px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
      border-left: 4px solid var(--green);
    }

    .about-stat.orange-border {
      border-left-color: var(--orange);
    }

    .about-stat .num {
      font-size: 26px;
      font-weight: 800;
      color: var(--dark);
    }

    .about-stat .lbl {
      font-size: 13px;
      color: var(--text-light);
      font-weight: 500;
    }

    /* ─── WHY CHOOSE ─── */
    .feature-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 32px 24px;
      text-align: center;
      border: 1px solid #f0f0f0;
      transition: all 0.35s;
      height: 100%;
      cursor: default;
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(59, 203, 131, 0.15);
      border-color: var(--green);
    }

    .feature-icon {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      background: var(--green-light);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      font-size: 26px;
      color: var(--green);
      transition: all 0.3s;
    }

    .feature-card:hover .feature-icon {
      background: var(--green);
      color: #fff;
      transform: rotate(5deg) scale(1.1);
    }

    .feature-card h5 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--dark);
    }

    .feature-card p {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.7;
      margin: 0;
    }

    /* ─── PRODUCT RANGE ─── */
    .product-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 28px 20px;
      text-align: center;
      border: 1px solid #f0f4ff;
      transition: all 0.3s;
      height: 100%;
    }

    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(202, 108, 56, 0.12);
      border-color: var(--orange);
    }

    .product-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 28px;
      background: var(--orange-light);
      color: var(--orange);
      transition: all 0.3s;
    }

    .product-card:hover .product-icon {
      background: var(--orange);
      color: #fff;
    }

    .product-card h5 {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .product-card p {
      font-size: 13px;
      color: var(--text-light);
      margin: 0;
      line-height: 1.6;
    }

    /* ─── BENEFITS ─── */
    .benefit-card {
      background: linear-gradient(135deg, #f8fffe 0%, #fffbf8 100%);
      border-radius: var(--radius);
      padding: 30px 24px;
      border: 1px solid rgba(59, 203, 131, 0.12);
      transition: all 0.3s;
      height: 100%;
      display: flex;
      gap: 18px;
      align-items: flex-start;
    }

    .benefit-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(59, 203, 131, 0.12);
      border-color: var(--green);
    }

    .benefit-num {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--green);
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .benefit-card h5 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .benefit-card p {
      font-size: 14px;
      color: var(--text-light);
      margin: 0;
      line-height: 1.7;
    }

    /* ─── QUALITY ─── */
    .quality-section {
      background: linear-gradient(135deg, #f0fdf7 0%, #fffaf5 100%);
      padding: 80px 0;
    }

    .quality-timeline {
      position: relative;
    }

    .quality-timeline::before {
      content: '';
      position: absolute;
      left: 35px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--green), var(--orange));
      border-radius: 2px;
    }

    .quality-item {
      display: flex;
      gap: 24px;
      margin-bottom: 36px;
      position: relative;
    }

    .quality-item:last-child {
      margin-bottom: 0;
    }

    .quality-dot {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: var(--green);
      flex-shrink: 0;
      z-index: 1;
      box-shadow: 0 4px 16px rgba(59, 203, 131, 0.2);
    }

    .quality-item:nth-child(even) .quality-dot {
      border-color: var(--orange);
      color: var(--orange);
      box-shadow: 0 4px 16px rgba(202, 108, 56, 0.2);
    }

    .quality-content {
      background: #fff;
      border-radius: var(--radius-sm);
      padding: 22px 24px;
      flex: 1;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(59, 203, 131, 0.1);
    }

    .quality-content h5 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--dark);
    }

    .quality-content p {
      font-size: 14px;
      color: var(--text-light);
      margin: 0;
      line-height: 1.7;
    }

    /* ─── PROCESS ─── */
    .process-section {
      background: #fff;
      padding: 80px 0;
    }

    .process-wrap {
      display: flex;
      gap: 0;
      position: relative;
    }

    .process-wrap::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 12%;
      right: 12%;
      height: 2px;
      background: linear-gradient(90deg, var(--green), var(--orange));
      z-index: 0;
    }

    .process-step {
      flex: 1;
      text-align: center;
      padding: 0 16px;
      position: relative;
      z-index: 1;
    }

    .step-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green), #2db872);
      color: #fff;
      font-size: 20px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 8px 24px rgba(59, 203, 131, 0.35);
      border: 4px solid #fff;
      transition: all 0.3s;
    }

    .process-step:nth-child(2) .step-circle,
    .process-step:nth-child(4) .step-circle {
      background: linear-gradient(135deg, var(--orange), #e07540);
      box-shadow: 0 8px 24px rgba(202, 108, 56, 0.35);
    }

    .process-step:hover .step-circle {
      transform: scale(1.1);
    }

    .step-icon {
      font-size: 24px;
      display: block;
    }

    .process-step h5 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .process-step p {
      font-size: 13px;
      color: var(--text-light);
      line-height: 1.6;
      margin: 0;
    }

    @media (max-width: 767px) {
      .process-wrap {
        flex-direction: column;
        gap: 28px;
      }

      .process-wrap::before {
        display: none;
      }
    }

    /* ─── FAQ ─── */
    .faq-section {
      background: var(--bg);
      padding: 80px 0;
    }

    .accordion-item {
      border: 1px solid rgba(59, 203, 131, 0.15) !important;
      border-radius: var(--radius-sm) !important;
      margin-bottom: 12px;
      overflow: hidden;
    }

    .accordion-button {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 15px;
      color: var(--dark) !important;
      background: #fff !important;
      padding: 20px 24px;
      box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
      color: var(--green) !important;
      background: #f0fdf7 !important;
    }

    .accordion-button::after {
      filter: invert(50%) sepia(80%) saturate(400%) hue-rotate(100deg);
    }

    .accordion-body {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.8;
      padding: 16px 24px 22px;
    }

    /* ─── CONTACT ─── */
    .contact-section {
      background: linear-gradient(135deg, #0d2b1a 0%, #1a3a22 40%, #2d1810 100%);
      padding: 80px 0 0;
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(59, 203, 131, 0.12) 0%, transparent 70%);
      top: -100px;
      right: 100px;
      border-radius: 50%;
    }

    .contact-section::after {
      content: '';
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(202, 108, 56, 0.12) 0%, transparent 70%);
      bottom: 100px;
      left: -50px;
      border-radius: 50%;
    }

    .contact-heading {
      font-size: 30px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
    }

    .contact-sub {
      color: rgba(255, 255, 255, 0.7);
      font-size: 15px;
      margin-bottom: 40px;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 24px;
    }

    .contact-info-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: rgba(59, 203, 131, 0.15);
      border: 1px solid rgba(59, 203, 131, 0.25);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--green);
      flex-shrink: 0;
    }

    .contact-info-text {
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
    }

    .contact-info-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 2px;
      font-weight: 600;
    }

    /* Glass form */
    .glass-form {
      background: rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 24px;
      padding: 40px 36px;
      position: relative;
      z-index: 1;
    }

    .form-floating label {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
    }

    .form-floating .form-control,
    .form-floating .form-select {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.15);
      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(--green);
      box-shadow: 0 0 0 3px rgba(59, 203, 131, 0.15);
      color: #fff;
    }

    .form-floating .form-control::placeholder {
      color: transparent;
    }

    .form-floating .form-select option {
      background: #1a3a22;
      color: #fff;
    }

    .form-floating textarea.form-control {
      height: 100px;
    }

    .btn-submit {
      background: linear-gradient(135deg, var(--green), #2db872);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 16px 36px;
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 15px;
      width: 100%;
      transition: all 0.3s;
      box-shadow: 0 6px 20px rgba(59, 203, 131, 0.4);
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(59, 203, 131, 0.5);
    }

    /* ─── FOOTER ─── */
    .footer-bottom {
      background: rgba(0, 0, 0, 0.25);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 24px 0;
      margin-top: 60px;
      text-align: center;
    }

    .footer-bottom a {
      text-decoration: none;
    }

    .footer-bottom p {
      color: rgba(255, 255, 255, 0.5);
      font-size: 13px;
      margin: 0;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 12px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.5);
      font-size: 13px;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--green);
    }

    /* ─── SCROLL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ─── PILL TAG ─── */
    .pill-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(202, 108, 56, 0.1);
      color: var(--orange);
      border-radius: 50px;
      padding: 4px 14px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    @media (max-width: 991px) {
      .hero {
        padding: 10px 0 60px;
      }

      .hero-visual {
        margin-top: 50px;
      }

      .process-wrap::before {
        display: none;
      }

      .glass-form {
        padding: 28px 22px;
      }
    }

    @media (max-width: 575px) {
        
      .floating-card {
        display: none;
        
      }
    .policy-card {
        margin-top:50px !important;
    }
    

      .quality-timeline::before {
        left: 32px;
      }
       .btn-submit{
           background: linear-gradient(135deg, var(--green), #2db872);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 10px;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      font-size: 14px;
      width: 100%;
      transition: all 0.3s;
      box-shadow: 0 6px 20px rgba(59, 203, 131, 0.4);
           
       }
    }