 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: #333;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    
    .coupon-badge {
        background: linear-gradient(45deg, #ffd700, #ffed4a);
        color: #333;
        padding: 12px 20px;
        border-radius: 25px;
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: 20px;
        display: inline-block;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        animation: pulse 2s infinite;
        border: 2px solid #f39c12;
    }
    
    .coupon-code {
        background: #333;
        color: #ffd700;
        padding: 4px 8px;
        border-radius: 4px;
        font-family: 'Courier New', monospace;
        margin-left: 5px;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Header */
    .header {
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(10px);
        position: relative;
        z-index: 100;
        width: 100%;
        padding: 5px 0;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }
    
    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .logo {
        font-size: 2rem;
        font-weight: bold;
        background: linear-gradient(45deg, #667eea, #764ba2);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        flex-shrink: 0;
    }
    
    .logo img {
        vertical-align: middle;
    }
    
    /* Navigation Menu */
    .nav-menu {
        display: flex;
        align-items: center;
    }
    
    .nav-list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 2rem;
    }
    
    .nav-item {
        position: relative;
    }
    
    .nav-link {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        font-size: 1rem;
        padding: 0.5rem 0;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .nav-link:hover {
        color: #667eea;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(45deg, #667eea, #764ba2);
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .nav-link.active {
        color: #667eea;
    }
    
    .nav-link.active::after {
        width: 100%;
    }
    
    .login-btn {
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white !important;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-left: 10px;
    }
    
    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        color: white !important;
    }
    
    .login-btn::after {
        display: none;
    }
    
    .dashboard-btn {
        background: linear-gradient(45deg, #28a745, #20c997);
        color: white !important;
        padding: 8px 16px;
        border-radius: 20px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-left: 10px;
    }
    
    .dashboard-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
        color: white !important;
    }
    
    .dashboard-btn::after {
        display: none;
    }
    
    /* Mobile Menu Toggle */
    .nav-toggle {
        display: none;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .nav-toggle .bar {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    /* Hero Section */
    .hero {
        padding: 30px 0 80px;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
        animation: float 20s infinite linear;
    }
    
    @keyframes float {
        0% { transform: translateY(0px) rotate(0deg); }
        100% { transform: translateY(-100px) rotate(360deg); }
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 30px;
        opacity: 0.95;
    }
    
    .urgency-badge {
        display: inline-block;
        cursor: pointer;
        background: linear-gradient(45deg, #ff6b6b, #ee5a24);
        color: white;
        padding: 10px 25px;
        border-radius: 25px;
        margin-bottom: 30px;
        font-weight: bold;
        animation: pulse 2s infinite;
        box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4);
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }
    
    .cta-button {
        display: inline-block;
        background: linear-gradient(45deg, #10ac84, #00d2d3);
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(16, 172, 132, 0.4);
        cursor: pointer;
    }
    
    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(16, 172, 132, 0.6);
    }
    
    /* Stats Section */
    .stats {
        background: white;
        padding-bottom: 20px;
        position: relative;
        border-radius: 40px 40px 0px 0px;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        text-align: center;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 2rem;
        font-weight: bold;
        color: #667eea;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 1.1rem;
        color: #666;
    }
    
    /* Features Section */
    .features {
        padding: 80px 0;
        background: #f8f9fa;
    }
    
    .section-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #333;
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 60px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    .text-white {
        color: #fff !important;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
    }
    
    .feature-card {
        background: white;
        padding: 40px 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .feature-card:hover::before {
        left: 100%;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
    }
    
    .feature-icon {
        font-size: 3rem;
        color: #667eea;
        margin-bottom: 20px;
    }
    
    .feature-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #333;
    }
    
    .feature-description {
        color: #666;
        line-height: 1.6;
    }
    
    /* FOMO Section */
    .fomo {
        background: linear-gradient(135deg, #ff6b6b, #ee5a24);
        color: white;
        padding: 80px 0;
        text-align: center;
        position: relative;
    }
    
    .fomo::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><path d="M30 10 L40 20 L30 30 L20 20 Z" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
        animation: float 15s infinite linear;
    }
    
    .fomo-content {
        position: relative;
        z-index: 2;
    }
    
    .countdown {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 30px 0;
    }
    
    .countdown-item {
        background: rgba(255,255,255,0.2);
        padding: 20px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }
    
    .countdown-number {
        font-size: 2rem;
        font-weight: bold;
        display: block;
    }
    
    .countdown-label {
        font-size: 0.9rem;
        opacity: 0.9;
    }
    
    /* Review Videos Section */
    .review-videos {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .video-carousel-container {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .video-carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 20px;
    }

    .video-card {
        min-width: 280px;
        width: 280px;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        flex-shrink: 0;
        cursor: pointer;
    }

    .video-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .video-thumbnail {
        position: relative;
        width: 100%;
        height: 400px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f0f0f0;
    }

    .video-thumbnail video {
        width: 100%;
        height: 100%;
        object-fit: contain;
        cursor: pointer;
        pointer-events: auto;
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 15px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.3) 100%);
        pointer-events: none;
    }

    .video-stats {
        display: flex;
        align-items: center;
        gap: 10px;
        align-self: flex-end;
    }

    .views {
        color: white;
        font-size: 0.9rem;
        font-weight: 500;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .action-btn {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        pointer-events: auto;
    }

    .action-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1);
    }

    .like-btn:hover {
        background: rgba(255, 0, 0, 0.3);
    }

    .share-btn:hover {
        background: rgba(0, 123, 255, 0.3);
    }

    .video-info {
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .video-title {
        font-size: 0.8rem;
        /* font-weight: 600; */
        color: grey;
        margin: 0;
        line-height: 1.3;
    }


    .video-carousel-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
    }

    .video-nav-btn {
        background: rgba(102, 126, 234, 0.8);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        pointer-events: auto;
        backdrop-filter: blur(10px);
    }

    .video-nav-btn:hover {
        background: rgba(118, 75, 162, 0.9);
        transform: scale(1.1);
        box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
    }

    .video-nav-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
        transform: none;
    }

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

    /* Reviews Section */
    .reviews {
        padding: 80px 0;
        background: white;
    }
    
    .reviews-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .review-card {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 15px;
        border-left: 5px solid #667eea;
        position: relative;
    }
    
    .review-stars {
        color: #ffd700;
        margin-bottom: 15px;
    }
    
    .review-text {
        color: #666;
        margin-bottom: 20px;
        font-style: italic;
    }
    
    .reviewer-info {
        display: flex;
        align-items: center;
    }
    
    .reviewer-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(45deg, #667eea, #764ba2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: bold;
        margin-right: 15px;
    }
    
    .reviewer-name {
        font-weight: bold;
        color: #333;
    }
    
    .reviewer-title {
        color: #666;
        font-size: 0.9rem;
    }
    
    /* Pricing */
    .pricing {
        padding: 80px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }
    
    .pricing-card {
        background: white;
        color: #333;
        padding: 50px 52px;
        border-radius: 20px;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        /* max-width: 800px; */
        margin: 0 auto;
    }
    
    .pricing-badge {
        position: absolute;
        top: 13px;
        right: -79px;
        background: #10ac84;
        color: white;
        padding: 5px 80px;
        transform: rotate(45deg);
        font-size: 0.9rem;
        font-weight: bold;
    }
    
    .pricing-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
        color: #333;
    }
    
    .pricing-amount {
        font-size: 3rem;
        font-weight: bold;
        color: #667eea;
        margin-bottom: 10px;
    }
    
    .pricing-period {
        color: #666;
        margin-bottom: 30px;
    }
    
    .pricing-features {
        list-style: none;
        margin-bottom: 40px;
    }
    
    .pricing-features li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .pricing-features li i {
        color: green;
    }
    
    /* Footer */
    .footer {
        background: #2c3e50;
        color: white;
        text-align: center;
        padding: 40px 0;
    }
    .footer-links a {
        color: #667eea;
        text-decoration: none;
        margin: 0 8px;
        transition: color 0.3s;
    }
    
    .footer-links a:hover {
        color: #764ba2;
        text-decoration: underline;
    }

    
    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
    }
    
    .modal-content {
        background-color: #fefefe;
        margin: 2% auto;
        padding: 10px;
        border-radius: 20px;
        width: calc(100vw - 10vw);
        height: 100vh;
        max-width: 750px;
        max-height: calc(100vh - 5vh);
        overflow-y: auto;
        overflow-x: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: modalSlideIn 0.3s ease-out;
        position: relative;
    }
    
    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: scale(0.8) translateY(-50px);
        }
        to {
            opacity: 1;
            transform: scale(1) translateY(0);
        }
    }
    
    .modal-header {
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: white;
        padding: 0px;
        border-radius: 20px 20px 0 0;
        text-align: center;
        position: relative;
    }
    
    .modal-header h2 {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .modal-header p {
        opacity: 0.9;
        font-size: 1.1rem;
    }
    
    .close {
        position: absolute;
        right: 4px;
        top: 10px;
        color: white;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }
    
    .form-container {
        padding: 30px 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group {
        margin-bottom: 25px;
        width: 100%;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #333;
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .required {
        color: #e74c3c;
    }
    
    .form-group input,
    .form-group select {
        width: 100%;
        max-width: 100%;
        padding: 15px;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background-color: #f9f9f9;
        box-sizing: border-box;
    }
    
    .form-group input:focus,
    .form-group select:focus {
        outline: none;
        border-color: #667eea;
        background-color: white;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }
    
    .checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 10px;
    }
    
    .checkbox-item {
        display: flex;
        align-items: center;
        background: #f8f9fa;
        padding: 15px;
        border-radius: 10px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        cursor: pointer;
        width: 100%;
        box-sizing: border-box;
    }
    
    .checkbox-item:hover {
        background: #e9ecef;
        border-color: #667eea;
    }
    
    .checkbox-item input[type="checkbox"] {
        width: auto;
        margin-right: 10px;
        transform: scale(1.2);
    }
    
    .checkbox-item label {
        margin: 0;
        cursor: pointer;
        font-weight: 500;
    }
    
    .radio-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }
    
    .radio-item {
        display: flex;
        align-items: center;
        background: #f8f9fa;
        padding: 15px;
        border-radius: 10px;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        cursor: pointer;
        width: 100%;
        box-sizing: border-box;
    }
    
    .radio-item:hover {
        background: #e9ecef;
        border-color: #667eea;
    }
    
    .radio-item input[type="radio"] {
        width: auto;
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    .radio-item input[type="radio"]:checked + label {
        color: #667eea;
        font-weight: bold;
    }
    
    .radio-item label {
        margin: 0;
        cursor: pointer;
        font-size: 1rem;
        flex: 1;
    }
    
    .submit-button {
        width: 100%;
        padding: 18px;
        background: linear-gradient(45deg, #10ac84, #00d2d3);
        color: white;
        border: none;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px rgba(16, 172, 132, 0.4);
    }
    
    .submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(16, 172, 132, 0.6);
    }
    
    .submit-button:disabled {
        opacity: 0.7;
        cursor: not-allowed;
        transform: none;
    }

    /*
        Reviews
    */

    .section-title {
        text-align: center;
        font-size: 2.5rem;
        color: #333;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .section-subtitle {
        text-align: center;
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 50px;
    }

    .reviews-container {
        position: relative;
        width: 100%;
    }

    .carousel-wrapper {
        position: relative;
        width: 100%;
    }

    .carousel-container {
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .review-card {
        min-width: calc(100% / 3);
        width: calc(100% / 3);
        margin: 0 10px;
        background: #f8f9fa;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        flex-shrink: 0;
    }

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .review-stars {
        margin-bottom: 15px;
    }

    .review-stars i {
        color: #ffc107;
        font-size: 1.2rem;
        margin-right: 3px;
    }

    .review-text {
        color: #555;
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
        min-height: 80px;
    }

    .reviewer-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .reviewer-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        font-weight: 600;
    }

    .reviewer-name {
        font-weight: 600;
        color: #333;
        font-size: 1rem;
    }

    .reviewer-title {
        color: #888;
        font-size: 0.9rem;
    }

    .reviews-pagination {
        position: absolute; /* Position relative to reviews-container */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none; /* Allow clicks to pass through to reviews */
    }

    .pagination-btn {
        background: rgba(102, 126, 234, 0.7);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
        transition: all 0.3s ease;
        z-index: 20;
        color: white;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        overflow: hidden;
        backdrop-filter: blur(10px);
        pointer-events: auto; /* Enable clicks on buttons */
    }

    .pagination-prev {
        left: 20px;
    }

    .pagination-next {
        right: 20px;
    }

    .pagination-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .pagination-btn:hover::before {
        left: 100%;
    }

    .pagination-btn:hover {
        background: rgba(118, 75, 162, 0.8);
        transform: translateY(-50%) scale(1.15);
        box-shadow: 0 12px 25px rgba(102, 126, 234, 0.3);
    }

    .pagination-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
        transform: translateY(-50%);
        background: rgba(204, 204, 204, 0.7);
    }

    .pagination-btn:disabled:hover {
        transform: translateY(-50%);
        box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
    }

    .pagination-btn i {
        font-size: 1.4rem;
        position: relative;
        z-index: 2;
    }

    .pagination-prev i {
        color: white;
        font-size: 1.2rem;
    }

    .pagination-next i {
        color: white;
        font-size: 1.2rem;
    }

    .pagination-dots {
        display: none; /* Hide dots/indicators */
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: #667eea;
        width: 30px;
        border-radius: 6px;
    }

    
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .review-card {
            min-width: calc(100% - 20px);
            width: calc(100% - 20px);
        }

        .reviews-pagination {
            gap: 15px;
            margin-top: 30px;
        }

        .pagination-btn {
            width: 45px;
            height: 45px;
        }

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

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

        .fomo{
            padding: 40px 20px;
        }
        .feature-card {
            margin: 0px 20px 0px 20px;
        }
        .features {
            padding: 30px 0;
        }
        .section-title {
            font-size: 2.0rem;
        }
        .logo img{
            height: 50px !important;
        }
        .hero {
            padding: 30px 0 80px;
        }
        .hero h1 {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
        }
        
        .features-grid {
            grid-template-columns: 1fr;
        }
        
        .pricing-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .countdown {
            flex-wrap: wrap;
        }
        
        .nav-links {
            display: none;
        }
    
        .modal-content {
            width: calc(100vw - 10vw);
            height: 90vh;
            margin: 10px auto;
            max-height: calc(100vh - 10vh);
            border-radius: 15px;
        }
    
        .modal-header {
            padding: 10px;
            border-radius: 15px 15px 0 0;
        }
    
        .modal-header h2 {
            font-size: 1.5rem;
        }
    
        .form-container {
            padding: 20px 15px;
        }
    
        .checkbox-item,
        .radio-item {
            padding: 12px;
        }
    
        .submit-button {
            font-size: 1.1rem;
            padding: 16px;
        }
    
        .container {
            padding: 0 15px;
        }
    
        /* Fix for small screens */
        .hero h1 {
            font-size: 2rem;
            line-height: 1.2;
        }
    
        .hero-subtitle {
            font-size: 1.1rem;
        }
    
        .cta-button {
            font-size: 0.9rem;
            padding: 10px 20px;
        }

        /* Video Carousel Mobile Styles */
        .review-videos {
            padding: 40px 0;
        }

        .video-card {
            min-width: 250px;
            width: 250px;
        }

        .video-thumbnail {
            height: 350px;
        }

        .video-thumbnail video {
            object-fit: contain;
        }

        .video-info {
            padding: 10px;
        }

        .video-title {
            font-size: 0.8rem;
        }


        .video-nav-btn {
            width: 40px;
            height: 40px;
        }

        .video-nav-btn i {
            font-size: 1rem;
        }

        .whatsapp-float {
            bottom: 146px !important;
        }
        .nav-menu {
            position: fixed;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 1);
            backdrop-filter: blur(10px);
            flex-direction: column;
            padding: 2rem 0;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .nav-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        
        .nav-list {
            flex-direction: column;
            gap: 1.5rem;
            text-align: center;
        }
        
        .nav-link {
            font-size: 1.1rem;
        }
        
        .nav-toggle {
            display: flex;
        }
        
        .logo {
            font-size: 1.5rem;
        }
        
        .logo img {
            height: 50px;
        }
    }
    
    @media (max-width: 480px) {
        .whatsapp-float {
            bottom: 146px !important;
        }
        .review-card {
            min-width: calc(100% - 20px);
            width: calc(100% - 20px);
        }

        .pagination-btn {
            width: 45px;
            height: 45px;
        }

        .pagination-prev {
            left: 10px;
        }

        .pagination-next {
            right: 10px;
        }

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

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

        .fomo{
            padding: 40px 20px;
        }
        .feature-card {
            margin: 0px 20px 0px 20px;
        }
        .features {
            padding: 30px 0;
        }
        .logo img{
            height: 50px !important;
        }
        .hero {
            padding: 30px 0 80px;
        }
        .modal-content {
            width: calc(100vw - 10vw);
            margin: 5px auto;
            height: 90vh;
            max-height: calc(100vh - 10vh);
            padding: 10px;
            border-radius: 10px;
        }
    
        .modal-header {
            border-radius: 10px 10px 0 0;
        }
    
        .form-container {
            padding: 15px 10px;
        }
    
        .hero h1 {
            font-size: 1.8rem;
        }
    
        .container {
            padding: 0 10px;
        }
        .pricing {
            padding: 40px 0;
        }
    }
    
    /* Floating WhatsApp Button */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 100px;
        right: 40px;
        background-color: #25d366;
        color: white;
        border-radius: 50%;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        animation: bounce 2s infinite;
    }
    
    .whatsapp-float:hover {
        text-decoration: none;
        color: white;
        background-color: #1ebe57;
    }
    
    .whatsapp-float i {
        margin-top: 16px;
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateY(0);
        }
        40% {
            transform: translateY(-10px);
        }
        60% {
            transform: translateY(-5px);
        }
    }
    
    .success-message {
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
        padding: 25px 30px;
        border-radius: 15px;
        text-align: center;
        margin-bottom: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.2);
        animation: successFadeIn 0.6s ease-out;
    }
    
    .success-message::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: rotate(45deg);
        animation: successShimmer 2s infinite;
    }
    
    .success-message .success-icon {
        font-size: 2rem;
        margin-bottom: 10px;
        display: block;
        animation: checkmarkPop 0.6s ease-out 0.3s both;
    }
    
    .success-message .success-title {
        font-size: 1.3rem;
        font-weight: bold;
        margin-bottom: 8px;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .success-message .success-text {
        font-size: 1rem;
        opacity: 0.95;
        line-height: 1.4;
    }

    /* OTP Modal Styles */
    .otp-container {
        padding: 20px;
    }
    
    .otp-container .form-group {
        margin-bottom: 20px;
    }
    
    .otp-container input[type="text"] {
        width: 100%;
        padding: 15px;
        font-size: 18px;
        text-align: center;
        letter-spacing: 5px;
        border: 2px solid #ddd;
        border-radius: 8px;
        transition: border-color 0.3s;
    }
    
    .otp-container input[type="text"]:focus {
        border-color: #10ac84;
        outline: none;
    }
    
    /* Payment Modal Styles */
    .payment-container {
        padding: 20px;
    }
    
    .payment-summary {
        background: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .payment-summary h3 {
        margin-bottom: 15px;
        color: #333;
    }
    
    .summary-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }
    
    .summary-item:last-child {
        border-bottom: none;
        font-weight: bold;
        font-size: 1.1rem;
    }
    
    .payment-methods {
        margin-top: 20px;
    }
    
    .payment-methods h3 {
        margin-bottom: 15px;
        color: #333;
    }
    
    .payment-btn {
        width: 100%;
        padding: 15px;
        margin-bottom: 10px;
        background: linear-gradient(45deg, #10ac84, #00d2d3);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
        transition: transform 0.2s;
    }
    
    .payment-btn:hover {
        transform: translateY(-2px);
    }
    
    .payment-btn i {
        margin-right: 10px;
    }
    
    /* Success message styles */
    .success-message {
        text-align: center;
        padding: 40px 20px;
    }
    
    .success-icon {
        font-size: 4rem;
        color: #10ac84;
        margin-bottom: 20px;
    }

    /* Loading Placeholder Styles */
    .loading-placeholder {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 200px;
        width: 100%;
    }

    .loading-spinner {
        text-align: center;
        color: #10ac84;
    }

    .loading-spinner i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .loading-spinner p {
        margin: 0;
        font-size: 1rem;
        color: #666;
    }

    /* Hide loading when content is loaded */
    .pricing-grid.loaded .loading-placeholder {
        display: none;
    }

    /* Error Placeholder Styles */
    .error-placeholder {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 200px;
        width: 100%;
    }

    .error-message {
        text-align: center;
        color: #e74c3c;
        padding: 20px;
        background: #fdf2f2;
        border-radius: 8px;
        border: 1px solid #fecaca;
    }

    .error-message i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .error-message p {
        margin: 10px 0;
        color: #666;
    }

    .retry-button {
        background: #10ac84;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 14px;
        margin-top: 10px;
    }

    .retry-button:hover {
        background: #0d8a6b;
    }
    
    @keyframes successFadeIn {
        0% {
            opacity: 0;
            transform: translateY(-20px) scale(0.9);
        }
        100% {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    @keyframes successShimmer {
        0% {
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
        }
        100% {
            transform: translateX(100%) translateY(100%) rotate(45deg);
        }
    }
    
    @keyframes checkmarkPop {
        0% {
            transform: scale(0);
            opacity: 0;
        }
        50% {
            transform: scale(1.2);
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }