        :root {
            --primary: #6C4DF6;
            --primary-dark: #5A3EE8;
            --secondary: #a2bdff;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --success: #4BB543;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            padding: 30px 0;
            position: absolute;
            width: 100%;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 28px;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--secondary);
        }

        .logo i {
            margin-right: 10px;
            font-size: 32px;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            background: var(--gradient);
            color: white;
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .hero-text {
            flex: 1;
        }

        .hero-image {
            flex: 1;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        .hero-image img {
            width: 100%;
            max-width: 500px;
            filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
        }

        h1 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 52px;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            max-width: 600px;
            opacity: 0.9;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            background: white;
            color: var(--primary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .btn-primary {
            background: white;
            color: var(--primary);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
            margin-left: 15px;
        }

        .btn-secondary:hover {
            background: white;
            color: var(--primary);
        }

        /* Features */
        .features {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 38px;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

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

        .feature-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 32px;
        }

        .feature-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--gray);
        }

        /* App Screens */
        .app-screens {
            padding: 80px 0;
            background: #F5F7FF;
        }

        .screens-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }

        .screen-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 20px;
            padding: 20px 0;
            scrollbar-width: none;
        }

        .screen-slider::-webkit-scrollbar {
            display: none;
        }

        .screen {
            scroll-snap-align: start;
            min-width: 250px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .screen img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Download */
        .download {
            padding: 100px 0;
            text-align: center;
            background: var(--gradient);
            color: white;
        }

        .download h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 42px;
            margin-bottom: 20px;
        }

        .download p {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .download-btn {
            display: flex;
            align-items: center;
            background: white;
            color: var(--dark);
            padding: 15px 25px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .download-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .download-btn i {
            font-size: 28px;
            margin-right: 10px;
            color: var(--primary);
        }

        .download-btn span {
            display: block;
            text-align: left;
            line-height: 1.3;
        }

        .download-btn span small {
            font-size: 12px;
            font-weight: 400;
            opacity: 0.8;
        }

        /* Community */
        .community {
            padding: 100px 0;
            background: white;
        }

        .community-cards {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .community-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: center;
            max-width: 350px;
        }

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

        .community-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
        }

        .community-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .community-card p {
            color: var(--gray);
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            transition: all 0.3s ease;
        }

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

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 70px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 20px;
            color: white;
        }

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

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }
    /* Carousel Styles */
    .screens-container {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 40px;
    }
    
    .screen-slider {
        display: flex;
        gap: 20px;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 20px 0;
        scrollbar-width: none;
    }
    
    .screen-slider::-webkit-scrollbar {
        display: none;
    }
    
    .screen {
        scroll-snap-align: start;
        flex: 0 0 auto;
        width: 250px;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .screen img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }
    
    .screen:hover img {
        transform: scale(1.03);
    }
    
    .slider-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .slider-dots {
        display: flex;
        gap: 10px;
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(108, 77, 246, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dot.active {
        background: var(--primary);
        transform: scale(1.2);
    }
    
    .slider-arrow {
        background: var(--primary);
        color: white;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-arrow:hover {
        background: var(--primary-dark);
        transform: scale(1.1);
    }
    
    /* Fullscreen Viewer Styles */
    .fullscreen-viewer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.9);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }
    
    .fullscreen-image {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
    }
    
    .close-viewer {
        position: absolute;
        top: 30px;
        right: 30px;
        color: white;
        font-size: 40px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .close-viewer:hover {
        transform: scale(1.2);
    }
    
    .viewer-nav {
        position: absolute;
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0 30px;
    }
    
    .viewer-prev, .viewer-next {
        background: rgba(255,255,255,0.2);
        color: white;
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 24px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .viewer-prev:hover, .viewer-next:hover {
        background: var(--primary);
        transform: scale(1.1);
    }
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        /* Responsive */
        @media (max-width: 992px) {
            h1 {
                font-size: 42px;
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                margin-bottom: 50px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            h1 {
                font-size: 36px;
            }
            
            .btn {
                padding: 12px 25px;
            }
            
            .section-title h2 {
                font-size: 32px;
            }
            
            .download h2 {
                font-size: 36px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 150px 0 80px;
            }
            
            h1 {
                font-size: 32px;
            }
            
            .hero p {
                font-size: 16px;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            
            .btn-secondary {
                margin-left: 0;
            }
            
            .download-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
            /* Add these styles to your existing CSS */
    .download-btn.coming-soon {
        position: relative;
        opacity: 0.7;
        pointer-events: none;
        background: #f5f5f5;
        color: #666;
    }
    
    .coming-soon-badge {
        position: absolute;
        top: -10px;
        right: -10px;
        background: var(--secondary);
        color: white;
        padding: 4px 10px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        transform: rotate(10deg);
        box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }
    
    /* Optional animation for the badge */
    @keyframes pulse {
        0% { transform: rotate(10deg) scale(1); }
        50% { transform: rotate(10deg) scale(1.05); }
        100% { transform: rotate(10deg) scale(1); }
    }
    
    .coming-soon-badge {
        animation: pulse 2s infinite;
    }
        /* News Section Styles */
        .news {
        padding: 100px 0;
        background: white;
    }
    

    

    

    /* Contact Button Styles */
    .contact-button {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: var(--primary);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        box-shadow: 0 10px 30px rgba(108, 77, 246, 0.3);
        z-index: 999;
        transition: all 0.3s ease;
    }
    
    .contact-button:hover {
        background: var(--primary-dark);
        transform: scale(1.1);
    }
    
    @media (max-width: 768px) {
        .news-container {
            grid-template-columns: 1fr;
        }
        
        .contact-button {
            width: 50px;
            height: 50px;
            font-size: 20px;
            bottom: 20px;
            right: 20px;
        }
    }
 
 /* Author section styles */
    /* Author Section Styles */
    .author-section {
        margin: 40px 0;
        padding: 20px 0;
        border-top: 1px solid rgba(0,0,0,0.1);
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }
    
    .author-card {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 15px;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        cursor: pointer;
        max-width: 400px;
    }
    
    .author-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    }
    
    .author-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
        background: linear-gradient(135deg, #6C4DF6, #a2bdff);
    }
    
    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .avatar-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 24px;
    }
    
    .author-info h4 {
        margin: 0 0 5px 0;
        font-size: 18px;
        color: var(--dark);
    }
    
    .author-contact {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: var(--primary);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }
    
    .author-contact:hover {
        color: var(--primary-dark);
    }
    
    /* Author Modal Styles */
    .author-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
        box-sizing: border-box;
    }
    
    .modal-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(5px);
    }
    
    .modal-content {
        position: relative;
        background: white;
        border-radius: 16px;
        max-width: 600px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
        animation: modalFadeIn 0.4s ease;
        z-index: 1;
    }
    
    .modal-close {
        position: absolute;
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: #f5f7fa;
        color: var(--dark);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .modal-close:hover {
        background: var(--primary);
        color: white;
        transform: rotate(90deg);
    }
    
    .modal-body {
        padding: 40px;
    }
    
    .modal-author-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .modal-author-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        flex-shrink: 0;
        background: linear-gradient(135deg, #6C4DF6, #a2bdff);
    }
    
    .modal-author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .modal-author-info h2 {
        margin: 0 0 10px 0;
        color: var(--dark);
    }
    
    .modal-author-contact {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
        padding: 8px 15px;
        border-radius: 8px;
        background: rgba(108, 77, 246, 0.1);
        transition: all 0.3s ease;
    }
    
    .modal-author-contact:hover {
        background: rgba(108, 77, 246, 0.2);
        transform: translateY(-2px);
    }
    
    .modal-author-bio {
        line-height: 1.8;
        color: var(--dark);
    }
    
    @keyframes modalFadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @media (max-width: 768px) {
        .modal-author-header {
            flex-direction: column;
            text-align: center;
        }
        
        .modal-body {
            padding: 30px 20px;
        }
        
        .modal-author-avatar {
            width: 80px;
            height: 80px;
        }
    }