:root {
			--primary-navy: #0a1628;
			--secondary-navy: #1a2942;
			--accent-gold: #fbbf24;
			--accent-gold-hover: #f59e0b;
			--text-light: #f8fafc;
			--text-muted: #94a3b8;
		}

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

		body {
			font-family: 'Inter', sans-serif;
			color: var(--text-light);
			overflow-x: hidden;
		}

		/* Header Styles */
		.navbar {
			background: var(--primary-navy);
			padding: 1rem 0;
			box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
			transition: all 0.3s ease;
		}

		.navbar.scrolled {
			padding: 0.5rem 0;
			box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
		}

		.navbar-brand {
			font-size: 1.5rem;
			font-weight: 700;
			color: var(--text-light) !important;
			display: flex;
			align-items: center;
			gap: 0.5rem;
		}

		.brand-icon {
			color: var(--accent-gold);
			font-size: 1.8rem;
		}

		.navbar-nav .nav-link {
			color: var(--text-light) !important;
			margin: 0 0.5rem;
			padding: 0.5rem 1rem !important;
			font-weight: 500;
			transition: all 0.3s ease;
			position: relative;
		}

		.navbar-nav .nav-link:hover {
			color: var(--accent-gold) !important;
		}

		.navbar-nav .nav-link::after {
			content: '';
			position: absolute;
			width: 0;
			height: 2px;
			bottom: 0;
			left: 50%;
			background: var(--accent-gold);
			transition: all 0.3s ease;
			transform: translateX(-50%);
		}

		.navbar-nav .nav-link:hover::after {
			width: 80%;
		}

		.btn-welcome {
			background: var(--accent-gold);
			color: var(--primary-navy);
			padding: 0.6rem 1.5rem;
			border-radius: 5px;
			font-weight: 600;
			border: none;
			transition: all 0.3s ease;
			box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
		}

		.btn-welcome:hover {
			background: var(--accent-gold-hover);
			transform: translateY(-2px);
			box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
		}

		.btn-signin {
			color: var(--text-light);
			padding: 0.6rem 1.5rem;
			border-radius: 50px;
			font-weight: 600;
			border: 2px solid var(--text-light);
			background: transparent;
			transition: all 0.3s ease;
			margin-left: 0.5rem;
		}

		.btn-signin:hover {
			background: var(--text-light);
			color: var(--primary-navy);
		}

		        .home-hero-section {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background-color: #1a1a2e;
        }

        .home-hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .home-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(26, 26, 46, 0.95) 0%, rgba(26, 26, 46, 0.85) 50%, rgba(26, 26, 46, 0.75) 100%);
            z-index: 2;
        }

        .home-hero-content {
            position: relative;
            z-index: 3;
            color: white;
            padding: 80px 0;
        }

        .home-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: rgba(255, 149, 0, 0.15);
            color: #ffc107;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 193, 7, 0.3);
        }

        .home-badge i {
            font-size: 16px;
        }

        .home-hero-title {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        }

        .home-highlight {
            color: #ffc107;
        }

        .home-hero-description {
            font-size: 1.25rem;
            line-height: 1.7;
            color: #e0e0e0;
            margin-bottom: 40px;
            max-width: 600px;
        }

        .home-cta-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .home-btn-primary {
            background-color: #ffc107;
            color: #1a1a1a;
            border: none;
            padding: 16px 36px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
            text-decoration: none;
        }

        .home-btn-primary:hover {
            background-color: #ffb300;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 193, 7, 0.5);
            color: #1a1a1a;
        }

        .home-btn-secondary {
            background-color: white;
            color: #ffb300;
            border: 2px solid #ffb300;
            padding: 16px 36px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
        }

        .home-btn-secondary:hover {
            background-color: #ffb300;
            color: white;
        }

        .home-trust-badges {
            display: flex;
            gap: 30px;
            align-items: center;
            flex-wrap: wrap;
        }

        .home-trust-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: #e0e0e0;
        }

        .home-trust-item i {
            color: #ffc107;
            font-size: 18px;
        }

        .home-winner-cards {
            position: relative;
            z-index: 3;
        }

        .home-winner-card {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .home-winner-card:hover {
            transform: translateX(-10px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .home-winner-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .home-winner-icon {
            width: 48px;
            height: 48px;
            background-color: #ffc107;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #1a1a1a;
            font-size: 24px;
            flex-shrink: 0;
        }

        .home-winner-info {
            flex: 1;
        }

        .home-winner-label {
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 4px;
        }

        .home-winner-prize {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1a1a1a;
        }

        .home-score-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid #e5e7eb;
        }

        .home-score-label {
            font-size: 0.9rem;
            color: #6c757d;
        }

        .home-score-value {
            font-size: 1rem;
            font-weight: 700;
            color: #ffc107;
        }

        .home-score-bar {
            width: 100%;
            height: 8px;
            background-color: #f0f0f0;
            border-radius: 4px;
            overflow: hidden;
            margin-top: 8px;
        }

        .home-score-fill {
            height: 100%;
            background: linear-gradient(to right, #ffc107, #ff9500);
            border-radius: 4px;
            transition: width 0.3s ease;
        }

        /* Responsive adjustments */
        @media (max-width: 1200px) {
            .home-hero-title {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 992px) {
            .home-hero-title {
                font-size: 3rem;
            }

            .home-winner-cards {
                margin-top: 60px;
            }
        }

        @media (max-width: 768px) {
            .home-hero-section {
                min-height: auto;
            }

            .home-hero-content {
                padding: 60px 0;
            }

            .home-hero-title {
                font-size: 2.5rem;
            }

            .home-hero-description {
                font-size: 1.1rem;
            }

            .home-cta-buttons {
                flex-direction: column;
            }

            .home-btn-primary,
            .home-btn-secondary {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            .home-winner-card {
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .home-hero-title {
                font-size: 2rem;
            }

            .home-hero-description {
                font-size: 1rem;
            }

            .home-btn-primary,
            .home-btn-secondary {
                font-size: 1rem;
                padding: 14px 28px;
            }

            .home-trust-badges {
                gap: 20px;
            }

            .home-trust-item {
                font-size: 0.85rem;
            }
        }

		/* Hero Section */
		.hero-section {
			background: url(../images/home_bg.jpg) center/cover no-repeat;
			min-height: 90vh;
			display: flex;
			align-items: center;
			position: relative;
			overflow: hidden;
			padding: 4rem 0;
		}

		.hero-section-2 {
			background: url(../images/home_bg3.jpg) center/cover no-repeat;
			min-height: 90vh;
			display: flex;
			align-items: center;
			justify-content: right;
			width: 100%;
			position: relative;
			overflow: hidden;
			padding: 4rem 0;
		}

		/* Dark overlay for readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 41, 66, 0.85) 100%);
    z-index: 1;
}

.hero-section-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 41, 66, 0.85) 100%);
    z-index: 1;
}

		.hero-section::after {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(251,191,36,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
			opacity: 0.3;
			z-index: 1;
		}

		.hero-section-2::after {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(251,191,36,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
			opacity: 0.3;
			z-index: 1;
		}

		.hero-content {
			position: relative;
			z-index: 2;
		}
		.hero-content-2 {
			position: relative;
			z-index: 2;
			display: flex;
			flex-direction: column;
			align-items: end;
		}

		.badge-notice {
			background: rgba(251, 191, 36, 0.15);
			color: var(--accent-gold);
			padding: 0.5rem 1.2rem;
			border-radius: 50px;
			display: inline-flex;
			align-items: center;
			gap: 0.5rem;
			font-size: 0.9rem;
			font-weight: 500;
			margin-bottom: 1.5rem;
			animation: fadeInDown 0.8s ease;
		}

		.hero-title {
			font-size: 3.5rem;
			font-weight: 800;
			line-height: 1.2;
			margin-bottom: 1.5rem;
			animation: fadeInUp 0.8s ease 0.2s backwards;
		}

		.hero-title .highlight {
			color: var(--accent-gold);
			position: relative;
			display: inline-block;
		}

		.hero-subtitle {
			font-size: 1.2rem;
			color: var(--text-muted);
			margin-bottom: 2rem;
			line-height: 1.6;
			animation: fadeInUp 0.8s ease 0.4s backwards;
		}

		.hero-stats {
			display: flex;
			gap: 2rem;
			margin-bottom: 2.5rem;
			animation: fadeInUp 0.8s ease 0.6s backwards;
		}

		.stat-item {
			display: flex;
			align-items: center;
			gap: 0.5rem;
		}

		.stat-item i {
			color: var(--accent-gold);
			font-size: 1.2rem;
		}

		.stat-item span {
			font-weight: 600;
		}

		.hero-buttons {
			display: flex;
			gap: 1rem;
			flex-wrap: wrap;
			animation: fadeInUp 0.8s ease 0.8s backwards;
		}

		.btn-play {
			background: var(--accent-gold);
			color: var(--primary-navy);
			padding: 1rem 2.5rem;
			border-radius: 50px;
			font-weight: 700;
			font-size: 1.1rem;
			border: none;
			transition: all 0.3s ease;
			box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
		}

		.btn-play:hover {
			background: var(--accent-gold-hover);
			transform: translateY(-3px);
			box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
		}

		.btn-learn {
			background: transparent;
			color: var(--text-light);
			padding: 1rem 2.5rem;
			border-radius: 50px;
			font-weight: 600;
			font-size: 1.1rem;
			border: 2px solid var(--text-light);
			transition: all 0.3s ease;
		}

		.btn-learn:hover {
			background: var(--text-light);
			color: var(--primary-navy);
			transform: translateY(-3px);
		}

		/* Quiz Cards Preview */
		.quiz-cards {
			position: relative;
			animation: fadeInRight 1s ease 0.4s backwards;
			z-index: 2;
		}

		.quiz-card {
			background: rgba(255, 255, 255, 0.98);
			border-radius: 20px;
			padding: 1.8rem;
			margin-bottom: 1.5rem;
			box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
			transition: all 0.3s ease;
			cursor: pointer;
		}

		.quiz-card:hover {
			transform: translateX(-10px);
			box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
		}

		.quiz-card-header {
			display: flex;
			align-items: center;
			gap: 1rem;
			margin-bottom: 1rem;
		}

		.quiz-icon {
			width: 50px;
			height: 50px;
			background: var(--accent-gold);
			border-radius: 12px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 1.5rem;
		}

		.quiz-card-title {
			color: var(--primary-navy);
			font-weight: 700;
			font-size: 1.1rem;
			margin: 0;
		}

		.quiz-card-description {
			color: #64748b;
			font-size: 0.9rem;
			margin-bottom: 1rem;
		}

		.quiz-card-footer {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding-top: 1rem;
			border-top: 1px solid #e2e8f0;
		}

		.quiz-prize {
			color: var(--primary-navy);
			font-weight: 700;
			font-size: 1rem;
		}

		.quiz-participants {
			color: #64748b;
			font-size: 0.85rem;
			display: flex;
			align-items: center;
			gap: 0.3rem;
		}

		/* Animations */
		@keyframes fadeInDown {
			from {
				opacity: 0;
				transform: translateY(-30px);
			}

			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		@keyframes fadeInUp {
			from {
				opacity: 0;
				transform: translateY(30px);
			}

			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		@keyframes fadeInRight {
			from {
				opacity: 0;
				transform: translateX(50px);
			}

			to {
				opacity: 1;
				transform: translateX(0);
			}
		}

		/* Responsive */
		@media (max-width: 768px) {
			.hero-title {
				font-size: 2.5rem;
			}

			.hero-subtitle {
				font-size: 1rem;
			}

			.hero-stats {
				flex-direction: column;
				gap: 1rem;
			}

			.hero-buttons {
				flex-direction: column;
			}

			.btn-play,
			.btn-learn {
				width: 100%;
				text-align: center;
			}

			.quiz-cards {
				margin-top: 3rem;
			}
		}

		/* Active Competitions Section */
		.competitions-section {
			background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
			padding: 6rem 0;
			position: relative;

		}




		.section-header {
			display: flex;
			justify-content: space-between;
			align-items: flex-end;
			margin-bottom: 3rem;
			flex-wrap: wrap;
			gap: 2rem;
		}

		.section-badge {
			background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
			color: white;
			padding: 0.4rem 1rem;
			border-radius: 50px;
			display: inline-flex;
			align-items: center;
			gap: 0.5rem;
			font-size: 0.85rem;
			font-weight: 600;
			margin-bottom: 1rem;
			z-index: 2;
		}

		.section-title {
			color: var(--primary-navy);
			font-size: 2.5rem;
			font-weight: 800;
			margin-bottom: 0.5rem;
		}

		.section-subtitle {
			color: #64748b;
			font-size: 1.1rem;
			margin: 0;
		}

		.view-all-link {
			color: #fbbf24;
			font-weight: 600;
			text-decoration: none;
			display: flex;
			align-items: center;
			transition: all 0.3s ease;
			padding: 0.8rem 1.5rem;
			/* border: 2px solid var(--primary-navy);
			border-radius: 50px; */
		}

		.view-all-link:hover {
			/* background: var(--primary-navy); */
			color: white;
			transform: translateX(5px);
		}

		/* Competition Cards */



		.competition-badge {
			position: absolute;
			top: 20px;
			right: 20px;
			padding: 0.4rem 1rem;
			border-radius: 50px;
			font-size: 0.75rem;
			font-weight: 700;
			z-index: 10;
			text-transform: uppercase;
			letter-spacing: 0.5px;
		}

		.competition-badge.hot {
			background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
			color: white;
		}

		.competition-badge.new {
			background: linear-gradient(135deg, #10b981 0%, #059669 100%);
			color: white;
		}


		.contest-card {
            max-width: 450px;
            margin: 0 auto;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            background: white;
        }

		.contest-card:hover {
			transform: translateY(-10px);
			box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
		}

        .card-image-container {
            position: relative;
            height: 220px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            overflow: hidden;
        }

        .card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .rent-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background-color: #ff9500;
            color: white;
            padding: 6px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
        }

        .prize-text {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: white;
        }

        .prize-text .win-label {
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 4px;
        }

        .prize-text .prize-amount {
            font-size: 42px;
            font-weight: 700;
            line-height: 1;
            color: #ff9500;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .card-content {
            padding: 24px;
        }

        .contest-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
            font-size: 14px;
        }

        .info-item i {
            font-size: 16px;
        }

        .entry-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid #e5e5e5;
        }

        .entry-fee {
            display: flex;
            flex-direction: column;
        }

        .entry-fee-label {
            font-size: 12px;
            color: #888;
            margin-bottom: 4px;
        }

        .entry-fee-amount {
            font-size: 24px;
            font-weight: 700;
            color: #ff9500;
        }

        .enter-btn {
            background-color: #ff9500;
            color: white;
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .enter-btn:hover {
            background-color: #e68600;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
        }

        .enter-btn i {
            font-size: 18px;
        }

		@keyframes pulse {

			0%,
			100% {
				opacity: 1;
			}

			50% {
				opacity: 0.6;
			}
		}

		/* Responsive for Competitions */
		@media (max-width: 768px) {
			.section-header {
				flex-direction: column;
				align-items: flex-start;
			}

			.section-title {
				font-size: 2rem;
			}

			.view-all-link {
				width: 100%;
				justify-content: center;
			}
		}

		/* How It Works Section */
		        .how-it-works-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .section-badge {
            display: inline-block;
            background-color: #fff3cd;
            color: #ffffff;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 60px;
        }

        .steps-container {
            position: relative;
            margin-bottom: 50px;
        }

        .step-card {
            background: white;
            border-radius: 16px;
            padding: 40px 30px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            height: 100%;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .step-number {
            position: absolute;
            top: -15px;
            right: 30px;
            background-color: #ff9500;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            box-shadow: 0 4px 12px rgba(255, 149, 0, 0.3);
        }

        .step-icon {
            width: 70px;
            height: 70px;
            background-color: #1a1a2e;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            color: #ff9500;
            font-size: 32px;
        }

        .step-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .step-description {
            color: #6c757d;
            line-height: 1.6;
            font-size: 1rem;
        }

        .connector-line {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 80%;
            height: 2px;
            background: linear-gradient(to right, #ff9500 0%, #ffc107 100%);
            transform: translateY(-50%);
            z-index: 0;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ff9500;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .view-all-btn:hover {
            color: #e68600;
            gap: 12px;
        }

        .view-all-btn i {
            font-size: 20px;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.5rem;
            }

            .connector-line {
                display: none;
            }

            .step-card {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .how-it-works-section {
                padding: 60px 0;
            }

            .step-number {
                width: 45px;
                height: 45px;
                font-size: 16px;
            }
        }

		.section-badge-center {
			background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
			color: white;
			padding: 0.5rem 1.2rem;
			border-radius: 50px;
			display: inline-flex;
			align-items: center;
			gap: 0.5rem;
			font-size: 0.9rem;
			font-weight: 600;
			margin-bottom: 1rem;
		}

		.section-title-center {
			color: var(--primary-navy);
			font-size: 2.8rem;
			font-weight: 800;
			margin-bottom: 1rem;
		}

		.section-subtitle-center {
			color: #64748b;
			font-size: 1.1rem;
			max-width: 600px;
			margin: 0 auto;
			line-height: 1.6;
		}





		.btn-get-started {
			background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
			color: var(--primary-navy);
			padding: 1.2rem 3rem;
			border: none;
			border-radius: 50px;
			font-weight: 700;
			font-size: 1.1rem;
			transition: all 0.3s ease;
			box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
			cursor: pointer;
		}

		.btn-get-started:hover {
			transform: translateY(-3px);
			box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
		}

		/* Responsive for How It Works */
		@media (max-width: 768px) {
			.section-title-center {
				font-size: 2rem;
			}

			.section-subtitle-center {
				font-size: 1rem;
			}

			.step-card {
				margin-bottom: 2rem;
			}
		}

		/* About/Stats Section */
		.about-stats-section {
			background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
			padding: 6rem 0;
			position: relative;
			overflow: hidden;
		}

		.about-stats-section::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(251,191,36,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
			opacity: 0.3;
		}

		.about-content {
			position: relative;
			z-index: 2;
		}

		.about-badge {
			background: rgba(251, 191, 36, 0.15);
			color: var(--accent-gold);
			padding: 0.5rem 1.2rem;
			border-radius: 50px;
			display: inline-flex;
			align-items: center;
			gap: 0.5rem;
			font-size: 0.9rem;
			font-weight: 600;
			margin-bottom: 1.5rem;
		}

		.about-title {
			color: white;
			font-size: 2.5rem;
			font-weight: 800;
			line-height: 1.3;
			margin-bottom: 1.5rem;
		}

		.about-description {
			color: var(--text-muted);
			font-size: 1.05rem;
			line-height: 1.8;
			margin-bottom: 2rem;
		}

		.about-features {
			list-style: none;
			padding: 0;
			margin-bottom: 2rem;
		}

		.about-features li {
			color: white;
			font-size: 1rem;
			margin-bottom: 1rem;
			display: flex;
			align-items: center;
			gap: 0.8rem;
		}

		.about-features li i {
			color: var(--accent-gold);
			font-size: 1.2rem;
			min-width: 24px;
		}

		/* Stats Cards */
		.stats-wrapper {
			position: relative;
			z-index: 2;
		}

		.stats-grid {
			display: grid;
			grid-template-columns: repeat(2, 1fr);
			gap: 1.5rem;
			background: rgba(255, 255, 255, 0.05);
			backdrop-filter: blur(10px);
			padding: 2rem;
			border-radius: 20px;
			border: 1px solid rgba(255, 255, 255, 0.1);
		}

		.stat-card {
			text-align: center;
			padding: 1.5rem;
			background: rgba(255, 255, 255, 0.05);
			border-radius: 15px;
			transition: all 0.3s ease;
			border: 1px solid rgba(255, 255, 255, 0.1);
		}

		.stat-card:hover {
			background: rgba(255, 255, 255, 0.1);
			transform: translateY(-5px);
		}

		.stat-icon {
			width: 60px;
			height: 60px;
			background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			margin: 0 auto 1rem;
			box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
		}

		.stat-icon i {
			font-size: 1.8rem;
			color: white;
		}

		.stat-value {
			color: white;
			font-size: 2.5rem;
			font-weight: 800;
			margin-bottom: 0.5rem;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 0.3rem;
		}

		.stat-value .plus {
			color: var(--accent-gold);
			font-size: 1.8rem;
		}

		.stat-label {
			color: var(--text-muted);
			font-size: 0.95rem;
			font-weight: 500;
		}

		.stat-card.large {
			grid-column: span 2;
		}

		.stat-card.large .stat-value {
			font-size: 3rem;
		}

		/* Animations */
		@keyframes fadeInLeft {
			from {
				opacity: 0;
				transform: translateX(-30px);
			}

			to {
				opacity: 1;
				transform: translateX(0);
			}
		}

		@keyframes fadeInRight {
			from {
				opacity: 0;
				transform: translateX(30px);
			}

			to {
				opacity: 1;
				transform: translateX(0);
			}
		}

		@keyframes countUp {
			from {
				opacity: 0;
				transform: scale(0.5);
			}

			to {
				opacity: 1;
				transform: scale(1);
			}
		}

		.animate-left {
			animation: fadeInLeft 0.8s ease;
		}

		.animate-right {
			animation: fadeInRight 0.8s ease;
		}

		.animate-count {
			animation: countUp 0.6s ease;
		}

		/* Responsive */
		@media (max-width: 768px) {
			.about-title {
				font-size: 2rem;
			}

			.about-description {
				font-size: 1rem;
			}

			.stats-grid {
				grid-template-columns: 1fr;
				padding: 1.5rem;
			}

			.stat-card.large {
				grid-column: span 1;
			}

			.stat-value {
				font-size: 2rem;
			}

			.stat-card.large .stat-value {
				font-size: 2.5rem;
			}
		}

		/* Referral Section */
		.referral-section {
			position: relative;
			padding: 0;
			overflow: hidden;
			min-height: 600px;
		}

		.referral-background {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=1200') center/cover;
			z-index: 1;
		}

		.referral-background::after {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 41, 66, 0.85) 100%);
			z-index: 2;
		}

		.referral-content {
			position: relative;
			z-index: 3;
			padding: 6rem 0;
		}

		.referral-badge {
			background: rgba(251, 191, 36, 0.2);
			color: var(--accent-gold);
			padding: 0.5rem 1.2rem;
			border-radius: 50px;
			display: inline-flex;
			align-items: center;
			gap: 0.5rem;
			font-size: 0.9rem;
			font-weight: 600;
			margin-bottom: 1.5rem;
			border: 1px solid rgba(251, 191, 36, 0.3);
		}

		.referral-title {
			color: white;
			font-size: 3rem;
			font-weight: 800;
			line-height: 1.3;
			margin-bottom: 1rem;
		}

		.referral-title .highlight {
			color: var(--accent-gold);
		}

		.referral-subtitle {
			color: var(--text-muted);
			font-size: 1.2rem;
			line-height: 1.6;
			margin-bottom: 2.5rem;
			max-width: 600px;
		}

		.referral-benefits {
			display: flex;
			gap: 2rem;
			margin-bottom: 2.5rem;
			flex-wrap: wrap;
		}

		.benefit-item {
			display: flex;
			align-items: center;
			gap: 0.8rem;
		}

		.benefit-icon {
			width: 50px;
			height: 50px;
			background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
			border-radius: 12px;
			display: flex;
			align-items: center;
			justify-content: center;
			box-shadow: 0 5px 20px rgba(251, 191, 36, 0.3);
		}

		.benefit-icon i {
			font-size: 1.5rem;
			color: white;
		}

		.benefit-text {
			display: flex;
			flex-direction: column;
		}

		.benefit-value {
			color: white;
			font-size: 1.5rem;
			font-weight: 800;
		}

		.benefit-label {
			color: var(--text-muted);
			font-size: 0.9rem;
		}

		.btn-invite {
			background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
			color: var(--primary-navy);
			padding: 1.2rem 3rem;
			border: none;
			border-radius: 50px;
			font-weight: 700;
			font-size: 1.1rem;
			transition: all 0.3s ease;
			box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
			cursor: pointer;
			display: inline-flex;
			align-items: center;
			gap: 0.8rem;
		}

		.btn-invite:hover {
			transform: translateY(-3px);
			box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
		}

		.btn-invite i {
			font-size: 1.2rem;
		}

		/* Floating elements decoration */
		.floating-element {
			position: absolute;
			z-index: 2;
			opacity: 0.1;
			pointer-events: none;
		}

		.floating-element.circle-1 {
			width: 300px;
			height: 300px;
			background: var(--accent-gold);
			border-radius: 50%;
			top: -100px;
			right: -100px;
			filter: blur(80px);
		}

		.floating-element.circle-2 {
			width: 200px;
			height: 200px;
			background: var(--accent-gold);
			border-radius: 50%;
			bottom: -50px;
			left: -50px;
			filter: blur(60px);
		}

		/* Animations */
		@keyframes fadeInUp {
			from {
				opacity: 0;
				transform: translateY(30px);
			}

			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		@keyframes float {

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

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

		.animate-fade-up {
			animation: fadeInUp 0.8s ease;
		}

		.animate-float {
			animation: float 3s ease-in-out infinite;
		}

		/* Responsive */
		@media (max-width: 768px) {
			.referral-title {
				font-size: 2rem;
			}

			.referral-subtitle {
				font-size: 1rem;
			}

			.referral-benefits {
				flex-direction: column;
				gap: 1.5rem;
			}

			.btn-invite {
				width: 100%;
				justify-content: center;
			}

			.referral-content {
				padding: 4rem 0;
			}
		}

		/* Testimonials Section */
		.testimonials-section {
			background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
			padding: 6rem 0;
			position: relative;
			overflow: hidden;
		}

		.testimonials-section::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
				radial-gradient(circle at 70% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
			pointer-events: none;
		}

		.testimonials-content {
			position: relative;
			z-index: 2;
		}

		.section-header-center {
			text-align: center;
			margin-bottom: 4rem;
		}

		.section-badge-center {
			background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
			color: white;
			padding: 0.5rem 1.2rem;
			border-radius: 50px;
			display: inline-flex;
			align-items: center;
			gap: 0.5rem;
			font-size: 0.9rem;
			font-weight: 600;
			margin-bottom: 1rem;
		}

		.section-title-center {
			color: var(--primary-navy);
			font-size: 2.8rem;
			font-weight: 800;
			margin-bottom: 0;
		}

		/* Testimonial Content */
		.testimonial-quote-section {
			display: flex;
			align-items: center;
			gap: 3rem;
		}

		.quote-content {
			flex: 1;
		}

		.quote-icon {
			width: 70px;
			height: 70px;
			background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
			border-radius: 50%;
			display: inline-flex;
			align-items: center;
			justify-content: center;
			box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
			margin-bottom: 1.5rem;
		}

		.quote-icon i {
			font-size: 2rem;
			color: white;
		}

		.testimonial-text {
			color: var(--primary-navy);
			font-size: 1.3rem;
			line-height: 1.8;
			margin-bottom: 2rem;
			font-weight: 500;
		}

		.testimonial-author {
			display: flex;
			align-items: center;
			gap: 1rem;
		}

		.author-image {
			width: 60px;
			height: 60px;
			border-radius: 50%;
			overflow: hidden;
			border: 3px solid var(--accent-gold);
			box-shadow: 0 5px 15px rgba(251, 191, 36, 0.2);
		}

		.author-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

		.author-info {
			flex: 1;
		}

		.author-name {
			color: var(--primary-navy);
			font-size: 1.2rem;
			font-weight: 700;
			margin-bottom: 0.2rem;
		}

		.author-title {
			color: #64748b;
			font-size: 0.95rem;
		}

		/* Video Player */
		.video-wrapper {
			flex: 1;
			position: relative;
		}

		.video-container {
			position: relative;
			border-radius: 25px;
			overflow: hidden;
			box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
			background: #000;
		}

		.video-placeholder {
			width: 100%;
			aspect-ratio: 16/9;
			background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=800') center/cover;
			position: relative;
		}

		.video-overlay {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: rgba(0, 0, 0, 0.3);
			display: flex;
			align-items: center;
			justify-content: center;
			transition: all 0.3s ease;
		}

		.video-container:hover .video-overlay {
			background: rgba(0, 0, 0, 0.5);
		}

		.play-button {
			width: 90px;
			height: 90px;
			background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
			border-radius: 50%;
			display: flex;
			align-items: center;
			justify-content: center;
			cursor: pointer;
			transition: all 0.3s ease;
			box-shadow: 0 10px 40px rgba(251, 191, 36, 0.4);
		}

		.play-button:hover {
			transform: scale(1.1);
			box-shadow: 0 15px 50px rgba(251, 191, 36, 0.6);
		}

		.play-button i {
			font-size: 2.5rem;
			color: white;
			margin-left: 5px;
		}

		.video-duration {
			position: absolute;
			bottom: 20px;
			right: 20px;
			background: rgba(0, 0, 0, 0.7);
			color: white;
			padding: 0.5rem 1rem;
			border-radius: 8px;
			font-size: 0.9rem;
			font-weight: 600;
		}

		/* Animations */
		@keyframes fadeInLeft {
			from {
				opacity: 0;
				transform: translateX(-30px);
			}

			to {
				opacity: 1;
				transform: translateX(0);
			}
		}

		@keyframes fadeInRight {
			from {
				opacity: 0;
				transform: translateX(30px);
			}

			to {
				opacity: 1;
				transform: translateX(0);
			}
		}

		@keyframes pulse {

			0%,
			100% {
				transform: scale(1);
			}

			50% {
				transform: scale(1.05);
			}
		}

		.animate-left {
			animation: fadeInLeft 0.8s ease;
		}

		.animate-right {
			animation: fadeInRight 0.8s ease;
		}

		.animate-pulse {
			animation: pulse 2s ease-in-out infinite;
		}

		/* Responsive */
		@media (max-width: 992px) {
			.testimonial-quote-section {
				flex-direction: column;
			}

			.quote-content {
				order: 2;
			}

			.video-wrapper {
				order: 1;
				width: 100%;
			}
		}

		@media (max-width: 768px) {
			.testimonials-section {
				padding: 4rem 0;
			}

			.section-title-center {
				font-size: 2rem;
			}

			.testimonial-text {
				font-size: 1.1rem;
			}

			.play-button {
				width: 70px;
				height: 70px;
			}

			.play-button i {
				font-size: 2rem;
			}
		}

		/* Welcome/CTA Section */
		.welcome-cta-section {
			background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
			padding: 6rem 0;
			position: relative;
			overflow: hidden;
		}

		.welcome-cta-section::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(251,191,36,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
			opacity: 0.3;
		}

		.welcome-content {
			position: relative;
			z-index: 2;
		}

		.welcome-badge {
			background: rgba(251, 191, 36, 0.15);
			color: var(--accent-gold);
			padding: 0.5rem 1.2rem;
			border-radius: 50px;
			display: inline-flex;
			align-items: center;
			gap: 0.5rem;
			font-size: 0.9rem;
			font-weight: 600;
			margin-bottom: 1.5rem;
		}

		.welcome-title {
			color: white;
			font-size: 2.5rem;
			font-weight: 800;
			line-height: 1.3;
			margin-bottom: 1rem;
		}

		.welcome-description {
			color: var(--text-muted);
			font-size: 1.1rem;
			line-height: 1.8;
			margin-bottom: 2rem;
		}

		.welcome-features {
			list-style: none;
			padding: 0;
			margin-bottom: 2.5rem;
		}

		.welcome-features li {
			color: white;
			font-size: 1rem;
			margin-bottom: 1rem;
			display: flex;
			align-items: center;
			gap: 0.8rem;
		}

		.welcome-features li i {
			color: var(--accent-gold);
			font-size: 1.2rem;
			min-width: 24px;
		}

		/* CTA Card */
		.cta-card {
			background: white;
			border-radius: 25px;
			padding: 3rem;
			box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
			position: relative;
		}

		/* .cta-card::before {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			height: 5px;
			background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
			border-radius: 25px 25px 0 0;
		} */

		.cta-card-title {
			color: var(--primary-navy);
			font-size: 1.8rem;
			font-weight: 700;
			margin-bottom: 1rem;
		}

		.cta-card-subtitle {
			color: #64748b;
			font-size: 1rem;
			margin-bottom: 2rem;
		}

		.cta-buttons {
			display: flex;
			flex-direction: column;
			gap: 1rem;
		}

		.btn-signup {
			background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
			color: var(--primary-navy);
			padding: 1.2rem 2rem;
			border: none;
			border-radius: 12px;
			font-weight: 700;
			font-size: 1.1rem;
			transition: all 0.3s ease;
			box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 0.8rem;
		}

		.btn-signup:hover {
			transform: translateY(-3px);
			box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
		}

		.btn-download {
			background: transparent;
			color: var(--primary-navy);
			padding: 1.2rem 2rem;
			border: 2px solid var(--primary-navy);
			border-radius: 12px;
			font-weight: 600;
			font-size: 1.1rem;
			transition: all 0.3s ease;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 0.8rem;
		}

		.btn-download:hover {
			background: var(--primary-navy);
			color: white;
			transform: translateY(-3px);
		}

		.divider {
			text-align: center;
			margin: 1.5rem 0;
			position: relative;
		}

		.divider::before,
		.divider::after {
			content: '';
			position: absolute;
			top: 50%;
			width: 40%;
			height: 1px;
			background: #e2e8f0;
		}

		.divider::before {
			left: 0;
		}

		.divider::after {
			right: 0;
		}

		.divider span {
			background: white;
			padding: 0 1rem;
			color: #94a3b8;
			font-size: 0.9rem;
		}

		/* Footer */
		.footer {
			background: var(--primary-navy);
			padding: 4rem 0 2rem;
			color: var(--text-light);
		}

		.footer-brand {
			margin-bottom: 1.5rem;
		}

		.footer-logo {
			font-size: 1.8rem;
			font-weight: 700;
			color: white;
			display: flex;
			align-items: center;
			gap: 0.5rem;
			margin-bottom: 1rem;
		}

		.footer-logo i {
			color: var(--accent-gold);
			font-size: 2rem;
		}

		.footer-description {
			color: var(--text-muted);
			font-size: 0.95rem;
			line-height: 1.6;
			margin-bottom: 1.5rem;
			max-width: 350px;
		}

		.social-links {
			display: flex;
			gap: 1rem;
		}

		.social-link {
			width: 45px;
			height: 45px;
			background: rgba(255, 255, 255, 0.1);
			border-radius: 12px;
			display: flex;
			align-items: center;
			justify-content: center;
			color: white;
			transition: all 0.3s ease;
			text-decoration: none;
		}

		.social-link:hover {
			background: var(--accent-gold);
			color: var(--primary-navy);
			transform: translateY(-3px);
		}

		.footer-title {
			color: white;
			font-size: 1.2rem;
			font-weight: 700;
			margin-bottom: 1.5rem;
		}

		.footer-links {
			list-style: none;
			padding: 0;
		}

		.footer-links li {
			margin-bottom: 0.8rem;
		}

		.footer-links a {
			color: var(--text-muted);
			text-decoration: none;
			transition: all 0.3s ease;
			display: flex;
			align-items: center;
			gap: 0.5rem;
		}

		.footer-links a:hover {
			color: var(--accent-gold);
			padding-left: 5px;
		}

		.footer-links a i {
			font-size: 0.8rem;
		}

		.footer-contact {
			list-style: none;
			padding: 0;
		}

		.footer-contact li {
			color: var(--text-muted);
			margin-bottom: 1rem;
			display: flex;
			align-items: flex-start;
			gap: 0.8rem;
		}

		.footer-contact li i {
			color: var(--accent-gold);
			margin-top: 3px;
			min-width: 18px;
		}

		.footer-bottom {
			margin-top: 3rem;
			padding-top: 2rem;
			border-top: 1px solid rgba(255, 255, 255, 0.1);
			display: flex;
			justify-content: space-between;
			align-items: center;
			flex-wrap: wrap;
			gap: 1rem;
		}

		.copyright {
			color: var(--text-muted);
			font-size: 0.9rem;
		}

		.footer-bottom-links {
			display: flex;
			gap: 2rem;
		}

		.footer-bottom-links a {
			color: var(--text-muted);
			text-decoration: none;
			font-size: 0.9rem;
			transition: all 0.3s ease;
		}

		.footer-bottom-links a:hover {
			color: var(--accent-gold);
		}

		/* Animations */
		@keyframes fadeInUp {
			from {
				opacity: 0;
				transform: translateY(30px);
			}

			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		@keyframes fadeInLeft {
			from {
				opacity: 0;
				transform: translateX(-30px);
			}

			to {
				opacity: 1;
				transform: translateX(0);
			}
		}

		@keyframes fadeInRight {
			from {
				opacity: 0;
				transform: translateX(30px);
			}

			to {
				opacity: 1;
				transform: translateX(0);
			}
		}

		.animate-left {
			animation: fadeInLeft 0.8s ease;
		}

		.animate-right {
			animation: fadeInRight 0.8s ease;
		}

		/* Responsive */
		@media (max-width: 768px) {
			.welcome-cta-section {
				padding: 4rem 0;
			}

			.welcome-title {
				font-size: 2rem;
			}

			.welcome-description {
				font-size: 1rem;
			}

			.cta-card {
				padding: 2rem 1.5rem;
				margin-top: 3rem;
			}

			.footer-bottom {
				flex-direction: column;
				text-align: center;
			}

			.footer-bottom-links {
				flex-direction: column;
				gap: 0.8rem;
			}
		}



		/* Login Container */
		.login-container {
			display: flex;
			height: 100vh;
		}

		/* Left Side - Form */
		.login-left {
			flex: 1;
			background: white;
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 2rem;
			position: relative;
		}

		.login-form-wrapper {
			width: 100%;
			max-width: 450px;
		}

		.logo-section {
			margin-bottom: 3rem;
		}

		.logo {
			display: flex;
			align-items: center;
			gap: 0.5rem;
			font-size: 1.8rem;
			font-weight: 700;
			color: var(--primary-navy);
			margin-bottom: 0.5rem;
		}

		.logo i {
			color: var(--accent-gold);
			font-size: 2rem;
		}

		.logo-tagline {
			color: var(--text-muted);
			font-size: 0.9rem;
		}

		.login-header {
			margin-bottom: 2rem;
		}

		.login-title {
			color: var(--primary-navy);
			font-size: 2.5rem;
			font-weight: 800;
			margin-bottom: 0.5rem;
		}

		.login-subtitle {
			color: var(--text-muted);
			font-size: 1rem;
		}

		.form-group {
			margin-bottom: 1.5rem;
		}

		.form-label {
			color: var(--primary-navy);
			font-weight: 600;
			margin-bottom: 0.5rem;
			display: block;
		}

		.form-control {
			width: 100%;
			padding: 1rem 1.2rem;
			border: 2px solid #e2e8f0;
			border-radius: 12px;
			font-size: 1rem;
			transition: all 0.3s ease;
			background: white;
		}

		.form-control:focus {
			outline: none;
			border-color: var(--accent-gold);
			box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
		}

		.form-control::placeholder {
			color: #cbd5e1;
		}

		.password-wrapper {
			position: relative;
		}

		.password-toggle {
			position: absolute;
			right: 1rem;
			top: 50%;
			transform: translateY(-50%);
			background: none;
			border: none;
			color: var(--text-muted);
			cursor: pointer;
			padding: 0.5rem;
			transition: all 0.3s ease;
		}

		.password-toggle:hover {
			color: var(--accent-gold);
		}

		.form-options {
			display: flex;
			justify-content: space-between;
			align-items: center;
			margin-bottom: 1.5rem;
		}

		.remember-me {
			display: flex;
			align-items: center;
			gap: 0.5rem;
		}

		.remember-me input[type="checkbox"] {
			width: 18px;
			height: 18px;
			cursor: pointer;
			accent-color: var(--accent-gold);
		}

		.remember-me label {
			color: var(--primary-navy);
			font-size: 0.9rem;
			cursor: pointer;
			margin: 0;
		}

		.forgot-password {
			color: var(--accent-gold);
			text-decoration: none;
			font-size: 0.9rem;
			font-weight: 600;
			transition: all 0.3s ease;
		}

		.forgot-password:hover {
			color: var(--accent-gold-hover);
			text-decoration: underline;
		}

		.btn-login {
			width: 100%;
			background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
			color: var(--primary-navy);
			padding: 1.2rem;
			border: none;
			border-radius: 12px;
			font-weight: 700;
			font-size: 1.1rem;
			transition: all 0.3s ease;
			box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
			cursor: pointer;
			margin-bottom: 1.5rem;
		}

		.btn-login:hover {
			transform: translateY(-3px);
			box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
		}

		.btn-login:active {
			transform: translateY(-1px);
		}

		.divider {
			text-align: center;
			margin: 1.5rem 0;
			position: relative;
		}

		.divider::before,
		.divider::after {
			content: '';
			position: absolute;
			top: 50%;
			width: 45%;
			height: 1px;
			background: #e2e8f0;
		}

		.divider::before {
			left: 0;
		}

		.divider::after {
			right: 0;
		}

		.divider span {
			background: white;
			padding: 0 1rem;
			color: var(--text-muted);
			font-size: 0.9rem;
		}

		.social-login {
			display: flex;
			gap: 1rem;
			margin-bottom: 2rem;
		}

		.btn-social {
			flex: 1;
			padding: 1rem;
			border: 2px solid #e2e8f0;
			border-radius: 12px;
			background: white;
			cursor: pointer;
			transition: all 0.3s ease;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 0.5rem;
			font-weight: 600;
		}

		.btn-social:hover {
			border-color: var(--accent-gold);
			transform: translateY(-2px);
		}

		.btn-social i {
			font-size: 1.2rem;
		}

		.btn-google {
			color: #ea4335;
		}

		.btn-facebook {
			color: #1877f2;
		}

		.signup-link {
			text-align: center;
			color: var(--text-muted);
			font-size: 0.95rem;
		}

		.signup-link a {
			color: var(--accent-gold);
			font-weight: 600;
			text-decoration: none;
			transition: all 0.3s ease;
		}

		.signup-link a:hover {
			color: var(--accent-gold-hover);
			text-decoration: underline;
		}

		/* Right Side - Hero Image */
		.login-right {
			flex: 1;
			background: url(../images/about.png) center/cover;
			position: relative;
		}

		.login-right::after {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: linear-gradient(135deg, rgba(10, 22, 40, 0.75) 0%, rgba(26, 41, 66, 0.75) 100%);
		}

		.hero-content-lg {
			position: relative;
			z-index: 2;
			height: 100%;
			display: flex;
			flex-direction: column;
			justify-content: end;
			text-align: start;
			padding: 4rem;
			color: white;
		}

		.hero-image {
			text-align: center;
			margin-bottom: 3rem;
		}

		.phone-mockup {
			max-width: 300px;
			filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
			animation: float 3s ease-in-out infinite;
		}

		.hero-title {
			font-size: 3rem;
			font-weight: 800;
			line-height: 1.2;
			margin-bottom: 1.5rem;
		}

		.hero-title .highlight {
			color: var(--accent-gold);
		}

		.hero-subtitle {
			font-size: 1.1rem;
			color: var(--text-muted);
			line-height: 1.6;
		}

		/* Animations */
		@keyframes float {

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

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

		@keyframes fadeIn {
			from {
				opacity: 0;
				transform: translateY(20px);
			}

			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		.animate-fade-in {
			animation: fadeIn 0.6s ease;
		}

		/* Responsive */
		@media (max-width: 992px) {
			.login-right {
				display: none;
			}

			.login-left {
				flex: 1;
			}
		}

		@media (max-width: 576px) {
			.login-title {
				font-size: 2rem;
			}

			.social-login {
				flex-direction: column;
			}
		}



				/* Signup Container */
		.signup-container {
			position: relative;
			height: 100vh;
			background: url(../images/home_bg2.jpg) center/cover;
			display: flex;
			align-items: center;
			justify-content: center;
			padding: 0;
		}

		.signup-container::after {
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: linear-gradient(135deg, rgba(10, 22, 40, 0.75) 0%, rgba(26, 41, 66, 0.75) 100%);
			z-index: 1;
		}

		/* Signup Card */
		.signup-card {
			position: relative;
			z-index: 2;
			background: white;
			border-radius: 20px;
			padding: 2.5rem 2.5rem 2rem;
			width: 100%;
			max-width: 500px;
			box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
			animation: fadeInUp 0.6s ease;
			margin: auto;
		}

		.signup-header {
			margin-bottom: 1.5rem;
		}

		.signup-title {
			color: var(--primary-navy);
			font-size: 2.2rem;
			font-weight: 800;
			margin-bottom: 0.3rem;
		}

		.signup-subtitle {
			color: var(--text-muted);
			font-size: 0.95rem;
		}

		.form-group {
			margin-bottom: 1.2rem;
		}

		.form-label {
			color: var(--primary-navy);
			font-weight: 600;
			margin-bottom: 0.5rem;
			display: block;
			font-size: 0.95rem;
		}

		.form-control {
			width: 100%;
			padding: 0.5rem 0.6rem;
			border: 2px solid #e2e8f0;
			border-radius: 8px;
			font-size: 0.95rem;
			transition: all 0.3s ease;
			background: white;
		}

		.form-control:focus {
			outline: none;
			border-color: var(--accent-gold);
			box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
		}

		.form-control::placeholder {
			color: #cbd5e1;
		}

		.password-wrapper {
			position: relative;
		}

		.password-toggle {
			position: absolute;
			right: 1rem;
			top: 50%;
			transform: translateY(-50%);
			background: none;
			border: none;
			color: var(--text-muted);
			cursor: pointer;
			padding: 0.5rem;
			transition: all 0.3s ease;
		}

		.password-toggle:hover {
			color: var(--accent-gold);
		}

		/* Contact Preference */
		.contact-preference {
			margin-bottom: 1.2rem;
		}

		.preference-label {
			color: var(--primary-navy);
			font-weight: 600;
			margin-bottom: 0.8rem;
			display: block;
			font-size: 0.9rem;
		}

		.radio-group {
			display: flex;
			gap: 1.5rem;
			flex-wrap: wrap;
		}

		.radio-option {
			display: flex;
			align-items: center;
			gap: 0.5rem;
		}

		.radio-option input[type="radio"] {
			width: 20px;
			height: 20px;
			cursor: pointer;
			accent-color: var(--accent-gold);
		}

		.radio-option label {
			color: var(--primary-navy);
			font-size: 0.95rem;
			cursor: pointer;
			margin: 0;
		}

		.btn-signup {
			width: 100%;
			background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-hover) 100%);
			color: var(--primary-navy);
			padding: 1rem;
			border: none;
			border-radius: 8px;
			font-weight: 700;
			font-size: 1rem;
			transition: all 0.3s ease;
			box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
			cursor: pointer;
			margin-bottom: 1rem;
		}

		.btn-signup:hover {
			transform: translateY(-3px);
			box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
		}

		.btn-signup:active {
			transform: translateY(-1px);
		}

		.terms-text {
			text-align: center;
			color: var(--text-muted);
			font-size: 0.85rem;
			line-height: 1.5;
		}

		.terms-text a {
			color: var(--accent-gold);
			font-weight: 600;
			text-decoration: none;
			transition: all 0.3s ease;
		}

		.terms-text a:hover {
			color: var(--accent-gold-hover);
			text-decoration: underline;
		}

		.login-link {
			text-align: center;
			color: var(--text-muted);
			font-size: 0.95rem;
			margin-top: 1.5rem;
		}

		.login-link a {
			color: var(--accent-gold);
			font-weight: 600;
			text-decoration: none;
			transition: all 0.3s ease;
		}

		.login-link a:hover {
			color: var(--accent-gold-hover);
			text-decoration: underline;
		}

		/* Animations */
		@keyframes fadeInUp {
			from {
				opacity: 0;
				transform: translateY(30px);
			}

			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		/* Error State */
		.form-control.error {
			border-color: #ef4444;
		}

		.error-message {
			color: #ef4444;
			font-size: 0.85rem;
			margin-top: 0.3rem;
			display: none;
		}

		.error-message.show {
			display: block;
		}

		/* Responsive */
		@media (max-width: 576px) {
			.signup-card {
				padding: 2rem 1.5rem;
				margin: 1rem;
			}

			.signup-title {
				font-size: 2rem;
			}

			.back-button {
				top: 1rem;
				left: 1rem;
			}
		}
