/* All styles will now use these theme variables */
html {
    --theme-bg: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
    --theme-card: rgb(255, 255, 255);
    --theme-text: #171717;
    --theme-accent: #c4311e;
}

       body {
           background-color: var(--bg-color);
           font-family: 'Inter', sans-serif;
           color: var(--text-primary);
           margin: 0;
           padding: 0;
           min-height: 100vh;
       }

       /* Header Core Styles */
.neon-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000; /* Ensures it stays on top of other content */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transition: background 0.3s, border-bottom-color 0.3s, backdrop-filter 0.3s;
}
.bg-clip-text{
    color: aliceblue;
}
/* Optional: Add hover effect for interactive glass */
.neon-header:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

       .neon-header.scrolled {
           background: rgba(63, 71, 39, 0.9);
           border-bottom-color: rgba(198, 52, 33, 0.3);
       }

       .neon-glow {
           text-shadow: 0 0 10px var(--accent-glow), 0 0 20px rgba(198, 52, 33, 0.5);
       }

       /* Animated Grid Background */
       .header-grid-bg {
           pointer-events: none;
       }

       .grid-pattern {
           position: absolute;
           inset: 0;
           background-image: linear-gradient(rgba(198, 52, 33, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(198, 52, 33, 0.15) 1px, transparent 1px);
           background-size: 40px 40px;
           animation: grid-scroll 20s linear infinite;
       }

       /* Holographic Logo */
       .holographic-logo {
           position: relative;
           border-radius: 50%;
       }

       .logo-core {
           position: absolute;
           inset: 15%;
           background: radial-gradient(circle, var(--accent-glow) 0%, rgba(198, 52, 33, 0) 70%);
           border-radius: 50%;
           animation: pulse 4s infinite alternate;
       }

       .logo-ring {
           position: absolute;
           inset: 0;
           border: 2px solid rgba(198, 52, 33, 0.6);
           border-radius: 50%;
           animation: rotate 20s linear infinite;
       }

       /* Desktop Navigation */
       .nav-item-future {
           position: relative;
           padding: 0.5rem 1.5rem; /* Changed from 1rem to 0.5rem 👇 */
           padding: 1rem 1.5rem;
           display: flex;
           flex-direction: column;
           align-items: center;
           color: var(--text-secondary);
           transition: all 0.3s ease;
           text-decoration: none;
       }

       .nav-icon {
           font-size: 1.5rem;
           margin-bottom: 0.25rem;
           transition: all 0.3s ease;
       }

       .nav-text {
           font-size: 0.75rem;
           font-weight: 500;
           letter-spacing: 0.05em;
           text-transform: uppercase;
           transition: all 0.3s ease;
       }

       .nav-pulse {
           position: absolute;
           bottom: 0.5rem;
           width: 6px;
           height: 6px;
           background: var(--accent-glow);
           border-radius: 50%;
           opacity: 0;
           transform: scale(0);
           transition: all 0.3s ease;
       }

       .nav-item-future:hover {
           color: var(--text-primary);
       }

       .nav-item-future:hover .nav-pulse {
           opacity: 1;
           transform: scale(1);
       }

       /* Download CTA Button */
       .download-btn-future {
           display: inline-block;
           border-radius: 9999px;
           font-weight: 700;
           letter-spacing: 0.05em;
           text-transform: uppercase;
           color: var(--text-primary);
           position: relative;
           overflow: hidden;
           transition: all 0.3s ease;
           text-decoration: none;
       }

       .download-arrow {
           transition: transform 0.3s ease;
       }

       .download-btn-future:hover {
           box-shadow: 0 0 20px rgba(198, 52, 33, 0.6);
       }

       .download-btn-future:hover .download-arrow {
           transform: translateX(3px);
       }

       /* Mobile Menu Toggle Button - FIXED */
       @media (max-width: 720px) {
           #mobile-menu-toggle {
               display: flex;
               flex-direction: column;
               justify-content: center;
               align-items: center;
               width: 44px;
               height: 44px;
               position: relative;
               z-index: 100;
               background: transparent;
               border: none;
               cursor: pointer;
               padding: 0;
           }
       }

       .mobile-menu-line {
           display: block;
           width: 28px;
           height: 3px;
           background: var(--text-primary);
           margin: 3px 0;
           transition: all 0.3s ease;
           transform-origin: center;
           border-radius: 3px;
       }

       #mobile-menu-toggle.active .line-top {
           transform: translateY(8px) rotate(45deg);
           background: var(--accent-glow);
       }

       #mobile-menu-toggle.active .line-middle {
           opacity: 0;
       }

       #mobile-menu-toggle.active .line-bottom {
           transform: translateY(-8px) rotate(-45deg);
           background: var(--accent-glow);
       }

       /* Mobile Menu - FIXED */
       .mobile-menu-container {
           position: fixed;
           top: 0;
           right: 0;
           width: 100%;
           height: 100vh;
           background: rgba(63, 71, 39, 0.98);
           backdrop-filter: blur(10px);
           z-index: 90;
           display: flex;
           flex-direction: column;
           justify-content: center;
           align-items: center;
           opacity: 0;
           visibility: hidden;
           transition: all 0.4s ease;
           transform: translateX(100%);
       }

       .mobile-menu-container.open {
           opacity: 1;
           visibility: visible;
           transform: translateX(0);
       }

       .mobile-nav-item {
           display: block;
           position: relative;
           overflow: hidden;
           padding: 1.5rem 0;
           font-size: 1.8rem;
           font-weight: 600;
           color: var(--text-secondary);
           text-decoration: none;
           text-align: center;
           transition: color 0.3s ease;
           width: 100%;
       }

       .mobile-nav-text {
           position: relative;
           z-index: 2;
       }

       .mobile-nav-hover {
           position: absolute;
           top: 0;
           left: 0;
           width: 0;
           height: 100%;
           background: var(--accent-glow);
           transition: width 0.3s ease;
           z-index: 1;
       }

       .mobile-nav-item:hover {
           color: var(--text-primary);
       }

       .mobile-nav-item:hover .mobile-nav-hover {
           width: 100%;
       }


