    :root {
        /* Lesotho Brand Colors */
        --lesotho-blue: #00209F;
        --lesotho-blue-light: #0052B4;
        --lesotho-blue-dark: #001770;
        --lesotho-green: #009543;
        --lesotho-green-light: #00b854;

        /* Modern Gradients */
        --gradient-primary: linear-gradient(135deg, #00209F 0%, #0052B4 100%);
        --gradient-accent: linear-gradient(135deg, #009543 0%, #00b854 100%);
        --gradient-glow: linear-gradient(135deg, rgba(0, 32, 159, 0.1) 0%, rgba(0, 149, 67, 0.1) 100%);

        /* Neutral Colors */
        --white: #ffffff;
        --off-white: #fafbfc;
        --bg-light: #f8f9fa;
        --text-dark: #1a202c;
        --text-muted: #64748b;
        --border-color: rgba(0, 32, 159, 0.1);

        /* Shadows & Effects */
        --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
        --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
        --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
        --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.16);
        --glow-blue: 0 0 30px rgba(0, 82, 180, 0.3);
        --glow-green: 0 0 30px rgba(0, 149, 67, 0.3);

        /* Transitions */
        --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        overflow-x: hidden;
        background: #ffffff;
    }


    /* Navigation Bar Styling */
    .navbar {
      background-color: #239de3;
    }

    .navbar .nav-link {
      color: white !important;
    }

    .navbar-nav .nav-link:hover {
            color: rgb(7, 155, 54) !important;
        }

    /* Welcome Section */
    .welcome-section {
      background-color: #003366;
      color: #ffffff;
      padding: 80px 0;
      text-align: center;
    }

    .welcome-section h1 {
      font-size: 3.5rem;
      font-weight: 700;
    }

    /* For larger screens */
    @media (min-width: 576px) {
        .welcome-section h1 {
            font-size: 3rem;
        }
    }

    /* Adjust the paragraph for readability */
    .welcome-section p {
        color: #6c757d; /* Lighter text for a softer appearance */
    }

    /* Content Section Styling */
    .content-section {
      padding: 50px 20px;
      text-align: center;
      background-color: #ffffff;
      color: #333;
    }

    .content-section h2 {
      font-size: 2.5rem;
      font-weight: 600;
      color: #003366;
      margin-bottom: 20px;
    }

    .content-section p {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .content-section .highlight {
      color: #003366;
      font-weight: bold;
    }

    /* Footer Styling */
    footer {
      position: relative;
      overflow: hidden; /* Ensure everything fits within the footer */
  }

  .footer-image-overlay {
      position: absolute;
      top: 0;
      right: 0;
      width: 30%; /* Adjust width of the image as desired */
      height: 100%;
      z-index: 1;
  }

  .footer-image {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Ensure the image covers the area without stretching */
  }

  .footer-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); /* Dark overlay effect */
      z-index: 2; /* Ensure overlay is above the image */
  }

  /* Style for footer content */
  .footer-content {
      position: relative;
      z-index: 3; /* Ensure content is above the overlay and image */
      color: white;
  }

  footer .container {
      position: relative;
      z-index: 3; /* Ensure content is above the overlay */
  }

    
    

    /* ============================================
   Global Styles
   ============================================ */

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        color: var(--text-dark);
        overflow-x: hidden;
        background: var(--off-white);
    }

    /* ============================================
   Hero Section
   ============================================ */

    .hero {
        position: relative;
        background: linear-gradient(135deg, #00209F 0%, #001770 100%);
        padding: 80px 0 100px;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(0, 149, 67, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(0, 82, 180, 0.15) 0%, transparent 50%);
        z-index: 2;
    }

    .hero .container-fluid {
        position: relative;
        z-index: 3;
    }

    /* Animated Background Shapes */
    .animated-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 2;
        overflow: hidden;
    }

    .shape {
        position: absolute;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: float 20s infinite ease-in-out;
    }

    .shape-1 {
        width: 400px;
        height: 400px;
        top: -100px;
        left: -100px;
        animation-delay: 0s;
    }

    .shape-2 {
        width: 300px;
        height: 300px;
        top: 50%;
        right: -50px;
        animation-delay: 5s;
    }

    .shape-3 {
        width: 200px;
        height: 200px;
        bottom: 10%;
        left: 30%;
        animation-delay: 10s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
        }

        25% {
            transform: translate(30px, -30px) scale(1.1);
        }

        50% {
            transform: translate(-20px, 20px) scale(0.9);
        }

        75% {
            transform: translate(20px, 30px) scale(1.05);
        }
    }

    /* Hero Content */
    .hero-content {
        padding: 40px 0;
    }

    .badge-pill {
        display: inline-flex;
        align-items: center;
        padding: 10px 24px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        color: var(--white);
        font-size: 14px;
        font-weight: 500;
        letter-spacing: 0.5px;
        animation: fadeInDown 0.8s ease-out;
    }

    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
        font-weight: 800;
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 1.5rem;
        animation: fadeInUp 0.8s ease-out 0.2s both;
    }

    .hero-subtitle {
        background: linear-gradient(135deg, #00b854 0%, #009543 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 800;
    }

    .hero-description {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
        max-width: 600px;
        animation: fadeInUp 0.8s ease-out 0.4s both;
    }

    /* Hero Stats */
    .hero-stats {
        display: flex;
        gap: 40px;
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--white);
        line-height: 1;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Hero CTA Buttons */
    .hero-cta {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
        animation: fadeInUp 0.8s ease-out 0.8s both;
    }

    .btn-hero-primary {
        display: inline-flex;
        align-items: center;
        padding: 16px 40px;
        background: var(--gradient-accent);
        color: var(--white);
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--transition-base);
        box-shadow: 0 4px 20px rgba(0, 149, 67, 0.3);
        position: relative;
        overflow: hidden;
    }

    .btn-hero-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s;
    }

    .btn-hero-primary:hover::before {
        left: 100%;
    }

    .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(0, 149, 67, 0.4);
    }

    .btn-hero-secondary {
        display: inline-flex;
        align-items: center;
        padding: 16px 40px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all var(--transition-base);
    }

    .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
        color: var(--white);
    }

    /* Hero Visual - Floating Cards */
    .hero-visual {
        position: relative;
        height: 500px;
    }

    .floating-cards {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .float-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 20px;
        padding: 24px;
        transition: all var(--transition-base);
    }

    .float-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    /* Main Card */
    .card-main {
        width: 320px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: float 6s infinite ease-in-out;
    }

    .card-glow {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(0, 149, 67, 0.2) 0%, transparent 70%);
        animation: rotate 10s linear infinite;
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    .card-content {
        position: relative;
        z-index: 1;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient-accent);
        border-radius: 16px;
        margin-bottom: 16px;
        font-size: 24px;
        color: var(--white);
    }

    .card-content h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 8px;
    }

    .card-content p {
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 16px;
    }

    .payslip-preview {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        padding: 16px;
    }

    .preview-line {
        height: 8px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
        margin-bottom: 8px;
    }

    .preview-line.short {
        width: 60%;
    }

    /* Secondary Cards */
    .card-security {
        width: 200px;
        top: 10%;
        right: 10%;
        animation: float 8s infinite ease-in-out 1s;
    }

    .card-mobile {
        width: 180px;
        bottom: 15%;
        left: 5%;
        animation: float 7s infinite ease-in-out 2s;
    }

    .security-icon,
    .mobile-icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient-primary);
        border-radius: 12px;
        margin-bottom: 12px;
        font-size: 20px;
        color: var(--white);
    }

    .float-card span {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--white);
    }

    /* Scroll Indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        animation: fadeIn 1s ease-out 1.5s both;
    }

    .mouse {
        width: 26px;
        height: 40px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 13px;
        position: relative;
        margin: 0 auto 8px;
    }

    .wheel {
        width: 4px;
        height: 8px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 2px;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        animation: scroll 2s infinite;
    }

    @keyframes scroll {
        0% {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        100% {
            opacity: 0;
            transform: translateX(-50%) translateY(16px);
        }
    }

    .arrow span {
        display: block;
        width: 12px;
        height: 12px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.5);
        border-right: 2px solid rgba(255, 255, 255, 0.5);
        transform: rotate(45deg);
        margin: -4px auto;
        animation: arrowMove 2s infinite;
    }

    .arrow span:nth-child(2) {
        animation-delay: -0.2s;
    }

    @keyframes arrowMove {
        0% {
            opacity: 0;
            transform: rotate(45deg) translate(-10px, -10px);
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0;
            transform: rotate(45deg) translate(10px, 10px);
        }
    }

    /* ========== QUICK ACCESS SECTION ========== */
    .quick-access-section {
        padding: 4rem 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .quick-access-card {
        background: white;
        border-radius: 20px;
        padding: 3rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 32, 159, 0.1);
    }

    .icon-badge {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, var(--lesotho-blue) 0%, var(--lesotho-green) 100%);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: white;
        box-shadow: 0 8px 25px rgba(0, 149, 67, 0.3);
    }

    .quick-access-card h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--lesotho-blue);
    }

    .btn-access {
        background: linear-gradient(135deg, var(--lesotho-green) 0%, #00b359 100%);
        color: white;
        border: none;
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 50px;
        box-shadow: 0 8px 25px rgba(0, 149, 67, 0.4);
        transition: all 0.3s ease;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }

    .btn-access:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 149, 67, 0.5);
        color: white;
    }

    /* ========== GETTING STARTED SECTION ========== */
    .getting-started-modern {
        padding: 6rem 0;
        background: white;
        position: relative;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, rgba(0, 32, 159, 0.1) 0%, rgba(0, 149, 67, 0.1) 100%);
        color: var(--lesotho-blue);
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .section-title-modern {
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Timeline Steps */
    .timeline-steps {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
    }

    .timeline-line {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(180deg, var(--lesotho-blue) 0%, var(--lesotho-green) 100%);
        transform: translateX(-50%);
        opacity: 0.2;
    }

    .timeline-step {
        position: relative;
        margin-bottom: 4rem;
    }

    .timeline-step:last-child {
        margin-bottom: 0;
    }

    .step-content {
        display: flex;
        align-items: center;
        gap: 2rem;
        position: relative;
    }

    .step-icon-wrapper {
        position: relative;
        z-index: 2;
        flex-shrink: 0;
    }

    .step-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, var(--lesotho-blue) 0%, var(--lesotho-green) 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: white;
        box-shadow: 0 10px 30px rgba(0, 149, 67, 0.3);
        transition: all 0.3s ease;
    }

    .timeline-step:hover .step-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 15px 40px rgba(0, 149, 67, 0.5);
    }

    .step-number {
        position: absolute;
        top: -10px;
        right: -10px;
        width: 40px;
        height: 40px;
        background: white;
        border: 3px solid var(--lesotho-green);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1rem;
        color: var(--lesotho-blue);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .step-details {
        flex: 1;
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        border-left: 4px solid var(--lesotho-green);
        transition: all 0.3s ease;
    }

    .timeline-step:hover .step-details {
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .step-details h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--lesotho-blue);
        margin-bottom: 0.75rem;
    }

    .step-details p {
        color: var(--text-muted);
        line-height: 1.7;
        margin: 0;
    }

    /* ========== FEATURES SECTION ========== */
    .features-modern {
        padding: 6rem 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .features-showcase {
        display: grid;
        gap: 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .feature-showcase-card {
        background: white;
        border-radius: 20px;
        padding: 3rem;
        display: flex;
        gap: 2.5rem;
        align-items: flex-start;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 32, 159, 0.1);
    }

    .feature-showcase-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    .feature-showcase-icon {
        position: relative;
        width: 100px;
        height: 100px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: white;
        border-radius: 20px;
        background: linear-gradient(135deg, var(--lesotho-blue) 0%, var(--lesotho-green) 100%);
        box-shadow: 0 10px 30px rgba(0, 149, 67, 0.3);
    }

    .icon-bg {
        position: absolute;
        width: 120%;
        height: 120%;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(0, 32, 159, 0.1) 0%, rgba(0, 149, 67, 0.1) 100%);
        z-index: -1;
        filter: blur(20px);
    }

    .feature-showcase-content h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--lesotho-blue);
        margin-bottom: 1rem;
    }

    .feature-showcase-content p {
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

    .feature-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .feature-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        color: var(--text-dark);
    }

    .feature-list i {
        color: var(--lesotho-green);
        font-size: 1.1rem;
    }

    /* ========== STATS SECTION ========== */
    .stats-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, var(--lesotho-blue) 0%, var(--lesotho-blue-light) 50%, var(--lesotho-green) 100%);
        position: relative;
        overflow: hidden;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        position: relative;
        z-index: 2;
    }
    
    
    .stat-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s;
        }

        .stat-card:hover::before {
            left: 100%;
        }

        .stat-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }
     
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            position: relative;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .stat-card:nth-child(1) .stat-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
        }

        .stat-card:nth-child(2) .stat-icon {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            box-shadow: 0 5px 20px rgba(240, 147, 251, 0.4);
        }

        .stat-card:nth-child(3) .stat-icon {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            box-shadow: 0 5px 20px rgba(79, 172, 254, 0.4);
        }

        .stat-card:nth-child(4) .stat-icon {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            color: white;
            box-shadow: 0 5px 20px rgba(67, 233, 123, 0.4);
        }

        .stat-icon i {
            animation: rotate 4s linear infinite;
        }

        @keyframes rotate {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-10deg); }
            75% { transform: rotate(10deg); }
        }

        .stat-value {
            font-size: 48px;
            font-weight: bold;
            margin: 15px 0;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-card:nth-child(2) .stat-value {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-card:nth-child(3) .stat-value {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-card:nth-child(4) .stat-value {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 16px;
            color: #666;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @keyframes countUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .counting {
            animation: countUp 0.5s ease-out;
        }
    /* ========== SUPPORT SECTION - IMPROVED ========== */
    .support-modern {
        padding: 80px 0;
        background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    }

    .support-card {
        background: var(--white);
        border-radius: 24px;
        padding: 48px;
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-color);
        position: relative;
        overflow: hidden;
    }

    .support-card::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(0, 149, 67, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .support-content {
        position: relative;
        z-index: 1;
    }

    .support-icon-badge {
        width: 72px;
        height: 72px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient-accent);
        border-radius: 18px;
        font-size: 32px;
        color: var(--white);
        box-shadow: var(--glow-green);
        flex-shrink: 0;
        margin-bottom: 1.5rem;
    }

    .support-content h2 {
        font-size: 2rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 16px;
    }

    .support-content .lead {
        font-size: 1.125rem;
        color: var(--text-dark);
        margin-bottom: 12px;
        font-weight: 500;
    }

    .support-content p {
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 0;
    }

    .whatsapp-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px 40px;
        background: #25D366;
        color: var(--white);
        border-radius: 50px;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
        transition: all var(--transition-base);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
        white-space: nowrap;
    }

    .whatsapp-btn:hover {
        background: #128C7E;
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-btn img {
        filter: brightness(0) invert(1);
        flex-shrink: 0;
    }


    /* ========== FOOTER ========== */
    .modern-footer {
        background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
        color: white;
        position: relative;
        padding: 4rem 0 2rem;
    }

    .footer-wave {
        position: absolute;
        top: -1px;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
    }

    .footer-wave svg {
        position: relative;
        display: block;
        width: calc(100% + 1.3px);
        height: 60px;
        fill: #f8f9fa;
    }

    .footer-content {
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 2rem;
    }

    .footer-logo {
        max-height: 60px;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
        margin-bottom: 1rem;
    }

    .footer-brand h3 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .footer-divider {
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
        margin: 2rem 0;
    }

    .footer-info {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 3rem;
        margin-bottom: 2rem;
    }

    .footer-info-item {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .footer-info-item i {
        font-size: 2rem;
        color: var(--lesotho-green);
    }

    .footer-info-item strong {
        display: block;
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
        opacity: 0.7;
    }

    .footer-info-item p {
        margin: 0;
        font-size: 1rem;
    }

    .footer-info-item a {
        color: white;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer-info-item a:hover {
        color: var(--lesotho-green);
    }

    .footer-bottom {
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.8;
    }

    .footer-bottom p {
        margin: 0;
        font-size: 0.95rem;
    }
                            .float-card.card-download {
                                position: absolute;
                                background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
                                border-radius: 20px;
                                padding: 2rem 2.5rem;
                                box-shadow:
                                    0 25px 50px rgba(220, 38, 38, 0.4),
                                    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
                                overflow: hidden;
                                animation: pulse-glow 3s ease-in-out infinite;
                                max-width: 500px;
                                width: 100%;
                                height: 400px;

                            }

                            @keyframes pulse-glow {

                                0%,
                                100% {
                                    box-shadow:
                                        0 25px 50px rgba(220, 38, 38, 0.4),
                                        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                                        0 0 30px rgba(220, 38, 38, 0.3);
                                }

                                50% {
                                    box-shadow:
                                        0 30px 60px rgba(220, 38, 38, 0.6),
                                        0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                                        0 0 50px rgba(220, 38, 38, 0.5);
                                }
                            }

                            .card-download::before {
                                content: '';
                                position: relative;
                                top: 100%;
                                left: 0%;
                                width: 200%;
                                height: 20%;
                                background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
                                animation: rotate-gradient 8s linear infinite;
                            }

                            @keyframes rotate-gradient {
                                0% {
                                    transform: rotate(0deg);
                                }

                                100% {
                                    transform: rotate(360deg);
                                }
                            }

                            .card-download::after {
                                content: '';
                                position: absolute;
                                top: 0;
                                left: 0;
                                right: 0;
                                bottom: 0;
                                background:
                                    linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
                                background-size: 200% 200%;
                                animation: shimmer 3s ease-in-out infinite;
                            }

                            @keyframes shimmer {

                                0%,
                                100% {
                                    background-position: -100% -100%;
                                }

                                50% {
                                    background-position: 200% 200%;
                                }
                            }

                            .notice-content {
                                position: relative;
                                z-index: 2;
                                text-align: center;
                            }

                            .notice-icon {
                                width: 70px;
                                height: 70px;
                                margin: 0 auto 1.5rem;
                                background: rgba(255, 255, 255, 0.2);
                                backdrop-filter: blur(10px);
                                border-radius: 50%;
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                font-size: 2rem;
                                color: #fff;
                                animation: bounce-icon 2s ease-in-out infinite;
                                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                            }

                            @keyframes bounce-icon {

                                0%,
                                100% {
                                    transform: translateY(0);
                                }

                                50% {
                                    transform: translateY(-10px);
                                }
                            }

                            .notice-text {
                                color: #fff;
                                font-size: 1.125rem;
                                font-weight: 700;
                                letter-spacing: 0.5px;
                                text-transform: uppercase;
                                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
                                line-height: 1.6;
                                margin: 0;
                            }

                            .notice-subtext {
                                color: rgba(255, 255, 255, 0.9);
                                font-size: 0.875rem;
                                font-weight: 500;
                                margin-top: 1rem;
                                text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
                            }

                            .pulse-ring {
                                position: absolute;
                                top: 50%;
                                left: 50%;
                                transform: translate(-50%, -50%);
                                width: 100px;
                                height: 100px;
                                border: 3px solid rgba(255, 255, 255, 0.5);
                                border-radius: 50%;
                                animation: pulse-ring 2s ease-out infinite;
                                pointer-events: none;
                            }

                            @keyframes pulse-ring {
                                0% {
                                    width: 100px;
                                    height: 100px;
                                    opacity: 1;
                                }

                                100% {
                                    width: 200px;
                                    height: 200px;
                                    opacity: 0;
                                }
                            }

                            .sparkle {
                                position: absolute;
                                width: 4px;
                                height: 4px;
                                background: #fff;
                                border-radius: 50%;
                                animation: sparkle 2s ease-in-out infinite;
                                pointer-events: none;
                            }

                            .sparkle:nth-child(1) {
                                top: 20%;
                                left: 15%;
                                animation-delay: 0s;
                            }

                            .sparkle:nth-child(2) {
                                top: 30%;
                                right: 20%;
                                animation-delay: 0.5s;
                            }

                            .sparkle:nth-child(3) {
                                bottom: 25%;
                                left: 25%;
                                animation-delay: 1s;
                            }

                            .sparkle:nth-child(4) {
                                bottom: 30%;
                                right: 15%;
                                animation-delay: 1.5s;
                            }

                            @keyframes sparkle {

                                0%,
                                100% {
                                    opacity: 0;
                                    transform: scale(0);
                                }

                                50% {
                                    opacity: 1;
                                    transform: scale(1);
                                }
                            }

                            .info-badge {
                                display: inline-flex;
                                align-items: center;
                                gap: 0.5rem;
                                padding: 0.5rem 1rem;
                                background: rgba(255, 255, 255, 0.15);
                                backdrop-filter: blur(10px);
                                border: 1px solid rgba(255, 255, 255, 0.2);
                                border-radius: 50px;
                                color: #fff;
                                font-size: 0.8rem;
                                font-weight: 600;
                                margin-top: 1.5rem;
                            }

                            .info-badge i {
                                animation: rotate 4s linear infinite;
                            }

                            @keyframes rotate {
                                from {
                                    transform: rotate(0deg);
                                }

                                to {
                                    transform: rotate(360deg);
                                }
                            }
    /* ========== RESPONSIVE STYLES ========== */
    @media (max-width: 991.98px) {
        .hero {
            padding: 6rem 0 4rem;
        }

        .hero-title {
            font-size: 2.2rem;
        }

        .hero-subtitle {
            font-size: 1.8rem;
        }

        .hero-visual {
            height: 50px;
            margin-top: 3rem;
        }

        .card-main {
            width: 280px;
            height: 320px;
        }

        .section-title-modern {
            font-size: 2.2rem;
        }

        .feature-showcase-card {
            flex-direction: column;
            text-align: center;
        }

        .feature-showcase-icon {
            margin: 0 auto;
        }

        .timeline-line {
            display: none;
        }

        .step-content {
            flex-direction: column;
            text-align: center;
        }

        .step-details {
            border-left: none;
            border-top: 4px solid var(--lesotho-green);
        }

        .footer-info {
            flex-direction: column;
            gap: 2rem;
        }
    }

    @media (max-width: 767.98px) {
        .hero {
            padding: 5rem 0 3rem;
        }

        .hero-title {
            font-size: 1.8rem;
        }

        .hero-subtitle {
            font-size: 1.5rem;
        }

        .hero-stats {
            gap: 1.5rem;
        }

        .hero-cta {
            flex-direction: column;
        }

        .btn-hero-primary,
        .btn-hero-secondary {
            width: 100%;
            justify-content: center;
        }

        .hero-visual {
            height: 20px;
        }

        .card-main {
            width: 200px;
            height: 320px;
        }

        .card-security,
        .card-mobile,
        .card-download {
            width: 120px;
            min-height: 65px;
            padding: 0.7rem;
            gap: 0.5rem;
        }

        .float-card span {
            font-size: 0.65rem;
            line-height: 1.2;
        }

        .security-icon,
        .mobile-icon,
        .download-icon {
            width: 32px;
            height: 32px;
            font-size: 0.95rem;
        }

        .card-security {
            top: 5%;
            right: 2%;
        }

        .card-mobile {
            bottom: 25%;
            left: 2%;
        }

        .card-download {
            bottom: 5%;
            right: 5%;
        }

        .quick-access-card {
            padding: 2rem;
        }

        .section-title-modern {
            font-size: 1.8rem;
        }

        .section-subtitle {
            font-size: 1rem;
        }

        .step-icon {
            width: 80px;
            height: 80px;
            font-size: 2rem;
        }

        .step-number {
            width: 35px;
            height: 35px;
            font-size: 0.9rem;
        }

        .stat-card .stat-value {
            font-size: 2.5rem;
        }


        .background-video {
            display: none;
        }

        .scroll-indicator {
            display: none;
        }
    }

    @media (max-width: 575.98px) {
        .hero-stats {
            gap: 1rem;
        }

        .stat-number {
            font-size: 2rem;
        }

        .quick-access-card h2 {
            font-size: 1.5rem;
        }

        .btn-access {
            width: 100%;
            justify-content: center;
        }

        .feature-showcase-card {
            padding: 2rem;
        }

        .footer-info-item {
            flex-direction: column;
            text-align: center;
        }
    }

    
    /* ========== MOBILE RESPONSIVE FIXES ========== */
    @media (max-width: 991.98px) {
        .support-modern {
            padding: 60px 0;
        }

        .support-card {
            padding: 36px 28px;
        }

        .support-icon-badge {
            width: 64px;
            height: 64px;
            font-size: 28px;
        }

        .support-content h2 {
            font-size: 1.75rem;
        }

        .support-content .lead {
            font-size: 1rem;
        }

        .whatsapp-btn {
            padding: 14px 32px;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 767.98px) {
        .support-modern {
            padding: 50px 0;
        }

        .support-card {
            padding: 32px 24px;
            border-radius: 20px;
        }

        /* Center align everything on mobile */
        .support-card .row {
            text-align: center;
        }

        .support-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .support-icon-badge {
            width: 60px;
            height: 60px;
            font-size: 26px;
            margin-bottom: 1.25rem;
        }

        .support-content h2 {
            font-size: 1.5rem;
            margin-bottom: 14px;
        }

        .support-content .lead {
            font-size: 0.95rem;
            margin-bottom: 10px;
        }

        .support-content p {
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        /* Make button full width and centered on mobile */
        .support-card .col-lg-4 {
            text-align: center !important;
        }

        .whatsapp-btn {
            width: 100%;
            max-width: 320px;
            padding: 14px 24px;
            font-size: 0.9rem;
            margin: 0 auto;
        }

        .whatsapp-btn img {
            width: 22px;
            height: 22px;
        }
    }

    @media (max-width: 575.98px) {
        .support-modern {
            padding: 40px 0;
        }

        .support-card {
            padding: 28px 20px;
            border-radius: 16px;
        }

        .support-icon-badge {
            width: 56px;
            height: 56px;
            font-size: 24px;
            margin-bottom: 1rem;
        }

        .support-content h2 {
            font-size: 1.35rem;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .support-content .lead {
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .support-content p {
            font-size: 0.85rem;
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }

        .whatsapp-btn {
            width: 100%;
            max-width: 100%;
            padding: 13px 20px;
            font-size: 0.875rem;
            gap: 10px;
        }

        .whatsapp-btn img {
            width: 20px;
            height: 20px;
        }

        .whatsapp-btn i {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 400px) {
        .support-card {
            padding: 24px 16px;
        }

        .support-icon-badge {
            width: 52px;
            height: 52px;
            font-size: 22px;
        }

        .support-content h2 {
            font-size: 1.25rem;
        }

        .support-content .lead {
            font-size: 0.85rem;
        }

        .support-content p {
            font-size: 0.8rem;
        }

        .whatsapp-btn {
            padding: 12px 18px;
            font-size: 0.85rem;
            gap: 8px;
        }
    }

    /* Fix for spacing and margins */
    .support-card .mb-4.mb-lg-0 {
        margin-bottom: 1.5rem !important;
    }

    @media (min-width: 992px) {
        .support-card .mb-4.mb-lg-0 {
            margin-bottom: 0 !important;
        }
    }

    /* Ensure proper text alignment at different breakpoints */
    @media (min-width: 768px) and (max-width: 991.98px) {
        .support-card {
            text-align: center;
        }

        .support-content {
            align-items: center;
        }

        .support-icon-badge {
            margin-left: auto;
            margin-right: auto;
        }

        .support-card .col-lg-4 {
            text-align: center !important;
            margin-top: 1.5rem;
        }

        .whatsapp-btn {
            margin: 0 auto;
        }
    }
