:root {
            --bg-primary: #121212;
            --bg-secondary: rgba(30, 30, 30, 0.7);
            --bg-tertiary: rgba(37, 37, 37, 0.7);
            --accent-primary: #7c4dff;
            --accent-secondary: #5e35b1;
            --text-primary: #ffffff;
            --text-secondary: #b3b3b3;
            --text-tertiary: #757575;
            --border: rgba(255, 255, 255, 0.1);
            --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --section-padding: 5rem 1.5rem;
            --glass-blur: 8px;
        }

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

        @font-face {
        font-family: 'GR';
        src: url('../fonts/GR.otf') format('opentype');
        font-weight: normal;
        font-style: normal;
}

        @font-face {
        font-family: 'Allerta';
        src: url('../fonts/Allerta-Regular.ttf') format('opentype');
        font-weight: normal;
        font-style: normal;
}

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 15px;
        }

        .name{
            font-family: 'GR',system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        /* Glassmorphism Effect */
        .glass {
            background: var(--bg-secondary);
            backdrop-filter: blur(var(--glass-blur));
            -webkit-backdrop-filter: blur(var(--glass-blur));
            border: 1px solid var(--border);
            box-shadow: var(--card-shadow);
        }

        /* Typography */
        h1, h2, h3, h4 {
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-primary);
            font-family: 'Allerta',system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            
        }

        h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            
            
        }

        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 1.2rem;
        }

        h3 {
            font-size: clamp(1.3rem, 3vw, 1.7rem);
            
        }

        p {
            color: var(--text-secondary);
            font-size: 1.2rem;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Utility Classes */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: var(--section-padding);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .gradient-text {
            font-family: 'GR',system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background: linear-gradient(90deg, var(--accent-primary), #b388ff);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.7rem 1.5rem;
            border-radius: 10px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            gap: 0.5rem;
            font-size: 0.95rem;
            font-family: 'Allerta';
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            color: white;
            box-shadow: 0 4px 14px rgba(124, 77, 255, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent-primary), #8e6bff);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(124, 77, 255, 0.4);
        }

        .btn-secondary {
            background-color: var(--bg-tertiary);
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        .btn-tertiary {
            background-color: white;
            color: var(--accent-secondary);
            border: 3px solid var(--accent-primary);
        }

        .btn-tertiary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .btn-tertiary {
                padding: 0.5rem 0.8rem;
                font-size: 0.8rem;
            }
        }

        .tag {
            background-color: rgba(124, 77, 255, 0.2);
            color: var(--accent-primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            margin-top: 1rem;
            display: inline-block;
        }

        /* Container for tags */
        .tags-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem; /* horizontal + vertical spacing between tags */
        margin-top: -1rem;
        overflow-x: auto;
        scrollbar-width: none;
        }

        .tags-container::-webkit-scrollbar {
        display: none;
        }

        /* Tag design (unchanged) */
        .tags {
        background-color: rgba(124, 77, 255, 0.12);
        color: #876eea;

        padding: 0.5rem 1rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;

        border: 1px solid rgba(124, 77, 255, 0.2);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
        transition: background-color 0.2s ease, transform 0.2s ease;

        white-space: nowrap;
        }

        .tags:hover {
        background-color: rgba(124, 77, 255, 0.16);
        transform: translateY(-1px);
        }

        /* Mobile-specific styles */
        @media (max-width: 768px) {
        .tags-container {
            margin-top: -3rem;
            gap: 0.5rem;
        }

        .tags {
            font-size: 0.9rem;
            padding: 0.35rem 0.7rem;
        }
        }






        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 8%;
            padding: 1.2rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background-color: rgba(18, 18, 18, 0.8);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        nav.scrolled {
            padding: 0.8rem 1.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .logo {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-family: 'GR', Arial, Helvetica, sans-serif;
        font-weight: 700;
        font-size: 2rem;
        text-decoration: none;
        color: white;
        }



        .logo-icon img {
        width: 2rem;
        height: auto;
        display: block;
        overflow: hidden;
        }

        @media (max-width: 480px) {
        .logo {
            gap: 0.5rem;
        }
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            font-family: 'Allerta', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        }

        .nav-links a {
            position: relative;
            color: var(--text-secondary);
            transition: var(--transition);
            font-size: 0.95rem;
            font-weight: 500;
        }

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

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

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

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.3rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 5rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(124, 77, 255, 0.1) 0%, rgba(18, 18, 18, 0) 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }

        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* .hero-image {
            width: 100%;
            max-width: 100%;
            height: auto;
            max-height: 600px;
            border-radius: 10px;
            margin-top: 1rem;
            margin-bottom: 1rem;
            padding: 0 1rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image.loaded {
            opacity: 1;
            transform: translateY(0);
        } */

        .typing-container {
            min-height: 6rem;
            display: flex;
            justify-content: center;
            margin-top: 3px;
        }

        .typing-effect {
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            margin: 0 auto;
            letter-spacing: 1px;
            animation: blink-caret 0.75s step-end infinite;
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: var(--accent-primary); }
        }

        /* Features Section */
        .features {
            background-color: var(--bg-primary);
        }

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

        .feature-card {
            background-color: var(--bg-tertiary);
            border-radius: 14px;
            padding: 2rem 1.5rem;
            transition: var(--transition);
            border: 1px solid var(--border);
            opacity: 0;
            transform: translateY(20px);
            backdrop-filter: blur(var(--glass-blur));
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--card-shadow);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(124, 77, 255, 0.2);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            color: var(--accent-primary);
            font-size: 1.3rem;
        }

        /* showcases Section */
        .showcases {
            position: relative;
            overflow: hidden;
        }

        .showcases::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(124, 77, 255, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .showcase-tabs {
            display: flex;
            gap: 0.8rem;
            margin-bottom: 3rem;
            overflow-x: auto;
            padding-bottom: 0.8rem;
            scrollbar-width: none;
            justify-content: center;
            flex-wrap: wrap;
        }

        .showcase-tabs::-webkit-scrollbar {
            display: none;
        }

        .showcase-tab {
            background-color: var(--bg-tertiary);
            color: var(--text-secondary);
            border: none;
            padding: 0.7rem 1.2rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
            flex-shrink: 0;
            font-size: 0.9rem;
            backdrop-filter: blur(var(--glass-blur));
        }

        .showcase-tab.active {
            background-color: var(--accent-primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(124, 77, 255, 0.3);
        }

        .showcase-tab:hover:not(.active) {
            background-color: var(--border);
            transform: translateY(-1px);
        }

        .showcase-content {
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .showcase-content.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .showcase-showcase {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1.5rem;
            min-height: auto;
            text-align: center;
        }

        .showcase-description {
            width: 100%;
            max-width: 100%;
            text-align: center;
            margin-bottom: 1rem;
        }

        .showcase-description h3 {
            display: none;
        }

        .showcase-description p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.5;
            max-height: 3.2rem;
            overflow: hidden;
            display: -webkit-box;
            -webkit-box-orient: vertical;
        }

        .image-container {
            width: 100%;
            max-width: 100%;
            height: auto;
            max-height: 600px;
            border-radius: 10px;
            margin-top: 1rem;
            margin-bottom: 1rem;
            padding: 0 1rem;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .image-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
            border-radius: 16px;
        }

        .image-container:hover img {
            transform: scale(1.2);  /*hover effect on zoom*/
        }

        .showcase-placeholder {
            color: var(--text-muted);
            font-size: 1.1rem;
            text-align: center;
            z-index: 2;
            position: relative;
        }
        
        .feature-list {
            display: none;
        }

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

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 1rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .showcase-tabs {
                justify-content: center;
                margin-bottom: -2rem;
            }

            .showcase-showcase {
                flex-direction: column;
                gap: 2rem;
                min-height: auto;
            }

            .showcase-description {
                max-width: 100%;
                order: 2;
            }

            .showcase-description h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .showcase-description p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .image-container {
                max-width: 100%;
                height: auto;
                order: 1;
                transform: scale(1.1);
                border-radius: 8px;
            }

            .image-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.3s ease;
            border-radius: 8px;
        }

            .image-container:hover img{
                transform: scale(1.3);
            }

            .feature-list {
            display: none;
        }
        }

        @media (max-width: 480px) {

            .container {
                padding: 0 1rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .section-header p {
                font-size: 1rem;
            }

            .showcase-tabs {
                justify-content: center;
                margin-bottom: -2rem;
            }

            .showcase-tab {
                padding: 0.6rem 1rem;
                font-size: 0.8rem;
            }

            .showcase-showcase {
                flex-direction: column;
                gap: 2rem;
                min-height: auto;
            }

            .showcase-description {
                max-width: 100%;
                order: 2;
            }

            .showcase-description h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
            }

            .showcase-description p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .image-container:hover img{
                transform: scale(1.4);
            }

            .feature-list {
            display: none;
        }



            /* .image-container {
                transform: scale(1.2);
            }

            .image-container:hover img{
                transform: scale(1.3);
                padding-bottom: 3rem;
            }

            .showcase-description{
                font-size: 1.3rem;
                margin-top: -4rem;
            } */
        }

        /* Slider Section */
        .slider-container {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            width: 100%;
        }
        
        .slider {
            width: 100%;
            height: 550px;
            position: relative;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            
        }
        
        .slider .list {
            display: flex;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            animation: autoRun 50s linear infinite;
            
        }
        
        .slider .list .item {
            width: 1000px;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }
        
        .slider .list .item:hover {
            transform: scale(1.25);
        }
        
        .slider .list .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        @keyframes autoRun {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .slider:hover .list {
            animation-play-state: paused;
        }

        @media (max-width: 768px) {
            .slider {
                height: 350px;
            }
            
            .slider .list .item {
                width: 500px;
            }
        }
        
        @media (max-width: 480px) {
            
            .slider-container {
                border-radius: 12px;
                max-width: 100vw;
                margin: 0 auto;
                overflow: hidden;
            }
            
            .slider {
                height: 180px;
                width: 100vw;
                max-width: 100%;
                border-radius: 8px;
                overflow: hidden;
            }
            
            .slider .list {
                animation: autoRun 60s linear infinite;
            }
            
            .slider .list .item {
                width: 85vw;
                max-width: 400px;
                border-radius: 8px;
                margin-right: 15px;
            }
            
            
        }

        /* possibilities Section */
        .possibilities {
            background-color: var(--bg-primary);
        }

        .possibilities-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.2rem;
        }

        .possibilities-card {
            background-color: var(--bg-tertiary);
            border-radius: 12px;
            padding: 1.3rem;
            transition: var(--transition);
            border: 1px solid var(--border);
            opacity: 0;
            transform: translateY(20px);
            backdrop-filter: blur(var(--glass-blur));
        }

        .possibilities-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .possibilities-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow);
        }

        .possibilities-card h3 {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
        }

        .possibilities-icon {
            color: var(--accent-primary);
            font-size: 1rem;
        }

        .possibilities-card p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* Coming Soon Section */
        .coming-soon {
            background-color: var(--bg-primary);
        }

        .roadmap {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .roadmap-item {
            background-color: var(--bg-tertiary);
            border-radius: 14px;
            padding: 1.8rem;
            border: 1px dashed var(--accent-primary);
            transition: var(--transition);
            backdrop-filter: blur(var(--glass-blur));
        }

        .roadmap-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow);
        }

        .roadmap-icon {
            width: 45px;
            height: 45px;
            background-color: rgba(124, 77, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.2rem;
            color: var(--accent-primary);
            font-size: 1.2rem;
        }

        .roadmap-item h3 {
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        .roadmap-item p {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        /* Preview Section */
        .preview {
            position: relative;
            overflow: hidden;
        }

        .preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 70%, rgba(124, 77, 255, 0.05) 0%, transparent 50%);
            z-index: -1;
        }

        .preview-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .preview-image {
            width: 100%;
            max-width: 800px;
            border-radius: 14px;
            box-shadow: var(--card-shadow);
            border: 1px solid var(--border);
        }

        /* Download Section */
        .download {
            text-align: center;
        }

        .download-options {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2.5rem;
        }

        .download-card {
            background-color: var(--bg-secondary);
            border-radius: 14px;
            padding: 1.8rem;
            width: 180px;
            transition: var(--transition);
            border: 1px solid var(--border);
            backdrop-filter: blur(var(--glass-blur));
        }

        .download-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow);
        }

        .download-icon {
            font-size: 2.2rem;
            margin-bottom: 0.8rem;
            color: var(--accent-primary);
        }

        .download-card h3 {
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .download-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        /* FAQ Section */
        .faq {
            background-color: var(--bg-primary);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 0.8rem;
            border: 1px solid var(--border);
            border-radius: 10px;
            overflow: hidden;
            backdrop-filter: blur(var(--glass-blur));
        }

        .faq-question {
            padding: 1.2rem;
            background-color: var(--bg-tertiary);
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: rgba(255, 255, 255, 0.05);
        }

        .faq-question h3 {
            font-size: 1rem;
        }

        .faq-question i {
            transition: transform 0.3s ease;
        }

        .faq-answer {
            padding: 0 1.2rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }

        .faq-answer-inner {
            padding: 1.2rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* CTA Section */
        .cta {
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(124, 77, 255, 0.1) 0%, rgba(18, 18, 18, 0) 70%);
            animation: rotate 20s linear infinite reverse;
            z-index: -1;
        }

        .cta-content {
            background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
            border-radius: 14px;
            padding: 3rem 1.5rem;
            border: 1px solid var(--border);
            box-shadow: var(--card-shadow);
            max-width: 800px;
            margin: 0 auto;
            backdrop-filter: blur(var(--glass-blur));
        }

        /* Footer */
        footer {
            background-color: var(--bg-primary);
            border-top: 1px solid var(--border);
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 2.5rem;
        }

        .footer-column h3 {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
        }

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

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

        .footer-links a {
            color: var(--text-secondary);
            transition: var(--transition);
            display: inline-block;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--text-primary);
            transform: translateX(5px);
        }

        .social-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.2rem;
        }

        .social-link {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--bg-tertiary);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            font-size: 0.9rem;
            backdrop-filter: blur(var(--glass-blur));
        }

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

        .footer-bottom {
            margin-top: 2.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        /* Animations */
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

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

        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--bg-tertiary);
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
                border-top: 1px solid var(--border);
                backdrop-filter: blur(var(--glass-blur));
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-btn {
                display: block;
            }

            .showcase-card {
                flex-direction: column;
            }

        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 3.5rem 1rem;
            }

            .hide-in-mobile{
                display: none;
            }

            .hero {
                padding-top: 3.5rem;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .feature-card, .possibilities-card {
                padding: 1.5rem;
            }

            .roadmap-item {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            :root {
                --section-padding: 2.5rem 1rem;
            }

            nav {
                padding: 0.8rem;
            }

            .logo {
                font-size: 1.1rem;
            }

            .logo-icon {
                width: 28px;
                height: 28px;
            }

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

            .footer-container {
                grid-template-columns: 1fr;
                gap: 1.8rem;
            }


            .navbt{
                display: none;
            }
        }

        /* Components */
        /* From Uiverse.io by MuhammadHasann */ 
.cmpbtn {
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 1s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.6s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s ease;
}

.cmpbtn:hover {
  background: transparent;
  box-shadow: 0 0 25px var(--accent-primary);
}

.cmpbtn:hover .star-1 {
  position: absolute;
  top: -80%;
  left: -30%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.cmpbtn:hover .star-2 {
  position: absolute;
  top: -25%;
  left: 10%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.cmpbtn:hover .star-3 {
  position: absolute;
  top: 55%;
  left: 25%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.cmpbtn:hover .star-4 {
  position: absolute;
  top: 30%;
  left: 80%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.cmpbtn:hover .star-5 {
  position: absolute;
  top: 25%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.cmpbtn:hover .star-6 {
  position: absolute;
  top: 5%;
  left: 60%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.fil0 {
  fill: #fffdef;
}


