﻿/* --- VARIABLES & RESET --- */
:root {
    --primary: #007bff;
    --navy: #0a192f;
    --light-navy: #112240;
    --text-main: #333;
    --text-muted: #666;
    --bg-light: #f9fbfd;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-padding {
    padding: 100px 0;
}

.light-bg {
    background: var(--bg-light);
}

/* --- HEADER --- */
.main-header {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 100;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
}

    .logo span {
        color: var(--primary);
        font-weight: 400;
    }

.desktop-nav a {
    text-decoration: none;
    color: var(--navy);
    margin-left: 30px;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-book {
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
}

/* --- HERO --- */
/* --- UPDATED BANNER STYLES --- */
/* Remove the static background from here */
.hero-full {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

/* Container for the slides */
.banner-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    /* Total duration 12s: 3 images x 4s each */
    animation: slideAnimation 12s infinite;
}

    /* Staggered delays for 3 images */
    .slide:nth-child(1) {
        animation-delay: 0s;
    }

    .slide:nth-child(2) {
        animation-delay: 4s;
    }

    .slide:nth-child(3) {
        animation-delay: 8s;
    }

@keyframes slideAnimation {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    5% {
        opacity: 1;
    }
    /* Fade In */
    33% {
        opacity: 1;
    }
    /* Stay Visible */
    38% {
        opacity: 0;
        transform: scale(1.05);
    }
    /* Fade Out + slight zoom effect */
    100% {
        opacity: 0;
    }
}

/* Ensure overlay stays above images but below text */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(75deg, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.4) 100%);
    z-index: 1;
}

.hero-content-center {
    position: relative;
    z-index: 2;
}

