
        :root {
            --primary-color: #a80032;
            --secondary-color: #6a0060;
            --accent-color: #ffffff;
            --text-color: #ffffff;
            --dark-bg: rgba(0, 0, 0, 0.2);
            --light-bg: rgba(255, 255, 255, 0.1);
            --card-border: rgba(255, 255, 255, 0.2);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        body {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--text-color);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }
        
        .navbar {
            background-color: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
    
        
        .logo-container {
            width: 45px;
            height: 45px;
            background-color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .nav-link {
            color: var(--text-color) !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: all 0.3s;
            position: relative;
        }
        
        .nav-link:hover {
            color: rgba(255, 255, 255, 0.8) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: var(--accent-color);
            transition: all 0.3s;
        }
        
        .nav-link:hover::after {
            width: 80%;
            left: 10%;
        }
        
        .btn-sign-in {
            background-color: var(--dark-bg);
            color: var(--text-color);
            border: 1px solid var(--card-border);
            padding: 0.5rem 1.5rem;
            transition: all 0.3s;
        }
        
        .btn-sign-in:hover {
            background-color: rgba(0, 0, 0, 0.3);
            color: var(--text-color);
        }
        
        .btn-register {
            background-color: var(--accent-color);
            color: var(--primary-color);
            border: none;
            font-weight: 600;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s;
        }
        
        .btn-register:hover {
            background-color: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .hero-secgtion {
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        
        
        
        
        .hero-section {
        background-color: ;
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        
        }
    
        .hero-bg {
        background: linear-gradient(135deg, #78003c 0%, #420024 50%, #650033 100%);
        opacity: 0.95;
        }

        
        .feature-card {
            background-color: var(--light-bg);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid var(--card-border);
            padding: 2rem;
            height: 100%;
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            color: var(--accent-color);
        }
        
        .how-it-works {
            background-color: rgba(0, 0, 0, 0.15);
            padding: 5rem 0;
        }
        
        .step-card {
            background-color: var(--light-bg);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid var(--card-border);
            padding: 2rem;
            height: 100%;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 20px;
            width: 40px;
            height: 40px;
            background-color: var(--accent-color);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }
        
        .pricing-card {
            background-color: var(--light-bg);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid var(--card-border);
            padding: 2.5rem;
            height: 100%;
            box-shadow: var(--shadow);
            transition: all 0.3s;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .pricing-popular {
            border: 2px solid var(--accent-color);
            transform: scale(1.05);
        }
        
        .pricing-popular:hover {
            transform: scale(1.05) translateY(-10px);
        }
        
        .pricing-popular .pricing-header {
            position: relative;
        }
        
        .pricing-popular .pricing-header::before {
            content: 'Most Popular';
            position: absolute;
            top: -30px;
            right: 0;
            background-color: var(--accent-color);
            color: var(--primary-color);
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .pricing-header .price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--accent-color);
        }
        
        .pricing-header .currency {
            font-size: 1.5rem;
            vertical-align: super;
        }
        
        .pricing-header .per {
            font-size: 1rem;
            opacity: 0.7;
        }
        
        .feature-list {
            margin: 2rem 0;
            padding-left: 0;
            list-style-type: none;
        }
        
        .feature-list li {
            margin-bottom: 1rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-color);
        }
        
        .reviews-section {
            padding: 5rem 0;
        }
        
        .review-card {
            background-color: var(--light-bg);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid var(--card-border);
            padding: 2rem;
            height: 100%;
            box-shadow: var(--shadow);
        }
        
        .review-stars {
            color: #FFD700;
            margin-bottom: 1rem;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--dark-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-weight: 700;
            color: var(--accent-color);
        }
        
        .cta-section {
            background-color: rgba(0, 0, 0, 0.15);
            padding: 5rem 0;
            text-align: center;
        }
        
        .footer {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 4rem 0 2rem;
        }
        
        .footer-title {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .footer-links {
            list-style-type: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--text-color);
            opacity: 0.8;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .social-links {
            display: flex;
            margin-top: 1.5rem;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background-color: var(--dark-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-color);
            margin-right: 1rem;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--accent-color);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        .floating-shapes div {
            position: absolute;
            z-index: 1;
            opacity: 0.5;
        }
        
        .shape-1 {
            top: 15%;
            left: 5%;
            width: 200px;
            height: 200px;
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            background-color: rgba(255, 255, 255, 0.05);
            animation: float 15s ease-in-out infinite;
        }
        
        .shape-2 {
            bottom: 20%;
            right: 10%;
            width: 250px;
            height: 250px;
            border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
            background-color: rgba(255, 255, 255, 0.05);
            animation: float 20s ease-in-out infinite reverse;
        }
        
        .shape-3 {
            top: 50%;
            right: 20%;
            width: 150px;
            height: 150px;
            border-radius: 37% 63% 56% 44% / 49% 56% 44% 51%;
            background-color: rgba(255, 255, 255, 0.05);
            animation: float 12s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(30px, 30px) rotate(10deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }
        
        
        
        
        
        
        
        
        
        .text-gradient {
        background: linear-gradient(90deg, #ffd700, #ffa6c9);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        
        }
        
        .btn-glow {
            background: linear-gradient(90deg, #ffd700, #ff6bb8);
            border: none;
            color: white;
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: 0 10px 20px -10px rgba(91, 134, 229, 0.6);
            transition: all 0.3s ease;
        }
        
        .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 24px -8px rgba(91, 134, 229, 0.8);
        }
        
        .btn-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, #ff6bb8, #ffd700);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .btn-glow:hover::after {
            opacity: 1;
        }
        
        .btn-glass {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            transition: all 0.3s ease;
        }
        
        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
            color: white;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 1.75rem;
            color: #ffd700;
        }
        
        .stat-divider {
            height: 30px;
            width: 1px;
            background: rgba(255, 255, 255, 0.2);
        }
        
        .phone-mockup {
            width: 280px;
            height: 560px;
            margin: 0 auto;
            perspective: 1000px;
        }
        
        .phone-frame {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #111, #333);
            border-radius: 30px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            border: 8px solid #111;
            transform-style: preserve-3d;
        }
        
        .phone-screen {
            background: #000;
            width: 100%;
            height: 100%;
            border-radius: 22px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .verification-ui {
            width: 85%;
            height: 70%;
            background: #070b14;
            border-radius: 16px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .verification-header {
            height: 60px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
        }
        
        .verification-code {
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        
        .verification-code span {
            width: 36px;
            height: 50px;
            background: rgba(54, 209, 220, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #ffd700;
            font-weight: bold;
        }
        
        .verification-button {
            height: 50px;
            background: linear-gradient(90deg, #ffd700, #ffa6c9);
            border-radius: 8px;
            margin-top: 30px;
        }
        
        .floating {
            animation: floating 6s ease-in-out infinite;
            transform-style: preserve-3d;
        }
        
        .floating-slow {
            animation: floating 8s ease-in-out infinite;
        }
        
        .floating-medium {
            animation: floating 7s ease-in-out infinite 1s;
        }
        
        .floating-fast {
            animation: floating 5s ease-in-out infinite 0.5s;
        }
        
        @keyframes floating {
            0% { transform: translateY(0) rotate3d(1, 1, 0, 0deg); }
            50% { transform: translateY(-15px) rotate3d(1, 1, 0, 2deg); }
            100% { transform: translateY(0) rotate3d(1, 1, 0, 0deg); }
        }
        
        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(30px);
            z-index: -1;
        }
        
        .orb-1 {
            width: 150px;
            height: 150px;
            background: rgba(54, 209, 220, 0.3);
            bottom: -30px;
            left: -60px;
        }
        
        .orb-2 {
            width: 120px;
            height: 120px;
            background: rgba(91, 134, 229, 0.3);
            top: -20px;
            right: -30px;
        }
        
        .glow-ring {
            position: absolute;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.1);
            z-index: -1;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
        
        .trust-badges {
            bottom: 20px;
            right: 10px;
            z-index: 10;
        }
        
        .badge-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 10px 15px;
            color: white;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.3);
        }
        
        .badge-item i {
            color: #ffd700;
        }
        
        .animate-in {
            opacity: 0;
            animation: fadeIn 0.8s forwards;
        }
        
        .hero-content .animate-in:nth-child(1) { animation-delay: 0.2s; }
        .hero-content .animate-in:nth-child(2) { animation-delay: 0.4s; }
        .hero-content .animate-in:nth-child(3) { animation-delay: 0.6s; }
        .hero-content .animate-in:nth-child(4) { animation-delay: 0.8s; }
        .hero-content .animate-in:nth-child(5) { animation-delay: 1s; }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .particles-container {
            overflow: hidden;
        }
        
        /* Wave separator styles */
        .wave-separator {
            height: 120px;
            z-index: 1;
        }
        
        .wave-separator svg {
            width: 100%;
            height: 100%;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-content {
                padding-top: 60px;
                text-align: center;
            }
            
            .d-flex.flex-wrap, .stats-container {
                justify-content: center;
            }
        }
