/* Font Families */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Audiowide&display=swap'); /* Added for highlight text */

/* ==========================================================================
   1. Global Resets & Variables
   ========================================================================== */
:root {
    --primary-glow: rgba(144, 101, 255, 0.2);
    --dark-bg: #0f0e17;
    --card-bg: #1a1a2e;
    --text-light: #fffffe;
    --text-secondary: #a7a9be;
    --hover-bg: #f2f2f6;
    --hover-text: #000000;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    font-family: 'Poppins', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    position: relative; 
}

body::before {
    content: '';
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(214, 66, 244, 0.327), rgba(53, 199, 244, 0.12), transparent 60%);
    pointer-events: none;
    z-index: -1; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
}

/* ==========================================================================
   2. Header & Navigation
   ========================================================================== */
header {
    width: 100%;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(144, 101, 255, 0.25);
    padding: 15px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container img {
    height: 50px;
    transition: height 0.3s ease;
    display: block;
}

header.scrolled .logo-container img {
    height: 40px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li > a {
    color: var(--text-light);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 1px;
    padding-bottom: 5px;
}

.main-nav ul li:hover > a,
.main-nav .submenu li a:hover {
    color: #b58aff;
}

.active-link {
    color: #b58aff !important;
    font-weight: 700 !important;
}

.main-nav .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 5px 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    display: flex;
    flex-direction: column;
}

.main-nav li:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.main-nav .submenu li {
    width: 100%;
}

.main-nav .submenu li a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-btn {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(217, 179, 255, 0.6);
    border-radius: 50px;
    color: #b58aff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.contact-btn:hover {
    background: rgba(217, 179, 255, 0.08);
    border-color: #b58aff;
    box-shadow: 0 0 14px #b58aff, 0 0 30px #9065ff;
}

#hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
    background: none;
    border: none;
}

#hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #b58aff;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

#side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    padding: 20px;
    z-index: 1001;
    transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow-y: auto;
}

#side-menu.active {
    right: 0;
}

#side-menu .side-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--primary-glow);
}

#side-menu .side-menu-header h3 {
    color: #b58aff;
    font-size: 1.5rem;
}

#close-menu-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

#side-menu .side-nav-list,
#side-menu .submenu-mobile {
    list-style: none;
}

#side-menu .side-nav-list > li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#side-menu .side-nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 12px 5px;
    text-transform: uppercase;
}

#side-menu .side-nav-list li a:hover {
    color: #b58aff;
}

#side-menu .submenu-mobile {
    padding-left: 20px;
    display: none;
    margin-top: 10px;
}

#side-menu li.active > .submenu-mobile {
    display: block;
}

#side-menu li.active > a {
    color: #d84dff;
}

/* ==========================================================================
   3. Page Sections
   ========================================================================== */

/* --- Main VR Banner Section --- */
.vr-banner-section {
    background: linear-gradient(90deg, #020104 60%, #1d0725 100%);
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vr-banner-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.vr-banner-section .vr-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vr-headset-img {
    max-width: 500px;
    width: 100%;
    height: auto;
    animation: floating 6s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(197, 97, 255, 0.4));
}

.vr-banner-text {
    flex: 1.2;
    text-align: left;
}

.vr-banner-text h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
    font-size: 45px;
}

.vr-banner-text h1 span {
    display: block;
}

.vr-banner-text h1 .line-1,
.vr-banner-text h1 .line-2,
.vr-banner-text h1 .line-3 {
    color: var(--text-light);
}

/* ADDED: Style for ONLY the "VR & AR" text */
.vr-banner-text h1 .highlight-text {
    font-family: 'Audiowide', cursive;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(90deg, #9065FF 0%, #B58AFF 50%, #D9B3FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

/* --- VR & AR Content Sections --- */
.vr-section,
.ar-section {
    padding: 80px 0;
    background-color: transparent;
    color: #fff;
}

.vr-content-grid,
.ar-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vr-text-container,
.ar-text-container {
    padding: 20px;
}

.vr-text-container h2,
.ar-text-container h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 20px;
}

.vr-text-container p,
.ar-text-container p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    color: #ccc;
}

.vr-image-container img,
.ar-image-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.vr-image-container img:hover,
.ar-image-container img:hover {
    transform: scale(1.05);
}

.ar-content-grid {
    direction: rtl;
}

.ar-content-grid > div {
    direction: ltr;
}

/* --- Solutions Section --- */
.solutions-section {
    padding: 100px 20px;
    text-align: center;
}

.solutions-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.solutions-content h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 20px;
}

.solutions-content p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 30px;
}

.solutions-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #7e22ce, #3b82f6);
    color: #ecf5ff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.solutions-btn:hover {
    background: linear-gradient(135deg, #2e0771, #1a1a1a);
    transform: translateY(-3px);
    color: #ecf5ff;
}

/* ==========================================================================
   4. Footer
   ========================================================================== */
.footer-section {
    background-color: #000;
    padding: 80px 0 40px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 10;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.footer-menu a:hover {
    color: #fff !important;
}

.footer-col img {
    max-width: 150px;
    margin-bottom: 20px;
    filter: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-col img:hover {
    opacity: 0.9;
}

.company-info {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.company-info p {
    margin: 0 0 10px;
}

.company-info strong {
    color: #fff;
}

/* ==========================================================================
   5. Copyright Bar
   ========================================================================== */
.glass-bottom-bar {
    background: rgba(0, 0, 0, 0.91);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-top: 1px solid rgba(181, 138, 255, 0.2);
    box-shadow: 0 -4px 12px rgba(181, 138, 255, 0.2);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    position: relative;
    z-index: 99;
}

.glass-content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.glass-copyright {
    color: #94a3b8;
    font-size: 14px;
    margin: 0;
}

.glass-icons {
    display: flex;
    gap: 16px;
}

.icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    font-size: 15px;
}

.icon svg {
    height: 24px;
    width: 24px;
    fill: currentColor;
    transition: color 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
}

/* ==========================================================================
   6. Floating Action Buttons
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: translateY(-3px) scale(1.1);
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(144, 101, 255, 0.2);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 400ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap .progress-icon {
    position: absolute;
    height: 100%;
    width: 100%;
    font-size: 18px;
    color: #9065ff;
    left: 0;
    top: 0;
    z-index: 1;
    transition: all 400ms linear;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-wrap:hover .progress-icon {
    color: #ffffff;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: #9065ff;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

/* ==========================================================================
   7. Animations
   ========================================================================== */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   8. Responsive Media Queries
   ========================================================================== */
@media (max-width: 992px) {
    .vr-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-top: 60px;
    }

    .vr-banner-text {
        text-align: center;
        order: 2; /* Text below image */
    }

    .vr-banner-section .vr-image-container {
        order: 1; /* Image on top */
    }

    .vr-headset-img {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .main-nav, .header-actions .contact-btn {
        display: none;
    }
    #hamburger-menu {
        display: flex;
    }
    .header-container {
        padding: 0 15px;
    }
    .vr-banner-text h1 {
        font-size: 35px;
    }
    .vr-content-grid,
    .ar-content-grid {
        grid-template-columns: 1fr;
    }
    .ar-content-grid .ar-image-container {
        order: 1;
    }
    .ar-content-grid .ar-text-container {
        order: 2;
    }
    .footer-columns {
        flex-direction: column;
    }
    .progress-wrap {
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float {
        right: 20px;
        bottom: 80px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .glass-content-wrap {
        flex-direction: column;
        gap: 10px;
    }
    .glass-icons {
        justify-content: center;
    }
    .vr-banner-text h1 {
        font-size: 28px;
    }
}