/* Reset & base */
    *, *::before, *::after {
      box-sizing: border-box;
    }
    body {
      background: #0f111b; /* dark background */
      color: #fff;
      font-family: 'Inter', sans-serif;
    }

.offer-box {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f0f4ff;
      overflow-x: hidden;
    }

    /* Modal overlay */
    .anniv-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 17, 27, 0.95);
      backdrop-filter: blur(7px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
    }
    .anniv-modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Modal container */
    .anniv-modal {
      background: #121827;
      width: 90%;
      max-width: 100vh;
      border-radius: 24px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
      transform: scale(0.85) translateY(40px);
      transition: transform 0.35s ease;
      max-height: 85vh;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .anniv-modal-overlay.active .anniv-modal {
      transform: scale(1) translateY(0);
    }

    /* Modal header */
    .anniv-modal-header {
      padding: 32px 36px 24px;
      border-bottom: 2px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .anniv-modal-title {
      color: #fef3c7;
      font-size: 26px;
      font-weight: 800;
      line-height: 1.2;
      max-width: 85%;
      text-shadow: 0 0 8px #fbbf24;
    }
    .anniv-close-btn {
      background: transparent;
      border: none;
      color: #9ca3af;
      font-size: 30px;
      cursor: pointer;
      padding: 8px;
      border-radius: 10px;
      transition: background-color 0.25s ease, color 0.25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      user-select: none;
    }
    .anniv-close-btn:hover,
    .anniv-close-btn:focus {
      background: rgba(255, 255, 255, 0.2);
      color: #fef3c7;
      outline: none;
    }

    /* Modal body */
    .anniv-modal-body {
      padding: 28px 36px;
      color: #d1d5db;
      font-size: 17px;
      line-height: 1.6;
      overflow-y: auto;
      flex-grow: 1;
      scroll-behavior: smooth;
    }

    /* Week date heading */
    .anniv-week-date {
      text-align: center;
      margin-bottom: 16px;
    }
    .anniv-week-date h3 {
      font-size: 28px;
      font-weight: 800;
      color: #fbbf24;
      text-shadow: 0 0 10px #fbbf24;
      user-select: none;
    }

    /* Countdown */
    .anniv-countdown-container {
      display: flex;
      justify-content: center;
      margin: 30px 0;
    }
    .anniv-countdown-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 0 10px;
      width: 75px;
      height: 90px;
      background: rgba(59, 130, 246, 0.15);
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
      padding: 10px 0;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .anniv-countdown-box::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 3px;
      bottom: 0;
      left: 0;
      background: linear-gradient(90deg, #3b82f6, #2563eb);
      border-radius: 2px 2px 0 0;
    }
    .anniv-countdown-value {
      font-size: 2.5rem;
      font-weight: 800;
      color: #fde68a;
      line-height: 1;
      margin-top: 5px;
      text-shadow: 0 0 12px #fbbf24;
    }
    .anniv-countdown-label {
      font-size: 0.8rem;
      color: #a5b4fc;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 5px;
    }

    /* Milestones */
    .anniv-milestone-cards {
      display: flex;
      gap: 20px;
      margin-bottom: 32px;
      user-select: none;
    }
    @media (max-width: 640px) {
      .anniv-milestone-cards {
        flex-direction: column;
      }
    }
    .anniv-milestone-card {
      background: rgba(59, 130, 246, 0.15);
      border-radius: 20px;
      padding: 20px 24px;
      flex: 1;
      box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      color: #e0e7ff;
      transition: background-color 0.3s ease;
    }
    .anniv-milestone-card:hover {
      background: rgba(59, 130, 246, 0.3);
      box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
    }
    .anniv-milestone-emoji { font-size: 36px; margin-bottom: 12px; }
    .anniv-milestone-title { font-weight: 800; font-size: 20px; color: #fef3c7; margin-bottom: 8px; }
    .anniv-milestone-desc { font-size: 16px; color: #cbd5e1; line-height: 1.4; }

    /* Offer */
    .anniv-offer {
      margin-top: 0;
      padding: 26px 30px;
      background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
      border-radius: 20px;
      color: #fef3c7;
      font-weight: 700;
      font-size: 18px;
      text-align: center;
      box-shadow: 0 8px 20px rgba(37, 99, 235, 0.7);
      user-select: none;
      letter-spacing: 0.02em;
    }

    /* Footer */
    .anniv-modal-footer {
      padding: 24px 36px 32px;
      display: flex;
      gap: 20px;
      justify-content: flex-end;
      background: #0f111b;
      border-top: 2px solid rgba(255, 255, 255, 0.12);
    }

    /* Buttons */
    .anniv-btn {
      padding: 14px 36px;
      border-radius: 20px;
      border: none;
      font-size: 17px;
      font-weight: 700;
      cursor: pointer;
      transition: 0.3s ease;
      min-width: 140px;
      text-align: center;
      box-shadow: 0 6px 15px rgba(59, 130, 246, 0.5);
    }
    .anniv-btn-secondary {
      background: transparent;
      color: #a5b4fc;
      border: 2px solid #a5b4fc;
      box-shadow: none;
    }
    .anniv-btn-secondary:hover {
      background: #a5b4fc;
      color: #121827;
    }
    .anniv-btn-primary {
      background: #fbbf24;
      color: #121827;
      box-shadow: 0 8px 15px rgba(251, 191, 36, 0.5);
    }
    .anniv-btn-primary:hover {
      background: #f59e0b;
      box-shadow: 0 8px 25px rgba(251, 191, 36, 0.8);
      color: #121827;
    }

    /* Responsive */
    @media (max-width: 640px) {
      .anniv-modal { width: 95%; max-height: 90vh; }
      .anniv-modal-title { font-size: 22px; }
      .anniv-modal-body { font-size: 16px; }
      .anniv-btn { min-width: 120px; padding: 12px 28px; font-size: 16px; width: 100%; }
      .anniv-modal-footer { flex-direction: column; gap: 16px; }
      .anniv-countdown-box { width: 60px; height: 80px; margin: 0 5px; }
      .anniv-countdown-value { font-size: 2rem; }
      .anniv-countdown-label { font-size: 0.7rem; }
    }
    a {
      text-decoration: none;
      color: inherit;
    }

    button {
      font-family: inherit;
      cursor: pointer;
    }


    /* Logo and Brand */
    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

.navbar-custom {
      background-color: #0f111b;
      padding: 0.75rem 2rem;
    }
    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: white;
      font-weight: 600;
      font-size: 1.125rem;
      user-select: none;
      white-space: nowrap;
    }

    .nav-menu {
      background-color: #212529;
      border-radius: 9999px;
      padding: 0.5rem 1.5rem;
      display: flex;
      gap: 2rem;
      user-select: none;
      white-space: nowrap;
    }
    .nav-link-custom {
      color: white;
      font-weight: 400;
      font-size: 1rem;
      padding: 0.375rem 0.75rem;
      border-radius: 9999px;
      transition: color 0.2s ease;
      cursor: pointer;
      text-decoration: none;
    }
    .nav-link-custom:hover {
      color: #2B9E7E;
      text-decoration: none;
    }
    .nav-tabs{
        border-bottom: 2px solid #e9ecef;
        background-color: #fff;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .nav-link-active {
      background-color: #22b573;
      color: white !important;
      cursor: default;
      pointer-events: none;
    }
    /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            gap: 4px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mobile Menu Overlay */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 70%;
            height: 100vh;
            background: linear-gradient(135deg, #0F111B 0%, #1e293b 100%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-nav-menu {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            text-align: center;
            list-style: none;
            margin-bottom: 3rem;
        }

        .mobile-nav-link {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 500;
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .mobile-nav-link:hover {
            color: #60A5FA;
            background-color: rgba(96, 165, 250, 0.1);
        }

        .mobile-auth-buttons {
            display: flex;
            color: white;
            font-weight: 400;
            font-size: 1rem;
            padding: 0.375rem 0.75rem;
            border-radius: 9999px;
            transition: color 0.2s ease;
            cursor: pointer;
            text-decoration: none;


        }
            .mobile-auth-buttons:hover {
              color: #2B9E7E;
              text-decoration: none;
            }
        @media screen and (max-width: 768px) {
            .navbar {
                padding: 1rem;
            }

            .nav-menu,
            .auth-buttons {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .logo {
                font-size: 1.3rem;
            }

            .content h1 {
                font-size: 2rem;
            }
        }

        @media screen and (max-width: 480px) {
            .navbar {
                padding: 0.8rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .mobile-nav-link {
                font-size: 1.0rem;
            }
        }
    .btn-login {
      color: white;
      border: 1px solid #2B9E7E;
      border-radius: 9999px;
      padding: 0.375rem 1.25rem;
      font-weight: 400;
      font-size: 1rem;
      background-color: transparent;
      transition: background-color 0.2s ease;
      user-select: none;
      white-space: nowrap;
    }
    .btn-login:hover {
      background-color: #2B9E7E;
      color: white;
    }
    .btn-signup {
      background-color: #2B9E7E;
      color: white;
      border-radius: 9999px;
      padding: 0.375rem 1.75rem;
      font-weight: 400;
      font-size: 1rem;
      border: none;
      user-select: none;
      transition: background-color 0.2s ease;
      white-space: nowrap;
    }
    .btn-signup:hover {
      background-color: #24966f;
      color: white;
    }
    /* Responsive */
    @media (max-width: 767.98px) {
      .nav-menu {
        display: none !important;
      }
      .show_only_mobile,
      .show_only_mobile {
        display: none !important;
      }
    }




    .btn-login {
        background-color: transparent;
      border: none;
      color: #fff;
      padding: 10px 22px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 1rem;
      transition: background-color 0.3s ease;
      user-select: none;
      box-shadow: 0 2px 10px rgb(34 181 115 / 0.6);
    }
    .btn-login:hover,
    .btn-login:focus-visible {
      background-color: #22b573;
      border-color: #37b47e;
      outline: none;
    }

    .btn-signup {
      background-color: #22b573;
      border: none;
      color: #fff;
      padding: 10px 22px;
      border-radius: 25px;
      font-weight: 600;
      font-size: 1rem;
      transition: background-color 0.3s ease;
      user-select: none;
      box-shadow: 0 2px 10px rgb(34 181 115 / 0.6);
    }
    .btn-signup:hover,
    .btn-signup:focus-visible {
      background-color: #2c8c6a;
      outline: none;
    }

    /* Hero center: orbit graphic */
    .hero-center {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .orbit-container {
            position: relative;
            width: min(350px, 90vw);
            height: min(350px, 90vw);
            max-width: 350px;
            max-height: 350px;
            border-radius: 50%;
            background: radial-gradient(circle at center, #1a242c, #0b0f10 100%);
            box-shadow: 0 0 100px -50px #37b47e99, 0 0 350px #37b47e66;
            display: flex;
            justify-content: center;
            align-items: center;
            user-select: none;
            margin: 20px auto;
        }

        /* Mobile adjustments */
        @media (max-width: 480px) {
            .orbit-container {
                width: 280px;
                height: 280px;
                box-shadow: 0 0 60px -30px #37b47e99, 0 0 200px #37b47e66;
            }
        }

        @media (max-width: 360px) {
            .orbit-container {
                width: 250px;
                height: 250px;
                box-shadow: 0 0 50px -25px #37b47e99, 0 0 150px #37b47e66;
            }
        }

        /* Circular orbit rings */
        .orbit-ring {
            position: absolute;
            border: 1px solid #3e4754;
            border-radius: 50%;
            pointer-events: none;
            user-select: none;
            mix-blend-mode: screen;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .ring-outer {
            width: 100%;
            height: 100%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: rotateOrbit 30s linear infinite;
        }

        .ring-inner {
            width: 65%;
            height: 65%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: rotateOrbitReverse 25s linear infinite;
        }

        /* Orbiting Icons - responsive sizing */
        .orbit-icon {
            position: absolute;
            width: clamp(32px, 8vw, 40px);
            height: clamp(32px, 8vw, 40px);
            border-radius: 50%;
            background-color: #7b45de22;
            box-shadow: 0 0 14px #7b45de66 inset;
            display: flex;
            justify-content: center;
            align-items: center;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .orbit-icon i {
            font-size: clamp(1rem, 3.5vw, 1.5rem);
            color: #17a2b8;
        }

        /* Mobile icon sizing */
        @media (max-width: 480px) {
            .orbit-icon {
                width: 32px;
                height: 32px;
            }
            .orbit-icon i {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 360px) {
            .orbit-icon {
                width: 28px;
                height: 28px;
            }
            .orbit-icon i {
                font-size: 1rem;
            }
        }

        /* Position icons on outer ring */
        .orbit-icon.icon-one {
            top: 0;
            left: 50%;
        }
        .orbit-icon.icon-two {
            top: 50%;
            left: 100%;
        }
        .orbit-icon.icon-three {
            top: 100%;
            left: 50%;
        }
        .orbit-icon.icon-four {
            top: 50%;
            left: 0%;
        }

        /* Position icons on inner ring */
        .orbit-icon.inner-icon-one {
            top: 0;
            left: 50%;
        }
        .orbit-icon.inner-icon-two {
            top: 50%;
            left: 100%;
        }
        .orbit-icon.inner-icon-three {
            top: 100%;
            left: 50%;
        }
        .orbit-icon.inner-icon-four {
            top: 50%;
            left: 0%;
        }

        /* Center icon - responsive sizing */
        .orbit-center-icon {
            position: absolute;
            width: clamp(45px, 10vw, 50px);
            height: clamp(45px, 10vw, 50px);
            background-color: transparent;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 800;
            font-size: clamp(18px, 4vw, 22px);
            user-select: none;
            color: white;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }

        /* Mobile center icon sizing */
        @media (max-width: 480px) {
            .orbit-center-icon {
                width: 48px;
                height: 48px;
                font-size: 18px;
            }
        }

        @media (max-width: 360px) {
            .orbit-center-icon {
                width: 42px;
                height: 42px;
                font-size: 16px;
            }
        }

        /* Animations */
        @keyframes rotateOrbit {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to   { transform: translate(-50%, -50%) rotate(360deg); }
        }

        @keyframes rotateOrbitReverse {
            from { transform: translate(-50%, -50%) rotate(360deg); }
            to   { transform: translate(-50%, -50%) rotate(0deg); }
        }

        /* Reduce motion for users who prefer it */
        @media (prefers-reduced-motion: reduce) {
            .ring-outer,
            .ring-inner {
                animation-duration: 60s;
            }
        }

        /* Touch-friendly hover effects */
        @media (hover: hover) {
            .orbit-icon:hover {
                transform: translate(-50%, -50%) scale(1.1);
                box-shadow: 0 0 20px #7b45de88 inset;
            }

            .orbit-center-icon:hover {
                transform: translate(-50%, -50%) scale(1.05);
                box-shadow: 0 0 15px #37b47ebb;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) {
            .orbit-icon:active {
                transform: translate(-50%, -50%) scale(0.95);
            }

            .orbit-center-icon:active {
                transform: translate(-50%, -50%) scale(0.98);
            }
        }

        /* Prevent text selection and improve touch */
        * {
            -webkit-tap-highlight-color: transparent;
            -webkit-touch-callout: none;
            -webkit-user-select: none;
            user-select: none;
        }

        /* Performance optimizations */
        .orbit-ring {
            will-change: transform;
            backface-visibility: hidden;
        }

        .orbit-icon {
            will-change: transform;
            backface-visibility: hidden;
        }

    /* Responsive layout */
    @media screen and (max-width: 767px) {
      /* Header - stack logo and hamburger */
      .header-inner {
        padding: 12px 16px;
        flex-wrap: wrap;
        gap: 12px;
      }
      nav.primary-nav {
        order: 2;
        width: 100%;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
      }
      .header-actions {
        gap: 12px;
      }
      .hero-center {
        order: 2;
        margin-bottom: 2rem;
      }
    }
    /* Highlighted "Finance" with border corners */
    .highlight-finance {
      position: relative;
      display: inline-block;
      padding: 0 0.15rem 0.05rem 0.15rem;
      margin-left: 0.1rem;
    }

    /* corner decorations */
    .highlight-finance::before,
    .highlight-finance::after {
      content: '';
      position: absolute;
      width: 6px;
      height: 6px;
      border: 2px solid #2ec78d;
      border-radius: 2px;
    }

    .highlight-finance::before {
      top: -6px;
      left: -6px;
      border-right: none;
      border-bottom: none;
    }

    .highlight-finance::after {
      bottom: -6px;
      right: -6px;
      border-left: none;
      border-top: none;
    }


    /* Email/Phone input and signup button horizontally aligned */
    .input-group-custom {
      max-width: 440px;
      margin-top: 1.8rem;
    }

    .form-control-custom {
      background-color: rgba(255 255 255 / 0.05);
      border: 1px solid #2b2b32;
      border-radius: 48px 0 0 48px;
      color: white;
      padding: 0.65rem 1rem;
      font-weight: 500;
      font-size: 0.9rem;
      height: 44px;
      border-right: none;
    }

    .form-control-custom::placeholder {
      color: #888;
      font-weight: 400;
    }

    .btn-input-signup {
      background-color: #2ec78d;
      border: none;
      border-radius: 0 48px 48px 0;
      width: 110px;
      font-weight: 700;
      font-size: 1rem;
      color: white;
      transition: background-color 0.3s ease;
      height: 44px;
    }

    .btn-input-signup:hover,
    .btn-input-signup:focus {
      background-color: #27a97b;
      box-shadow: none;
      color: white;
    }
/* what our user say  */

/* Container max width for large screens */
    .container-xl {
      max-width: 1440px;
    }
    /* View all button styling */
    .btn-view-all {
      background-color: #22b573;
      border: none;
      color: #fff;
      padding: 0.5rem 2.2rem;
      border-radius: 25px;
      font-weight: 600;
      font-size: 1rem;
      transition: background-color 0.3s ease;
      user-select: none;
      margin: 0 auto 6rem;
      display: inline-block;
      box-shadow: 0 2px 10px rgb(34 181 115 / 0.6);
    }
    .btn-view-all:hover,
    .btn-view-all:focus {
      background-color: #1a934d;
      color: #e6f6f1;
      outline: none;
      box-shadow: 0 4px 16px rgb(26 148 64 / 0.9);
    }

    /* Statistics section */
    .stats-section {
      display: flex;
      justify-content: center;
      gap: 3rem;
      max-width: 1000px;
      margin: 0 auto 4rem auto;
      color: #9ca3af;
      user-select: none;
      flex-wrap: wrap;
    }

    .stat-item {
      flex: 1 1 200px;
      border-right: 1px solid #2a2d33;
      padding: 0 1rem;
      min-width: 150px;
      text-align: center;
      position: relative;
    }

    /* Remove border for last item */
    .stat-item:last-child {
      border-right: none;
    }


    .stat-value {
      font-weight: 900;
      font-size: 2.5rem;
      color: #f8f9fa;
      user-select: text;
    }

    .stat-label {
      font-weight: 400;
      font-size: 0.95rem;
      margin-top: 0.2rem;
      user-select: none;
    }

    /* Responsive adjustments */
    @media (max-width: 767.98px) {
      .stats-section {
        flex-direction: column;
        gap: 2rem;
      }
      .stat-item {
        border: none;
        padding: 0;
        min-width: 100%;
      }

      /* Cards stacked vertically */
      .row{
        flex-direction: column !important;
      }

      .btn-view-all {
        margin-bottom: 4rem;
      }
    }

    @media (min-width: 1440px) {
      /* Max width container for large desktops */
      .container-xl {
        max-width: 1440px;
      }
    }
/* testimonials  */

    .section {
      background: #f9f9f9;
      padding: 80px 20px;
    }

    .container {
      max-width: 1200px;
      margin: auto;
    }

    .heading-box {
      max-width: 540px;
      margin: 0 auto;
      text-align: center;
    }

    .tag {
      display: inline-block;
      border: 1px solid #ccc;
      padding: 6px 18px;
      border-radius: 8px;
      font-size: 14px;
    }

    .heading-box h2 {
      font-size: 2.75rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-top: 24px;
    }

    .heading-box p {
      margin-top: 16px;
      opacity: 0.75;
      font-size: 1rem;
      line-height: 1.6;
    }

    .columns {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-top: 60px;
      max-height: 740px;
      overflow: hidden;
      mask-image: linear-gradient(to bottom, transparent, black 25%, black 75%, transparent);
    }

    .column {
      width: 300px;
      overflow: hidden;
    }

    .scroll-content {
      display: flex;
      flex-direction: column;
      gap: 24px;
      animation: scrollLoop 15s linear infinite;
    }

    .column:nth-child(2) .scroll-content {
      animation-duration: 19s;
    }

    .column:nth-child(3) .scroll-content {
      animation-duration: 17s;
    }

    .column:hover .scroll-content {
      animation-play-state: paused;
    }

    @keyframes scrollLoop {
      0% {
        transform: translateY(0%);
      }
      100% {
        transform: translateY(-50%);
      }
    }
    .testimonials-section{
          text-align: center;
    }
    .testimonial-label {
      display: inline-block;
      background: rgba(16, 185, 129, 0.12);
      color: #10b981;
      padding: 0.3rem 1.2rem;
      border-radius: 30px;
      font-size: 0.875rem;
      font-weight: 500;
      margin-bottom: 0.75rem;
      letter-spacing: 0.05em;
      user-select: none;
    }

    .testimonial-card {
      background: white;
      border: 1px solid #eee;
      border-radius: 24px;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #111827;
      padding: 24px;
      box-shadow: 0 4px 20px var(--primary-shadow);
    }

    .testimonial-card .text {
      font-size: 1rem;
      line-height: 1.6;
    }

    .testimonial-card .user {
      display: flex;
      align-items: center;
      margin-top: 20px;
      gap: 12px;
    }

    .testimonial-card .user img {
      border-radius: 50%;
      width: 40px;
      height: 40px;
    }
    .user-info{
    text-align:start;
    }
    .user-info .name {
      font-weight: 600;
      letter-spacing: -0.01em;
      line-height: 1.4;
    }

    .user-info .role {
      font-size: 0.875rem;
      opacity: 0.6;
      line-height: 1.4;
      letter-spacing: -0.01em;
    }
@media (max-width: 768px) {
  .columns-wrapper {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
  }

  .columns {
    display: flex;
    flex-direction: row;
    gap: 24px;
    height:200%;
    animation: scrollColumnsHorizontally 20s linear infinite;
    width: calc(6 * 300px + 5 * 24px); /* 6 columns and 5 gaps */
  }

  .column {
    width: 300px;
  }

  @keyframes scrollColumnsHorizontally {
    0% {
      transform: translateX(-20%);
    }
    100% {
      transform: translateX(-58%); /* scroll 3 columns (3 * 300 + 2 * 24) */
    }
  }

  .columns:hover {
    animation-play-state: paused;
  }
}

/* Footer */
          .semicircle {
            width: 100vw;
            height: 90vw;
            background-color: #0f111b;
            border-radius: 50%;
            position: relative;
            bottom: -50vw;
            box-shadow: 0 -40px 80px 10px rgba(34, 181, 115, 0.6);
        }

        .page-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2.5rem;
            color: #f8f9fa;
        }

        .subtitle {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 3rem;
            color: #f8f9fa;
            font-size: 1.125rem;
            line-height: 1.7;
            padding: 0 1rem;
        }

        /* Mobile Optimizations - Remove semicircle */
        @media (max-width: 768px) {
            section {
                align-items: center !important;
                justify-content: center;
            }

            .semicircle {
                width: 100%;
                height: auto;
                border-radius: 0;
                position: static;
                bottom: auto;
                box-shadow: none;
                padding: 2rem 1rem;
                min-height: auto;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .page-title {
                font-size: 1.8rem;
                margin-bottom: 1.5rem;
                margin-top: 1rem;
                padding: 0 1rem;
                line-height: 1.3;
                color: #f8f9fa;
            }

            .subtitle {
                font-size: 1rem;
                margin: 0 auto 2rem;
                padding: 0 1.5rem;
                line-height: 1.6;
                color: #f8f9fa;
            }

            .btn-view-all {
                padding: 14px 35px;
                font-size: 1rem;
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 480px) {
            .semicircle {
                padding: 1.5rem 1rem;
            }

            .page-title {
                font-size: 1.5rem;
                margin-bottom: 1rem;
                margin-top: 0.5rem;
            }

            .subtitle {
                font-size: 0.9rem;
                margin: 0 auto 1.5rem;
                padding: 0 1rem;
            }

            .btn-view-all {
                padding: 10px 25px;
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }

            .subtitle br {
                display: none;
            }
        }


        /* Very small screens */
        @media (max-width: 320px) {
            .page-title {
                font-size: 1.3rem;
                margin-top: 0.5rem;
            }
        }

        /* Tablet - keep semicircle but make it more manageable */
        @media (min-width: 769px) and (max-width: 1024px) {
            .semicircle {
                width: 90vw;
                height: 75vw;
                bottom: -35vw;
                box-shadow: 0 -30px 70px 8px rgba(34, 181, 115, 0.5);
            }

            .page-title {
                font-size: 2rem;
                margin-top: 2rem;
            }

            .subtitle {
                font-size: 1rem;
            }
        }
    @keyframes rotate {
      0% {
        transform: translate(-50%, -50%) rotate(0deg);
      }
      100% {
        transform: translate(-50%, -50%) rotate(360deg);
      }
    }

    @keyframes pulse {
      0%, 100% {
        box-shadow: 0 0 10px 3px #3ca87f;
        background-color: #3ca87f;
      }
      50% {
        box-shadow: 0 0 18px 7px #60c99f;
        background-color: #60c99f;
      }
    }
/* Why choise us */


    .card {
      border-width: 1px;
      border-style: solid;
      border-color: #1f2227;
      background-color: rgba(18, 22, 25, 0.3);
      box-shadow: 0 0 40px #1f2227;
      border-radius: 0.75rem; /* rounded-xl */
      padding: 2rem; /* p-8 */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      min-height: 230px;
      position: relative;
      background-clip: padding-box;
    }
    /* Overlap borders on adjacent edges */
    .card-top-center {
      grid-row: 1;
      grid-column: 2;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0;
      margin-bottom: -1px;
    }
    .card-left-middle {
      grid-row: 2;
      grid-column: 1;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
      margin-right: -1px;
    }
    .card-center-middle {
      grid-row: 2;
      grid-column: 2;
      border-radius: 0;
      border-left-width: 0;
      border-top-width: 0;
      border-right-width: 0;
      border-bottom-width: 0;
      box-shadow: none;
      background-color: transparent;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      min-height: 230px;
      z-index: 10;
    }
    .card-right-middle {
      grid-row: 2;
      grid-column: 3;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      margin-left: -1px;
    }
    .card-bottom-center {
      grid-row: 3;
      grid-column: 2;
      border-top-left-radius: 0;
      border-top-right-radius: 0;
      margin-top: -1px;
    }
    /* Star shapes */
    .star {
      position: absolute;
      width: 0.5rem;
      height: 0.5rem;
      color: white;
      filter: brightness(150%);
      transform-origin: center;
    }
    /* Icon circle */
    .icon-circle {
      width: 4rem;
      height: 4rem;
      background-color: rgba(31, 34, 39, 0.4);
      border-radius: 9999px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 1.5rem;
    }
    /* Heading with bolt icon */
    .card h3 {
      font-weight: 600;
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      color: white;
    }
    /* Paragraph text */
    .card p {
      color: #9ca3af; /* gray-400 */
      font-size: 0.75rem;
      max-width: 220px;
      line-height: 1.4;
    }
    /* Responsive adjustments */
    @media (max-width: 640px) {
      h1 {
        font-size: 3rem;
      }
      .card {
        min-height: auto;
        padding: 1.5rem;
      }
      .card p {
        max-width: 100%;
        font-size: 0.75rem;
      }
      .icon-circle {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
      }
      .btn-get-started {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
      }
      .grid-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
      }
      .card-top-center,
      .card-left-middle,
      .card-center-middle,
      .card-right-middle,
      .card-bottom-center {
        border-radius: 0.75rem !important;
        margin: 0 !important;
        border-width: 1px !important;
        box-shadow: 0 0 40px #1f2227 !important;
        background-color: rgba(18, 22, 25, 0.3) !important;
      }
      .card-center-middle {
        background-color: rgba(18, 22, 25, 0.3) !important;
        box-shadow: 0 0 40px #1f2227 !important;
        border-width: 1px !important;
        padding: 2rem !important;
      }
    }
  .custom-footer {
      border-top: 3px solid #1a1a1a;
      margin-top: 3rem; /* mt-12 */
      padding-top: 2.5rem; /* pt-10 */
      padding-bottom: 4rem; /* pb-16 */
      position: relative;
      z-index: 10;
    }
select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-image: url("data:image/svg+xml;charset=US-ASCII,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%23a0aec0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='4 6 8 10 12 6'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      background-size: 1em;
      padding-right: 2.5rem;
    }
.fade-text {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .fade-text.show {
    opacity: 1;
  }
  .plan-card {
    background-color: #1a1c2e;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.2);
    color: #ccc;
  }
  .plan-price span {
    font-size: 1rem;
    font-weight: 400;
  }

.plan-price {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.plan-price.fade-out {
  opacity: 0;
}

  .line-through {
    text-decoration: line-through;
    opacity: 0.5;
  }
  .custom-article-2 {
    background-color: #1a1c2e;
  }
  .custom-article-3 {
    background-color: #1a1c2e;
    border: 2px solid #16a34a; /* Tailwind green-600 */
  }
.card-pricing{
    position: relative;
    display: block;
    margin: 20px auto;
    padding: 32px 20px;
    max-width: 343px;
    overflow: hidden;
    }

  .text-indigo {
    color: #6366f1;
  }
  .list-unstyled li {
    color: #d1d5db;
  }

  .document-section{
    margin: auto;
    background-color: #fbfcfc;
    color:black;
    border: 1px outset #d7dbdd;
    border-radius:10px;
    height: 142vh;
    transition: height 0.3s ease;
    overflow-x: auto;
  }
  .scrolling{
    height: 90vh;
    overflow-x: auto;
    border: 1px outset #d7dbdd;
    border-radius:10px;

    }
.lineitems-size{
    height: 50vh;
    overflow-x: auto;
    border: 1px outset #d7dbdd;
    border-radius:10px;
}
table {
      border-collapse: collapse;
      width: 100%;
    }

    th, td {
      border: 1px solid #ccc;
      padding: 0;
      text-align: center;
    }

    th {
      background-color: #f4f4f4;
      font-weight: bold;
      height: 35px;
      min-width: 60px;
      font-size: 15px;
    }

    textarea {
      width: 100%;
      height: 30px;
      min-height: 30px;
      border: none;
      resize: none;
      overflow: hidden;
      font-size: 14px;
      font-family: inherit;
      padding: 0px;
      line-height: 2;
      background-color: white;
      transition: height 0.2s ease, background-color 0.2s ease;
    }

    textarea:focus {
      background-color: #f0faff;
      outline: none;
    }
.highlight-div {
    position: absolute;
    border: 1px solid #2D8C5D;
    background-color: rgba(45, 140, 93, 0.2);
    box-shadow: 0 4px 12px rgba(45, 140, 93, 0.3);
    border-radius: 4px;
    transition: box-shadow 0.3s ease;
}
.page-footer {
  position:relative;
  bottom:0;
  padding-top:20px;
  width:100%;
  height:80px;
  border-top: 1px solid #e9e8f5;
}
.page-footer p a {
  transition: color .2s ease;
}
.footer-menu {
  position: relative;
  padding-left: 0;
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-link {
  display: inline-block;
  padding: 6px 0;
}

.footer-menu a,
.footer-link {
  color: #f8f9fa;
}

.footer-menu a:hover,
.footer-link:hover {
  color: #f8f9fa;
  text-decoration: none;
}
.download-button {
  position: relative;
  width: 120px;
  height: 40px;
  background-color: #1163ff;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.button-text,
.button-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: top 0.4s;
}

.button-icon {
  top: 100%;
}

.download-button:hover .button-text {
  top: -100%;
}

.download-button:hover .button-icon {
  top: 0;
}

.icon {
  width: 24px;
  height: 24px;
}


      .faq-container {
          max-width: 900px;
          margin: 0 auto;
          padding: 2rem;
      }

      .faq-item {
          margin-bottom: 1.25rem;
          border: 1px solid #e5e7eb;
          border-radius: 8px;
          background-color: #ffffff;
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
          overflow: hidden;
          transition: all 0.3s ease;
      }

      .faq-item:hover {
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      }

      .faq-question {
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 1.25rem 1.5rem;
          cursor: pointer;
          font-weight: 500;
          font-size: 1.125rem;
          color: #1f2937;
          background-color: #fff;
          border: none;
          width: 100%;
          text-align: left;
      }

      .faq-question:focus {
          outline: none;
      }

      .faq-answer {
          padding: 0;
          max-height: 0;
          overflow: hidden;
          transition: max-height 0.3s ease, padding 0.3s ease;
      }

      .faq-answer-content {
          padding: 0 1.5rem 1.5rem;
          line-height: 1.6;
          color: #4b5563;
      }

      .faq-item.active .faq-question {
          border-bottom: 1px solid #e5e7eb;
      }

      .faq-item.active .faq-answer {
          max-height: 500px;
          padding-top: 1rem;
      }

      .icon-container {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 24px;
          height: 24px;
          transition: transform 0.3s ease;
      }

      .faq-item.active .icon-container {
          transform: rotate(45deg);
      }

      .page-title {
          font-size: 2.5rem;
          font-weight: 700;
          text-align: center;
          margin-bottom: 2.5rem;
          color: #f8f9fa;
      }
      .subtitle {
          text-align: center;
          max-width: 700px;
          margin: 0 auto 3rem;
          color: #f8f9fa;
          font-size: 1.125rem;
          line-height: 1.7;
      }

      @media (max-width: 768px) {
          .faq-container {
              padding: 1.5rem;
          }

          .page-title {
              font-size: 2rem;
              margin-bottom: 1.5rem;
          }

          .subtitle {
              font-size: 1rem;
              margin-bottom: 2rem;
          }

          .faq-question {
              padding: 1rem 1.25rem;
              font-size: 1rem;
          }

          .faq-answer-content {
              padding: 0 1.25rem 1.25rem;
          }
      }
.save-badge {
    position: absolute;
    top: 22px;
    right: -36px;
    background-color: #22b573;
    color: white;
    padding: 4px 40px;
    transform: rotate(45deg);
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
    .info-box {
      border-radius: 12px;
      padding: 25px 20px;
      background-color: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
      transition: transform 0.2s;
    }
    .info-box:hover {
      transform: translateY(-5px);
    }
    .info-icon {
      background-color: #e9f2ff;
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-bottom: 15px;
    }
    .info-title {
      font-weight: 600;
      color: #111827;
      font-size: 1rem;
    }
.info-text {
      font-size: 0.875rem;
      color: #6b7280;
    }

.animated-words {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    color: #007BFF;
    font-weight: bold;
    white-space: nowrap; /* Ensure no wrapping */
    height: 3rem; /* Adjust container height */
}
/*plan estimator*/
.calc-card {
      border-radius: 0px 0px 10px 10px;
      padding: 2.5rem;
      background: white;
      color: #111827;
    }
.form-range {
  height: 20px;
  background: transparent; /* important */
}

/* WebKit browsers (Chrome, Edge, Safari) */
.form-range::-webkit-slider-runnable-track {
  height: 20px;
  border-radius: 8px;
  background: linear-gradient(to right, #1A924D 0%, #e9ecef 0%);
}

/* Update the filled color dynamically */
.filled-range::-webkit-slider-runnable-track {
  background: var(--track-gradient);
}

/* Thumb (handle) */
.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1A924D;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
  margin-top: 0px; /* centers thumb on track */
}

/* Firefox */
.form-range::-moz-range-track {
  height: 20px;
  border-radius: 8px;
  background: linear-gradient(to right, #1A924D 0%, #e9ecef 0%);
}
.form-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1A924D;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
}
    .point-box {
      background-color: #1A924D;
      color:white;
      padding: 10px 20px;
      border-radius: 5px;
      font-weight: bold;
      text-align: center;
    }
    .description-panel h5{
    color: #f8f9fa;
    font-size: 1.125rem;
    line-height: 1.7;
    }
    .description-panel p{
        color: #d1d5db;
    }
    .nav-tabs .nav-link.active {
      background-color: #1A924D;
      color: #fff;
    }

    .nav-tabs .nav-link {
    color: #000000;
    border: none;
    background-color: #fff;
    }

    .gradient-border-container {
        position: relative;
        padding: 4px;
        background: linear-gradient(45deg,#0070f3,#00dfd8,#ff0080);
        background-size: 300% 300%;
        border-radius: 16px;
        animation: gradientShift 13s ease infinite;
    }
    @keyframes gradientShift {
        0%, 100% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
    }

    .rules-box {
      background: white;
      border-radius: 12px;
      color:111827;
      padding: 1rem;
    }



    .rules-box ul {
      padding-left: 1.2rem;
    }

.word {
    display: block;
    background: #00FF37;
    background: repeating-linear-gradient(to left, #00FF37 0%, #00C8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    width: 100%;
    height: 100%; /* Ensure words fill the container */
    animation: flipWords 20s infinite;
    text-align: center; /* Center the words */
}

@keyframes flipWords {
    0% { transform: translateY(0);}
    12.5% { transform: translateY(-100%); }
    25% { transform: translateY(-200%); }
    37.5% { transform: translateY(-300%); }
    50% { transform: translateY(-400%); }
    62.5% { transform: translateY(-500%); }
    75% { transform: translateY(-600%); }
    87.5% { transform: translateY(-700%); }
}
/* Header section */
        .header-section {
            padding: 3rem 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-text {
            font-size: 1.1rem;
            font-weight: 500;
            color: #ffffff;
            margin-right: 0.5rem;
        }

        .tagline {
            color: #a855f7;
            font-size: 1.1rem;
        }

        .cta-section {
            text-align: right;
        }

        .cta-title {
            font-size: 3.5rem;
            font-weight: 300;
            color: #ffffff;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .cta-subtitle {
            color: #9ca3af;
            font-size: 1.1rem;
        }

        /* Footer section */
        .footer-section {
            padding: 2rem 0 3rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-column h3 {
            color: #9ca3af;
            font-size: 0.875rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
        }

        .footer-column:first-child h3 {
            display: none;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: #6b7280;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.2s ease;
            display: block;
        }

        .footer-links a:hover {
            color: #ffffff;
        }

        .footer-links.main-links a {
            color: #ffffff;
            font-size: 1.1rem;
        }

        /* Special spacing for sign in link */
        .footer-links li.spacer {
            margin-top: 2rem;
        }

        /* Footer bottom */
        .footer-bottom {
            padding: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-copy {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .footer-love {
            color: #6b7280;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .heart {
            color: #ef4444;
        }

        .footer-legal {
            display: flex;
            gap: 1.5rem;
        }

        .footer-legal a {
            color: #6b7280;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        .footer-legal a:hover {
            color: #ffffff;
        }

        @media (max-width: 768px) {
            .header-section {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }

            .cta-section {
                text-align: center;
            }

            .cta-title {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .footer-legal {
                order: 1;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .footer-legal {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        .border-top {
            border-top: 1px solid rgba(255,255,255,0.1) !important;
        }