        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #7C4DFF;
            --primary-dark: #6200EA;
            --secondary-color: #3F51B5;
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
            --text-muted: #718096;
            --bg-light: #f7fafc;
            --bg-gradient: linear-gradient(135deg, #ffffff 0%, #f8f5ff 50%, #f0f4ff 100%);
            --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --border-radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-gradient);
            min-height: 100vh;
        }

/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 6px;              /* thin width */
}

::-webkit-scrollbar-track {
  background: #f1f1f1;      /* light background */
}

::-webkit-scrollbar-thumb {
  background: #404BAD;      /* MharoKhujner Blue */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #404BAD;      /* darker blue on hover */
}

/* For Firefox */
* {
  scrollbar-width: thin;       /* makes scrollbar thin */
  scrollbar-color: #404BAD #f1f1f1; /* thumb color | track color */
}

        
        /* Navbar Styles */
        .navbar {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: var(--shadow-soft);
            z-index: 1000;
            transition: var(--transition);
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-container img {
            height: 40px;
            width: auto;
            object-fit: contain;
            transition: var(--transition);
        }

        .logo-container img:hover {
            transform: scale(1.05);
        }

        .brand-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
            transition: var(--transition);
        }

        .brand-name:hover {
            color: var(--primary-color);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-color);
            background: rgba(124, 77, 255, 0.05);
        }

        .nav-links a.active {
            color: var(--primary-color);
            font-weight: 600;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background: var(--primary-color);
            border-radius: 1px;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 12px 24px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            box-shadow: var(--shadow-soft);
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-primary);
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .mobile-menu-toggle:hover {
            background: rgba(0, 0, 0, 0.05);
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: var(--shadow-medium);
            padding: 1rem;
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mobile-nav-links a {
            display: block;
            padding: 12px 16px;
            color: var(--text-secondary);
            text-decoration: none;
            border-radius: 8px;
            transition: var(--transition);
            font-weight: 500;
        }

        .mobile-nav-links a:hover,
        .mobile-nav-links a.active {
            background: rgba(124, 77, 255, 0.1);
            color: var(--primary-color);
        }

        .mobile-cta {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* Hero Section Styles */
        .hero {
            padding: 4rem 1.5rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-content {
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.7;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: var(--shadow-soft);
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-large);
        }

        .btn-secondary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            background: transparent;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
        }

        .trust-indicators {
            padding-top: 2.5rem;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .trust-label {
            font-size: 0.875rem;
            color: var(--text-muted);
            margin-bottom: 1rem;
        }

        .stats-container {
            display: flex;
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Hero Illustration */
        .hero-illustration {
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.3s both;
        }

        .illustration-card {
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-large);
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
            height: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .illustration-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(124, 77, 255, 0.1) 0%, rgba(63, 81, 181, 0.05) 100%);
        }

        .main-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-medium);
            position: relative;
            z-index: 2;
            animation: pulse 2s infinite;
        }

        .main-icon i {
            font-size: 2rem;
            color: white;
        }

        .partnership-visual {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .business-box,
        .community-box {
            width: 60px;
            height: 45px;
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-soft);
        }

        .business-box {
            background: linear-gradient(135deg, rgba(124, 77, 255, 0.2) 0%, rgba(63, 81, 181, 0.1) 100%);
        }

        .community-box {
            background: linear-gradient(135deg, rgba(63, 81, 181, 0.2) 0%, rgba(124, 77, 255, 0.1) 100%);
        }

        .plus-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            font-weight: bold;
        }

        .partnership-text {
            color: var(--text-secondary);
            font-weight: 500;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
        }

        .floating-1 {
            top: 20px;
            left: 20px;
            width: 30px;
            height: 30px;
            background: rgba(124, 77, 255, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        .floating-2 {
            top: 40px;
            right: 30px;
            width: 24px;
            height: 24px;
            background: rgba(63, 81, 181, 0.3);
            animation: float 3s ease-in-out infinite 1s;
        }

        .floating-3 {
            bottom: 30px;
            left: 40px;
            width: 20px;
            height: 20px;
            background: rgba(124, 77, 255, 0.4);
            animation: float 3s ease-in-out infinite 2s;
        }

        /* Background Decorations */
        .bg-decoration {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            z-index: -1;
        }

        .decoration-1 {
            top: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, rgba(124, 77, 255, 0.3) 0%, rgba(63, 81, 181, 0.2) 100%);
        }

        .decoration-2 {
            bottom: -40px;
            left: -40px;
            width: 160px;
            height: 160px;
            background: linear-gradient(135deg, rgba(63, 81, 181, 0.2) 0%, rgba(124, 77, 255, 0.1) 100%);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                gap: 2rem;
            }
            
            .hero-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links,
            .cta-button {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .stats-container {
                justify-content: center;
            }

            .illustration-card {
                height: 320px;
                padding: 2rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .hero {
                padding: 2rem 1rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .stats-container {
                gap: 1rem;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Focus styles for accessibility */
        .cta-button:focus,
        .btn-primary:focus,
        .btn-secondary:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

               .steps-section {
            background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
            padding: 80px 20px;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .steps-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1F2937;
            margin-bottom: 16px;
            letter-spacing: -0.025em;
        }

        .steps-subtitle {
            font-size: 1.125rem;
            color: #6B7280;
            font-weight: 400;
        }

        .steps-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            position: relative;
        }

        /* Progress line connecting the circles */
        .progress-line {
            position: absolute;
            top: 40px;
            left: 50px;
            right: 50px;
            height: 2px;
            background: #E5E7EB;
            z-index: 1;
        }

        .progress-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, #7C4DFF 0%, #7C4DFF 100%);
            border-radius: 2px;
        }

        .step {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        /* Round circle with number */
        .step-circle {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #7C4DFF 0%, #9C27B0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            font-weight: 700;
            color: white;
            margin-bottom: 24px;
            box-shadow: 0 8px 25px rgba(124, 77, 255, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .step-circle:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(124, 77, 255, 0.4);
        }

        /* Content card below circle */
        .step-content {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #E5E7EB;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 300px;
        }

        .step-content:hover {
            box-shadow: 0 8px 30px rgba(124, 77, 255, 0.15);
            transform: translateY(-2px);
            border-color: rgba(124, 77, 255, 0.2);
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1F2937;
            margin-bottom: 12px;
        }

        .step-description {
            font-size: 0.95rem;
            color: #6B7280;
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .step-features {
            padding-top: 16px;
            border-top: 1px solid #F3F4F6;
        }

        .feature-item {
            display: flex;
            align-items: center;
            font-size: 0.875rem;
            color: #6B7280;
            margin-bottom: 8px;
        }

        .feature-item:last-child {
            margin-bottom: 0;
        }

        .feature-item::before {
            content: '✓';
            color: #7C4DFF;
            font-weight: 600;
            margin-right: 8px;
            font-size: 0.875rem;
        }

        /* Active state */
        .step.active .step-circle {
            background: linear-gradient(135deg, #059669 0%, #10B981 100%);
            transform: scale(1.05);
        }

        .step.active .step-content {
            border-color: #10B981;
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
        }

        /* Animation */
        .step {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .step:nth-child(1) { animation-delay: 0.1s; }
        .step:nth-child(2) { animation-delay: 0.3s; }
        .step:nth-child(3) { animation-delay: 0.5s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .steps-section {
                padding: 60px 16px;
                min-height: auto;
            }

            .steps-title {
                font-size: 2rem;
            }

            .steps-subtitle {
                font-size: 1rem;
            }

            .section-header {
                margin-bottom: 40px;
            }

            .steps-container {
                flex-direction: column;
                gap: 40px;
                align-items: center;
            }

            .progress-line {
                display: none;
            }

            .step {
                width: 100%;
                max-width: 350px;
            }

            .step-circle {
                width: 70px;
                height: 70px;
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .step-content {
                max-width: 100%;
                padding: 20px;
            }

            .step-title {
                font-size: 1.125rem;
            }

            .step-description {
                font-size: 0.9rem;
            }

            /* Vertical connector lines on mobile */
            .step:not(:last-child)::after {
                content: '';
                position: absolute;
                bottom: -20px;
                left: 50%;
                transform: translateX(-50%);
                width: 2px;
                height: 20px;
                background: linear-gradient(180deg, #7C4DFF, transparent);
            }
        }

        /* Small mobile */
        @media (max-width: 480px) {
            .steps-section {
                padding: 50px 12px;
            }

            .steps-title {
                font-size: 1.75rem;
            }

            .step-circle {
                width: 60px;
                height: 60px;
                font-size: 1.25rem;
            }

            .step-content {
                padding: 18px;
            }

            .step-title {
                font-size: 1rem;
            }

            .step-description {
                font-size: 0.85rem;
            }

            .feature-item {
                font-size: 0.8rem;
            }
        }

        /* Tablet */
        @media (max-width: 1024px) and (min-width: 769px) {
            .steps-container {
                gap: 30px;
                padding: 0 20px;
            }

            .step-content {
                max-width: 280px;
                padding: 20px;
            }

            .step-circle {
                width: 75px;
                height: 75px;
                font-size: 1.6rem;
            }

            .step-title {
                font-size: 1.125rem;
            }

            .step-description {
                font-size: 0.9rem;
            }
        }

        /* Focus states for accessibility */
        .step-circle:focus {
            outline: 3px solid #7C4DFF;
            outline-offset: 3px;
        }

        .step-content:focus {
            outline: 2px solid #7C4DFF;
            outline-offset: 2px;
        }