.hero-text-premium {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

    .hero-text-premium .eyebrow {
        display: block;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .hero-text-premium h1 {
        font-size: clamp(2.5rem, 5vw, 4.2rem); /* Fluid typography */
        line-height: 1.1;
        margin-bottom: 25px;
        font-weight: 800;
    }

    .hero-text-premium p {
        font-size: 1.2rem;
        margin-bottom: 35px;
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
    }

/* --- UPDATED BUTTONS FOR DARK BG --- */
.btn-primary-large {
    background: var(--primary);
    color: #fff;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 18px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-left: 15px;
    transition: var(--transition);
}

    .btn-outline-white:hover {
        background: #fff;
        color: var(--navy);
    }

/* Subtle Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-text-premium {
        text-align: center;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-outline-white {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .btn-primary-large {
        width: 100%;
        text-align: center;
    }
}

/* --- STATS --- */
.stats-bar {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.stats-flex {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.stat-item h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 5px;
}

/* --- GRID SYSTEM --- */
.grid-card-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* --- SERVICE CARDS --- */
.service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    /* Added to keep link at bottom */
    display: flex;
    flex-direction: column;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }

    .service-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .service-card h3 {
        padding: 20px;
        font-size: 1.3rem;
    }

    .service-card ul {
        padding: 0 20px 25px 40px;
        color: var(--text-muted);
        font-size: 0.9rem;
        flex-grow: 1; /* Pushes the link to the bottom */
    }

/* --- LEARN MORE LINK --- */
.learn-more {
    padding: 0 20px 25px 20px;
    text-decoration: none;
    color: var(--primary, #007bff);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: 0.3s;
}

    .learn-more span {
        display: inline-block;
        transition: transform 0.3s;
    }

    .learn-more:hover {
        color: var(--primary-dark, #0056b3);
    }

        .learn-more:hover span {
            transform: translateX(5px); /* Arrow nudges right on hover */
        }

/* --- PRODUCTS & INDUSTRIES --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.product-item {
    /*background: #fff;*/
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

    .product-item:hover {
        border-color: var(--primary);
        color: var(--primary);
    }
/* --- INDUSTRIES SECTION --- */
/* --- DOMAIN EXPERTISE SECTION --- */
.text-center {
    text-align: center;
}

.eyebrow-pill {
    display: inline-block;
    padding: 6px 16px;
    background: #eef2f6;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.domain-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
}

.domain-subtitle {
    max-width: 700px;
    margin: 0 auto 50px;
    color: var(--text-muted);
    font-size: 1rem;
}

.domain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.domain-card {
    /*background: rgba(255, 255, 255, 0.03);
    padding: 40px 20px;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;*/
    background: rgba(255, 255, 255, 0.03); /* Subtle glass effect */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: left;
    transition: var(--transition);
}

    .domain-card:hover {
        background: rgba(255, 255, 255, 0.06);
        transform: translateY(-5px);
    }

.domain-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/*.domain-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}*/

/* Icon Background Colors based on mockup */
.bg-cyan {
    background: #e0faff;
    color: #00bcd4;
}

.bg-blue {
    background: #eef2ff;
    color: #4f46e5;
}

.bg-purple {
    background: #f5f3ff;
    color: #8b5cf6;
}

.bg-teal {
    background: #f0fdfa;
    color: #14b8a6;
}

.bg-indigo {
    background: #eff6ff;
    color: #3b82f6;
}

.bg-lavender {
    background: #faf5ff;
    color: #a855f7;
}

.bg-sky {
    background: #f0f9ff;
    color: #0ea5e9;
}

.bg-soft-blue {
    background: #f8fafc;
    color: #64748b;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .domain-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .domain-grid {
        grid-template-columns: 1fr;
    }

    .domain-title {
        font-size: 2rem;
    }
}
.industries {
    background-color: #06162d;
    color: #ffffff;
}
/* --- TECHNOLOGY STACK STYLES --- */
.tech-bg {
    background-color: #f8fafc; /* Very light gray background */
}

.tech-header {
    margin-bottom: 40px;
}

    .tech-header .subtitle {
        font-size: 1.1rem;
        color: var(--gray);
        margin-top: -35px; /* Pulls closer to the main title */
        font-weight: 500;
    }

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.tech-pill {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 10px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
}

    .tech-pill:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
    }

.tech-icon-box {
    width: 35px;
    height: 35px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .tech-icon-box img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.tech-pill span {
    font-weight: 700;
    color: #1a202c; /* Deep slate color for text */
    font-size: 1rem;
}

/* Custom styling for the Mytha placeholder logo */
.mytha-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .tech-grid {
        justify-content: center;
    }
}
/* --- CASE STUDIES STYLES --- */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

    .view-all-link:hover {
        text-decoration: underline;
    }

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.case-study-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: var(--transition);
}

    .case-study-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    }

.case-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-body {
    padding: 30px;
}

    .case-body h3 {
        font-size: 1.4rem;
        color: var(--navy);
        margin-bottom: 10px;
        font-weight: 700;
    }

.case-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.case-bullets {
    list-style: none;
    padding: 0;
}

    .case-bullets li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
        color: var(--text-muted);
        font-size: 0.9rem;
    }

        /* Custom bullet icon from mockup */
        .case-bullets li::before {
            content: "•";
            color: var(--primary);
            font-weight: bold;
            position: absolute;
            left: 0;
        }

/* Mobile Responsive */
@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}
/* --- RESOURCES --- */
/* --- KNOWLEDGE HUB STYLES --- */
.knowledge-hub {
    background-color: #0a192f; /* Deep navy from mockup */
    color: #ffffff;
}

.eyebrow-pill-dark {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 123, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00d2ff;
    margin-bottom: 20px;
}

.hub-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.hub-subtitle {
    max-width: 650px;
    margin: 0 auto 60px;
    opacity: 0.7;
    font-size: 1.1rem;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hub-column {
    background: rgba(255, 255, 255, 0.03); /* Subtle glass effect */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: left;
    transition: var(--transition);
}

    .hub-column:hover {
        background: rgba(255, 255, 255, 0.06);
        transform: translateY(-5px);
    }

.hub-category-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.hub-category-header h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.hub-category-header p {
    font-size: 0.85rem;
    opacity: 0.6;
}

.hub-item {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    cursor: pointer;
}

.item-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #00d2ff;
    font-size: 0.9rem;
}

