/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding-top: 100px; /* Account for fixed header height */
}

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

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    min-height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 55px;
    width: auto;
    transition: all 0.3s ease;
}

.intelligence-logo {
    height: 50px;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #667eea;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.mobile-menu:hover {
    background: rgba(102, 126, 234, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        padding: 1.5rem 0;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

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

    .mobile-menu {
        display: block;
    }

    .logo {
        font-size: 1.5rem;
        gap: 1rem;
    }

    .logo-img {
        height: 45px;
    }

    .intelligence-logo {
        height: 40px;
    }
}

/* Content wrapper */
.content-wrapper {
    background: white;
    margin: 2rem 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Hero-Platforms Section */
.hero-platforms {
    position: relative;
    overflow: hidden;
}

.hero-content {
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(51, 65, 85, 0.8) 100%),
        url('images/realityborder_hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.15) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

.hero-content .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(102, 126, 234, 0.2);
    color: #a5b4fc;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Platforms Showcase */
.platforms-showcase {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 5rem 0;
    position: relative;
}

.platforms-header {
    text-align: center;
    margin-bottom: 4rem;
}

.platforms-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

.platforms-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.platforms-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto;
}

.platforms-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 4rem;
    justify-content: center;
    align-items: stretch;
}

.platform-card {
    flex: 0 0 380px;
    max-width: 380px;
    min-height: 500px;
}

.platform-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.platform-card.featured {
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.platform-card.coming-soon {
    border: 2px solid rgba(168, 85, 247, 0.2);
}

.platform-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.15);
}

.platform-card.coming-soon:hover {
    box-shadow: 0 25px 60px rgba(168, 85, 247, 0.15);
}

.platform-header {
    padding: 1.5rem 2rem 0.5rem;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.platform-content {
    padding: 0 2rem 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.platform-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-weight: 700;
    margin-top: 0.5rem;
}

.platform-tagline {
    font-size: 1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.platform-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.coming-soon .feature-tag {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.2);
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.coming-soon .platform-link {
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
}

.platform-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.coming-soon .platform-link:hover {
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.platform-link i {
    font-size: 0.9rem;
}

/* Platform header specific logo styling */
.platform-header .service-logo-container {
    height: 50px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.platform-header .service-logo-link {
    width: 120px;
    height: 50px;
}

.platform-header .service-logo {
    max-width: 120px;
    max-height: 50px;
}

.platform-header .service-icon {
    font-size: 2.5rem;
    height: 50px;
}

.platform-header .launch-badge {
    margin: 0;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a202c;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
}

.section-content {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.section-alt {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-bottom: 1rem;
}

.service-icon {
    font-size: 3.5rem;
    color: #667eea;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.service-logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 90px;
    transition: transform 0.3s ease;
}

.service-logo-link:hover {
    transform: scale(1.05);
}

.service-logo {
    max-width: 140px;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #1a202c;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.service-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    text-align: left;
}

.service-card p strong {
    color: #1a202c;
    font-weight: 700;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: auto;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
}

.service-link:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.launch-badge {
    display: block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    text-align: center;
    width: fit-content;
    box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
}

.launch-badge.coming-soon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

/* XR Services specific styling */
#xr-services .service-card {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

#xr-services .service-card h3 {
    text-align: center;
    margin-bottom: 1.2rem;
}

#xr-services .service-card p {
    flex-grow: 1;
    text-align: left;
    margin-bottom: 1.5rem;
}

#xr-services .service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* About Section */
#about .container {
    position: relative;
}

.company-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.company-logo {
    display: block;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.company-logo:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.company-logo img {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.contact-item i {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section h4 {
    margin-bottom: 1.2rem;
    color: #667eea;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copyright {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .platforms-grid {
        gap: 2rem;
    }
    
    .platform-card {
        flex: 0 0 350px;
        max-width: 350px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 80px; /* Smaller padding for mobile header */
    }
    
    .hero-content {
        background-attachment: scroll;
        padding: 3rem 0;
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .platforms-grid {
        gap: 2rem;
        margin-top: 3rem;
    }

    .platform-card {
        flex: 0 0 calc(100% - 2rem);
        max-width: calc(100% - 2rem);
        margin: 0 1rem;
        min-height: auto;
    }

    .platforms-header h2 {
        font-size: 2.2rem;
    }

    .platforms-header p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }



    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
        padding: 1rem 1.5rem;
        margin: 0 1rem 2rem;
    }

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

    .company-logos {
        gap: 2rem;
        margin-top: 2rem;
    }

    .company-logo {
        padding: 1.5rem;
    }

    .company-logo img {
        height: 50px;
    }

    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        min-height: auto;
        padding: 2rem;
    }

    .service-logo-container {
        height: 80px;
        margin-bottom: 1rem;
    }

    .service-icon {
        font-size: 3rem;
    }
}

/* Page-specific styles for Privacy Policy and Terms & Conditions */
.page-content {
    padding: 4rem 0;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #333;
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    color: #667eea;
}

.page-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    color: #333;
}

.page-content p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.page-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: #666;
}

.page-content a {
    color: #667eea;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.page-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.page-content ol li {
    margin-bottom: 1rem;
    color: #666;
}

.page-content strong {
    color: #333;
    font-weight: 600;
}

.highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 5px;
} 