/*This is the portal */
/* public/assets/css/app.css */
/* Swiper Slider Styles */
.portal-slider {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    padding-top: 50px;
    padding-bottom: 50px;
    perspective: 1200px; /* Add perspective for 3D effect */
}

.portal-slider .swiper-slide {
    width: 250px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s, opacity 0.5s, box-shadow 0.5s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.portal-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 0.5s;
}

/* 3D Effect for Swiper Slides */
.portal-slider .swiper-slide-next,
.portal-slider .swiper-slide-prev {
    transform: scale(0.8) rotateY(20deg);
    opacity: 0.5;
}

.portal-slider .swiper-slide-prev {
    transform: scale(0.8) rotateY(-20deg);
}

.portal-slider .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 30px rgba(255, 234, 0, 0.5); /* Glowing effect */
}

/* Additional Custom CSS for Animations */
.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}
.animation-delay-500 { animation-delay: 0.5s; }

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

.animate-pulse-slow {
    animation: pulse-slow 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse-slow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.5; }
}

.animate-blob {
    animation: blob 7s infinite;
}
.animation-delay-2000 { animation-delay: 2s; }
@keyframes blob {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* Pagination Styles */
.swiper-pagination-bullet {
    background: rgba(137, 59, 4, 0.321);
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #c4311e;
    box-shadow: 0 0 10px #c4311e;
}

/* Feature Section Styles */
.feature-image-container {
    position: relative;
    padding: 8px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(10, 15, 30, 0.1));
    border-radius: 12px;
}

.feature-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.3), rgba(0, 245, 255, 0));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.feature-image-container img {
    width: 40%;
    height: auto;
    object-fit: contain;
}

.space {
    margin-top: 80px;
}
/*New Hero secton slider*/