.item-text h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.item-text p {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Icon Colors */
.blue-text {
    color: #00d2ff;
}

.purple-text {
    color: #a855f7;
}

.cyan-text {
    color: #22d3ee;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hub-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hub-grid {
        grid-template-columns: 1fr;
    }
}

/* --- CAREERS --- */
/* --- CAREERS SECTION STYLES --- */
.careers-section {
    background-color: #06162d; /* Matching the dark navy in mockup */
    color: #ffffff;
    padding: 100px 0;
}

.careers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.careers-title {
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.careers-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-tag {
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .benefit-tag span {
        color: #00d2ff; /* Light blue sparkle color */
    }

/* Roles List */
.roles-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.role-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.role-card {
    background: rgba(255, 255, 255, 0.05); /* Glass-like dark transparency */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 25px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

    .role-card:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #00d2ff;
        transform: translateX(5px);
    }

.role-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .role-info i {
        color: #00d2ff;
        font-size: 0.9rem;
    }

.role-card .fa-arrow-right {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 992px) {
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .careers-title {
        font-size: 2.5rem;
    }
}
/* --- GLOBAL PRESENCE V2 --- */
/* --- GLOBAL PRESENCE STYLES --- */
.global-presence-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr; /* Left column narrower than map */
    gap: 40px;
    align-items: center;
}

.office-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.office-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 18px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .office-card:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.04);
    }

/* Style for circular flag icons */
.flag-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    flex-shrink: 0;
}

    .flag-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Active State for USA */
.active-office {
    border-color: #007bff;
    background-color: #f8fbff;
}

.office-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a192f;
    margin: 0 0 2px 0;
}

.office-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

/* Map Wrapper */
.map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.map-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #007bff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .global-presence-grid {
        grid-template-columns: 1fr;
    }

    .map-column {
        order: -1; /* Map appears first on mobile */
    }
}

/* Map Styling */
.map-container {
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-radius: 20px;
}

.map-overlay-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .global-grid-v2 {
        grid-template-columns: 1fr;
    }

    .map-container {
        order: -1; /* Map on top for mobile */
    }
}
/* --- FOOTER --- */
/* --- FINAL FOOTER STYLES --- */
.main-footer {
    background-color: #0a192f;  /*Deep Navy */
    /*background-color: #0a192f;*/
    color: #ffffff;
    padding: 80px 0 30px;
    font-family: 'Inter', sans-serif;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
}

.brand-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 30px;
    max-width: 350px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

    .contact-links a, .contact-links p {
        text-decoration: none;
        color: #fff;
        font-size: 0.9rem;
        opacity: 0.8;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .contact-links i {
        color: #00d2ff;
        width: 16px;
    }

.social-icons {
    display: flex;
    gap: 15px;
}

    .social-icons a {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: all 0.3s ease;
    }

        .social-icons a:hover {
            background: #00d2ff;
            border-color: #00d2ff;
        }

/* Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.link-col h4 {
    font-size: 1rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.link-col ul {
    list-style: none;
    padding: 0;
}

    .link-col ul li {
        margin-bottom: 12px;
    }

        .link-col ul li a {
            text-decoration: none;
            color: #fff;
            opacity: 0.6;
            font-size: 0.9rem;
            transition: 0.3s;
        }

            .link-col ul li a:hover {
                opacity: 1;
                color: #00d2ff;
                padding-left: 5px;
            }

/* Footer Bottom */
.footer-bottom {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

.legal-links {
    display: flex;
    gap: 25px;
}

    .legal-links a {
        color: #fff;
        text-decoration: none;
    }

/* Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .hero-grid, .grid-card-3, .grid-2, .careers-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .desktop-nav {
        display: none;
    }
}

/* Global Font & Heading Increases */
body {
    font-size: 1.1rem;
}
/* Base increase */
h1 {
    font-size: 4rem;
}

h2.section-title, h2.hub-title, h2.domain-title {
    font-size: 3rem !important;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.75rem;
}

/* Background Color Sync */
.light-bg, #services {
    background-color: #f8f9fa; /* Matches the Knowledge Hub/Resources light grey */
}

/* Resources Card Font Increase */
.hub-item h4 {
    font-size: 1.3rem;
}

.hub-item p {
    font-size: 1rem;
}
/* Container for the top half */
.global-top-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Office list left, Images right */
    gap: 40px;
    margin-bottom: 50px;
    align-items: start;
}

/* Landmark Image Container */
.landmark-display {
    width: 100%;
    height: 100%;
    min-height: 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
/* Container for the sliding images */
.landmark-frame {
    position: relative;
    width: 100%; /* Or set a fixed width, e.g., 500px */
    /* CRITICAL: Set the common aspect ratio you want (width / height) */
    aspect-ratio: 16 / 9; /* Wide aspect ratio (common for landmarks) */
    /* aspect-ratio: 4 / 3; */ /* Use this for a taller/squarer look */

    overflow: hidden; /* Hide anything outside the frame */
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Optional: Shadow */
}

/* Base image styling (how ALL images behave) */
.landmark-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Force width of parent */
    height: 100%; /* Force height of parent */
    /* CRITICAL: Fills the space and crops, DOES NOT STRETCH */
    object-fit: cover;
    /* CRITICAL: Centers the cropping */
    object-position: center;
    /* Slider logic (hides inactive images) */
    opacity: 0;
    visibility: hidden;
    transition: opacity .9s ease-in-out, visibility .9s ease-in-out;
}

    /* Styling when active (shown) */
    .landmark-img.active {
        opacity: 1;
        visibility: visible;
    }

/* Ensure the active card has a visible style change */
.office-card.active-office {
    border-left: 4px solid #007bff; /* Example highlight color */
    background-color: #f8f9fa;
}

/* Full Width Map Styling */
.map-row-full {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .map-row-full iframe {
        display: block;
    }

/* Mobile Fix */
@media (max-width: 992px) {
    .global-top-row {
        grid-template-columns: 1fr;
    }

    .landmark-display {
        min-height: 300px;
        order: -1; /* Image appears above list on mobile */
    }
}

/*---------------------------Contacts----------------*/
/* --- CONTACT SECTION STYLES --- */
.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05); /* Soft deep shadow */
    border: 1px solid rgba(0, 0, 0, 0.02);
}

    .contact-card h3 {
        font-size: 1.5rem;
        font-weight: 800;
        margin-bottom: 30px;
        color: var(--navy);
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-field {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #f0f0f0;
    background: #fcfdfe;
    border-radius: 12px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

    .contact-field:focus {
        border-color: #a855f7; /* Purple focus */
        background: #fff;
    }

.contact-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); /* Purple Gradient */
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px; /* Pill shape */
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

    .contact-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(124, 58, 237, 0.4);
    }

/* Info Cards Right Side */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-card {
    background: #f8fafc; /* Subtle grey background */
    padding: 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    border: 1px solid transparent;
}

    .contact-info-card:hover {
        background: #ffffff;
        border-color: #f0f0f0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.03);
        transform: translateX(10px);
    }

.info-icon-box {
    width: 50px;
    height: 50px;
    border: 2px solid #a855f7; /* Purple outline icons */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #a855f7;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--navy);
}

.info-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
/* File Upload Specific Styling */
.file-upload-wrapper {
    position: relative;
}

.file-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
    margin-left: 5px;
}

/* Ensure the file input looks clean */
input[type="file"].contact-field {
    padding: 12px 20px;
    cursor: pointer;
}

/* Reuse your existing contact-card and button styles */
.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
    width: 100%;
}