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

/* ============================================
   CINEMATIC THEME - FULL SITE REDESIGN
   ============================================ */

.cinematic-theme {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

/* Cinematic Sections */
.cinematic-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 120px 60px;
}

.cinematic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.5) 50%,
        rgba(10, 10, 10, 0.8) 100%
    );
    z-index: 1;
}

.cinematic-overlay.dark-overlay {
    background: rgba(10, 10, 10, 0.75);
}

.cinematic-overlay.values-overlay {
    background: rgba(10, 10, 10, 0.85);
}

/* Content Positioning */
.cinematic-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.cinematic-content.values-header {
    margin-bottom: 80px;
}

/* Typography */
.section-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.cinematic-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #ffffff;
}

.cinematic-text {
    font-size: 1.25rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    font-weight: 300;
}

/* Asymmetric Layout */
.asymmetric-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    max-width: 1400px;
    align-items: center;
}

.asymmetric-layout.reverse {
    direction: rtl;
}

.asymmetric-layout.reverse > * {
    direction: ltr;
}

.asymmetric-image {
    position: relative;
    overflow: hidden;
}

.asymmetric-image.left-bleed {
    margin-left: -60px;
}

.asymmetric-image.right-bleed {
    margin-right: -60px;
}

.asymmetric-image img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.8s ease;
}

.asymmetric-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.asymmetric-content {
    padding: 60px;
}

.asymmetric-content.right-content {
    padding-left: 100px;
}

.asymmetric-content.left-content {
    padding-right: 100px;
    text-align: right;
}

.asymmetric-content.left-content .cinematic-title,
.asymmetric-content.left-content .cinematic-text {
    text-align: right;
}

/* Values Showcase */
.values-showcase {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.value-item {
    position: relative;
    height: 500px;
    overflow: hidden;
    cursor: pointer;
}

.value-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.4);
    transition: all 0.6s ease;
}

.value-item:hover .value-bg {
    filter: grayscale(0%) brightness(0.6);
    transform: scale(1.1);
}

.value-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    transform: translateY(60px);
    transition: all 0.5s ease;
}

.value-item:hover .value-content {
    transform: translateY(0);
}

.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.value-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.value-item:hover .value-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.5; }
    50% { transform: scaleY(0.5); opacity: 1; }
}

/* Cinematic Navigation */
.cinematic-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    background: transparent;
    transition: all 0.4s ease;
}

.cinematic-nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 20px 60px;
}

.nav-brand a {
    display: block;
    text-decoration: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.admin-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.nav-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0;
}

.nav-logo.loaded {
    opacity: 1;
}

.nav-brand a:hover .nav-logo {
    opacity: 0.8;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

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

/* Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-up.delay-1 {
    transition-delay: 0.2s;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Home Page Cinematic Styles */
.hero-cinematic {
    min-height: 100vh;
}

.hero-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

.cinematic-cta {
    display: inline-block;
    padding: 18px 50px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.cinematic-cta:hover {
    background: #ffffff;
    color: #0a0a0a;
    border-color: #ffffff;
}

.cinematic-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.cinematic-link:hover {
    gap: 15px;
}

.hero-trust-bottom {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
}

/* Services Showcase */
.services-showcase {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    padding: 0 60px;
}

.service-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.4);
    transition: all 0.6s ease;
}

.service-item:hover .service-bg {
    filter: grayscale(0%) brightness(0.6);
    transform: scale(1.1);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.service-item:hover .service-content {
    transform: translateY(0);
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.service-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.service-item:hover .service-content p {
    opacity: 1;
    transform: translateY(0);
}

/* Partners Grid */
.partners-content {
    max-width: 1000px;
}

.partners-grid {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}

.partners-grid::-webkit-scrollbar {
    height: 8px;
}

.partners-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.partners-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

.partners-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    min-height: 180px;
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
}

.partner-logo-img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: grayscale(100%) brightness(200%);
    transition: filter 0.3s ease;
}

.partner-item:hover .partner-logo-img {
    filter: grayscale(0%) brightness(100%);
}

.partner-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-name {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 8px;
}

.partner-location {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

/* CTA Section */
.cta-section {
    min-height: 80vh;
}

.cta-centered {
    text-align: center;
}

.cta-overlay {
    background: rgba(10, 10, 10, 0.7);
}

/* Cinematic Footer */
.cinematic-footer {
    background: #0a0a0a;
    padding: 80px 60px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cinematic-footer .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.cinematic-footer .footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cinematic-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

/* Service List Styles */
.service-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.service-list li {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
}

.service-list li:last-child {
    border-bottom: none;
}

/* Expertise Page Specific */
.expertise-hero {
    min-height: 80vh;
}

.service-detail {
    min-height: 100vh;
}

/* Team Page Styles */
.team-hero {
    min-height: 80vh;
}

.ceo-section {
    min-height: 100vh;
}

.ceo-profile {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    align-items: center;
    padding: 0 60px;
}

@media (min-width: 769px) {
    .ceo-profile {
        flex-direction: row;
        gap: 80px;
    }
}

.ceo-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@media (min-width: 769px) {
    .ceo-image {
        max-width: 500px;
    }
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(20%);
    transition: all 0.8s ease;
    display: block;
}

.ceo-image:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.ceo-content {
    padding: 20px 0;
    width: 100%;
}

.leadership-section {
    min-height: 100vh;
}

.leadership-header {
    margin-bottom: 60px;
}

/* Clean, bounded layout for the team grid container */

    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}


    
    .asymmetric-content.right-content,
    .asymmetric-content.left-content {
        padding: 40px;
        text-align: center;
    }
    
    .asymmetric-content.left-content .cinematic-title,
    .asymmetric-content.left-content .cinematic-text {
        text-align: center;
    }
    
    .values-showcase {
        grid-template-columns: 1fr;
    }
    
    .value-item {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .cinematic-section {
        padding: 80px 20px;
    }
    
    .cinematic-nav {
        padding: 20px 20px;
    }
    
    .nav-logo {
        height: 80px;
    }
    
    .nav-links {
        display: none;
    }
    
    .cinematic-title {
        font-size: 2.5rem;
    }
    
    .cinematic-text {
        font-size: 1rem;
    }
    
    /* Home page mobile */
    .services-showcase {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .service-item {
        height: 250px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-logos {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    /* Team page mobile */
    .ceo-profile {
        padding: 0 20px;
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .ceo-image {
        max-width: 100% !important;
        width: 100% !important;
        aspect-ratio: 3/4 !important;
    }
    
    .ceo-content {
        text-align: center;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }
    
.leader-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/5;
    background: #1a1a1a;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.6s ease;
}
    
    /* Contact page mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cinematic-form-wrapper {
        padding: 0 20px;
    }
}

/* Modern Root Variables - High-End Corporate Palette */
:root {
    --midnight-blue: #0a1628;
    --charcoal: #1a1a2e;
    --electric-blue: #00d4ff;
    --electric-blue-dark: #0099cc;
    --gold-accent: #d4af37;
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --primary-white: #FFFFFF;
    --secondary-silver: #C0C0C0;
    --accent-charcoal: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #555555;
    --silver-hover: #a0a0a0;
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --bg-gradient-start: #0a1628;
    --bg-gradient-end: #1a1a2e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Inter', sans-serif;
    background-color: var(--primary-white);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 0 !important;
    overflow-x: hidden;
}

/* Text Reveal Animation */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
        clip-path: inset(100% 0 0 0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0 0);
    }
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax Background Pattern */
.parallax-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #fafbfc 0%, #f0f2f5 100%);
}

/* Geometric Pattern Overlay */
.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(10, 22, 40, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(10, 22, 40, 0.02) 87.5%, rgba(10, 22, 40, 0.02)),
        linear-gradient(150deg, rgba(10, 22, 40, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(10, 22, 40, 0.02) 87.5%, rgba(10, 22, 40, 0.02)),
        linear-gradient(30deg, rgba(10, 22, 40, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(10, 22, 40, 0.02) 87.5%, rgba(10, 22, 40, 0.02)),
        linear-gradient(150deg, rgba(10, 22, 40, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(10, 22, 40, 0.02) 87.5%, rgba(10, 22, 40, 0.02));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    pointer-events: none;
}

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

/* Navigation Styles - Modern with Scroll Transition */
.navbar {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    padding: 25px 0;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-menu a {
    color: #ffffff;
}

.navbar.scrolled .bar {
    background-color: #ffffff;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    order: 1;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    width: 160px !important;
    height: auto !important;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-charcoal);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
    margin: 0;
    padding: 0;
    order: 2;
    margin-left: auto;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.nav-menu a:hover {
    color: #C0C0C0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-silver); /* Silver color */
    transition: width 0.3s ease;
}

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

.nav-login {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    color: #FFFFFF !important;
    padding: 10px 25px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    font-family: 'Inter', sans-serif !important;
    position: relative;
    margin-left: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.nav-login:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: #FFFFFF !important;
    color: #FFFFFF !important;
    transform: translateY(-1px);
}

/* Glassmorphism Card Styles */
.glass-card {
    background: var(--glass-white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Modern Button Styles with Micro-interactions */
.btn-modern {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--electric-blue) 0%, var(--electric-blue-dark) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-modern:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:active {
    transform: translateY(-1px) scale(1.02);
}

/* Gold Accent Button */
.btn-gold {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #b8941f 100%);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

/* Section Headers - Dynamic Typography */
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--midnight-blue) 0%, var(--charcoal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
}

/* Asymmetric Image Layout */
.image-asymmetric {
    position: relative;
    overflow: visible;
}

.image-asymmetric img {
    width: 120%;
    max-width: none;
    margin-left: -10%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-asymmetric:hover img {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

/* Floating Elements Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Glow Effect */
.glow {
    position: relative;
}

.glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.glow:hover::after {
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    order: 3;
    margin-left: 20px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
}

/* Modern Hero Section - Cinematic Design */
.hero-modern {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 22, 40, 0.7) 0%,
        rgba(10, 22, 40, 0.5) 50%,
        rgba(10, 22, 40, 0.8) 100%
    );
}

/* Modern Floating Navigation */
.navbar-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 50px;
}

.nav-container-modern {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-modern img {
    width: 140px;
    height: auto;
    filter: brightness(0) invert(1);
}

.nav-menu-modern {
    display: flex;
    list-style: none;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.nav-menu-modern a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu-modern a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-ghost {
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.btn-solid {
    padding: 12px 28px;
    background: #ffffff;
    color: #0a1628;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Hero Content */
.hero-content-modern {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 80px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.hero-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

/* Trust Logos Section */
.hero-trust {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 20px;
    max-width: 100%;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
}

.trust-logos::-webkit-scrollbar {
    height: 4px;
}

.trust-logos::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.trust-logos::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.trust-logo {
    height: 35px;
    width: auto;
    filter: grayscale(100%) brightness(2) contrast(0.8);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1) contrast(1);
}

.trust-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.trust-text:hover {
    color: rgba(255, 255, 255, 0.9);
}

.hamburger-modern {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger-modern .bar {
    width: 25px;
    height: 2px;
    background: #ffffff;
    transition: 0.3s;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .nav-menu-modern {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger-modern {
        display: flex;
    }
    
    .trust-logos {
        gap: 25px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1);
    }
    
    .trust-logos::-webkit-scrollbar {
        height: 3px;
    }
    
    .trust-logos::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }
    
    .trust-logos::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 2px;
    }
    
    .trust-text {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .trust-logo {
        height: 25px;
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .navbar-modern {
        padding: 20px 25px;
    }
    
    .logo-modern img {
        width: 100px;
    }
    
    .trust-logos {
        gap: 20px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .trust-text {
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 30%, transparent 70%); /* Dark-to-transparent gradient */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 30%, transparent 70%), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
}

.hero-slide:nth-child(2) {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 30%, transparent 70%), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
}

.hero-slide:nth-child(3) {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 30%, transparent 70%), url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
}

.hero-slide:nth-child(4) {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 30%, transparent 70%), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1974&q=80') no-repeat center center/cover;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 2;
    position: relative;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: var(--primary-white);
}

.indicator:hover {
    background-color: var(--secondary-silver);
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-white);
    color: var(--accent-charcoal);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Overview Section */
.overview {
    padding: 80px 0;
    background-color: var(--primary-white);
}

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

.overview-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.overview-text {
    flex: 1;
    min-width: 300px;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-charcoal);
    text-align: left;
}

.overview-text p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    line-height: 1.8;
    text-align: left;
}

.overview-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.overview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.overview-image img:hover {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--light-gray);
}

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

.services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-charcoal);
}

.services > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card-link {
    text-decoration: none;
    display: block;
}

.service-card {
    background-color: var(--primary-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--medium-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent-charcoal);
}

.service-card p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 0;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card h3,
.service-card p {
    transition: color 0.3s ease;
}

.service-card-link:hover .service-card h3,
.service-card-link:hover .service-card p {
    color: var(--secondary-silver);
}

/* Footer */
footer {
    background-color: var(--accent-charcoal);
    color: var(--primary-white);
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    width: 80px;
    height: auto;
    object-fit: contain;
    display: block;
}

.footer-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-silver);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--secondary-silver);
}

.footer-section p, .footer-section li {
    margin-bottom: 10px;
    color: var(--medium-gray);
}

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

.footer-section ul li a {
    text-decoration: none;
    color: var(--medium-gray);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-silver);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-gray);
    color: var(--medium-gray);
}

/* About Us Page Styles */
.about-us {
    padding: 100px 0 50px;
    background-color: var(--primary-white);
}

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

.about-us h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--accent-charcoal);
}

.company-overview {
    margin-bottom: 60px;
}

.company-overview h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-charcoal);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-silver);
}

.company-overview p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
    line-height: 1.8;
}

.mission-vision {
    margin-bottom: 60px;
}

.mv-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mv-item {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    border: 2px solid var(--secondary-silver);
    border-radius: 8px;
    background-color: var(--light-gray);
}

.mv-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--accent-charcoal);
}

.mv-item p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.7;
}

.core-values h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--accent-charcoal);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    background-color: var(--light-gray);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--medium-gray);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-charcoal);
}

.value-card p {
    font-size: 1rem;
    color: var(--dark-gray);
}

/* Our Expertise Page Styles */
.expertise {
    padding: 100px 0 50px;
    background-color: var(--primary-white);
}

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

.expertise h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-charcoal);
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 60px;
}

.service-section {
    margin-bottom: 80px;
}

.service-header {
    text-align: center;
    margin-bottom: 40px;
}

.service-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--accent-charcoal);
}

.service-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.service-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    min-width: 300px;
}

.service-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-charcoal);
}

.service-text h4 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--accent-charcoal);
}

.service-text p {
    margin-bottom: 20px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.service-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-image img:hover {
    transform: scale(1.05);
}

.service-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.service-table th {
    background-color: var(--secondary-silver);
    color: var(--accent-charcoal);
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.service-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--medium-gray);
    color: var(--dark-gray);
}

.service-table tr:last-child td {
    border-bottom: none;
}

.service-table tr:nth-child(even) {
    background-color: var(--light-gray);
}

.service-table tr:hover {
    background-color: rgba(192, 192, 192, 0.1);
}

/* Leadership & Team Page Styles */
.team {
    padding-top: 20px;
    padding-bottom: 50px;
    background-color: var(--primary-white);
}

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

.team h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 30px;
    color: var(--accent-charcoal);
    margin-top: 20px;
}

.executive-profile {
    margin-bottom: 200px !important; /* CEO Isolation - separates from grid */
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background-color: var(--primary-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05); /* Soft shadow with 5% opacity */
}

.profile-image {
    flex: 0 0 auto;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--light-gray);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-filter: contrast(1.3) saturate(1.3) brightness(1.1) sharpen(1.2);
    filter: contrast(1.3) saturate(1.3) brightness(1.1) sharpen(1.2);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-filter 0.3s ease, filter 0.3s ease;
}

.profile-info {
    flex: 1;
    min-width: 300px;
}

.profile-info h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #1A1A1A; /* Bold Charcoal */
}

.profile-info h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #C0C0C0; /* Silver */
    font-weight: 500;
}

.profile-info p {
    font-size: 1.1rem;
    color: #555555; /* Readable Gray */
    line-height: 1.8;
}

.testimonials {
    margin-top: 60px;
}

.testimonials h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--accent-charcoal);
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--secondary-silver);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Leadership Grid - DELETED (was breaking layout) */

/* The Card Architecture (Anti-Overlap) */

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: visible; /* Allow overflow */
    position: absolute;
    top: -75px; /* Floating Head - positions above card */
    left: 50%;
    transform: translateX(-50%);
    border: 2px solid #C0C0C0; /* 2px silver border */
    background: var(--primary-white); /* Solid white background */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2; /* Ensure image is on top */
    aspect-ratio: 1/1; /* Force square aspect ratio */
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-filter: contrast(1.3) saturate(1.3) brightness(1.1) sharpen(1.2);
    filter: contrast(1.3) saturate(1.3) brightness(1.1) sharpen(1.2);
}

.member-info {
    padding: 0 15px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.member-info h3 {
    font-size: 1.1rem;
    color: #1A1A1A; /* Bold Charcoal */
    margin-top: 100px !important; /* Text Protection - prevents text from going behind image */
    margin-bottom: 8px;
    font-weight: 600;
}

.member-info h4 {
    font-size: 0.8rem;
    color: #C0C0C0; /* Silver */
    margin-bottom: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-info p {
    font-size: 0.85rem;
    color: #555555; /* Readable Gray */
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial blockquote {
    margin: 0 0 20px 0;
    position: relative;
}

.testimonial blockquote:before {
    content: "\201C";
    font-family: Georgia, serif;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: -15px;
    color: var(--secondary-silver);
    opacity: 0.3;
}

.testimonial p {
    font-style: italic;
    color: var(--accent-charcoal);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-left: 20px;
    margin-bottom: 15px;
}

.testimonial cite {
    display: block;
    text-align: right;
    font-style: normal;
    color: var(--dark-gray);
    font-weight: 500;
}

/* Trusted By Industry Leaders Section */
.trusted {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

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

.trusted h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--accent-charcoal);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.trusted-subtitle {
    font-size: 1rem;
    text-align: center;
    color: #6c757d;
    margin-bottom: 60px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 20px 0;
}

.client-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo-wrapper {
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2) contrast(0.9);
    transition: all 0.4s ease;
    opacity: 0.7;
}

.client-card:hover .client-logo {
    filter: grayscale(0%) brightness(1) contrast(1);
    opacity: 1;
    transform: scale(1.05);
}

.country-tag {
    font-size: 0.75rem;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.client-card:hover .country-tag {
    color: #6c757d;
}

@media screen and (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .trusted h2 {
        font-size: 1.6rem;
    }
    
    .trusted-subtitle {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Contact Us Page Styles */
.contact {
    padding: 100px 0 50px;
    background-color: var(--primary-white);
}

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

.contact h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-charcoal);
}

.contact-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.contact-form-section {
    flex: 1;
    min-width: 300px;
}

.contact-form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent-charcoal);
}

.contact-form {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--accent-charcoal);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-silver);
    box-shadow: 0 0 0 2px rgba(192, 192, 192, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-section {
    flex: 1;
    min-width: 300px;
}

.contact-info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent-charcoal);
}

.contact-info {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--accent-charcoal);
}

.contact-item p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin: 0;
}

.map-container {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-charcoal);
}

.map-placeholder {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 20px 0;
    }
    
    .nav-login {
        display: inline-block;
        margin: 10px auto;
        width: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-indicators {
        bottom: 20px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

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

    .about-us h1 {
        font-size: 2.5rem;
    }

    .mv-container {
        flex-direction: column;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .expertise h1 {
        font-size: 2.5rem;
    }

    .service-content {
        flex-direction: column;
    }

    .service-content.reverse {
        flex-direction: column;
    }

    .contact-container {
        flex-direction: column;
    }

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

    .overview-content {
        flex-direction: column;
    }

    .client-card {
        min-width: 120px;
        padding: 15px 10px;
    }
    
    .client-logo {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }

    .trusted h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .about-us h1 {
        font-size: 2rem;
    }
}
/* Form Messages */
.form-success,
.form-error {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    animation: slideDown 0.3s ease;
}

.form-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10b981;
}

.form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-success i,
.form-error i {
    font-size: 1.2rem;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form Button Loading State */
.cinematic-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.cinematic-form button[type="submit"]:disabled:hover {
    transform: none;
}

/* Team Member Card Frame Constraints */

/* Image Frame Boundary Box */






/* Clean Executive Team Grid - Responsive */
#team-grid {
   display: grid !important;
   grid-template-columns: 1fr !important;
   gap: 24px !important;
   width: 100% !important;
   max-width: 1200px !important;
   margin: 0 auto !important;
   padding: 48px 24px !important;
   visibility: visible !important;
   opacity: 1 !important;
   box-sizing: border-box !important;
}

@media (min-width: 640px) {
    #team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important;
    }
}

@media (min-width: 1024px) {
    #team-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 32px !important;
    }
}

.team-card-item {
    width: 100% !important;
    background: #141414 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
}

.team-card-item:hover {
    background: #1a1a1a !important;
    transform: translateY(-4px) !important;
}

.team-card-item .team-card-image {
    width: 100% !important;
    aspect-ratio: 4/5 !important;
    overflow: hidden !important;
    position: relative !important;
}

.team-card-item .team-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
}

.team-card-item .team-card-info {
    width: 100% !important;
    padding: 24px !important;
    text-align: center !important;
    background: #111111 !important;
}

.team-card-item .team-card-info h3 {
    color: #ffffff !important;
    font-size: 1.125rem !important;
    font-weight: 700 !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
}

.team-card-item .team-card-info p {
    color: #ffffff !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    margin: 0 !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

/* ==========================================
   RESPONSIVE FIXES FOR ALL SECTIONS
   ========================================== */

/* Asymmetric Layout - Mobile */
@media (max-width: 1023px) {
    .asymmetric-layout {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .asymmetric-layout.reverse {
        direction: ltr !important;
    }
    
    .asymmetric-image.left-bleed,
    .asymmetric-image.right-bleed {
        margin: 0 !important;
    }
    
    .asymmetric-image img {
        height: 50vh !important;
    }
    
    .asymmetric-content {
        padding: 40px 20px !important;
        text-align: center !important;
    }
    
    .asymmetric-content.right-content,
    .asymmetric-content.left-content {
        padding: 40px 20px !important;
    }
}

/* Leadership Grid Cleanup */
.leadership-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
}

@media (min-width: 640px) {
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (min-width: 1024px) {
    .leadership-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* ==========================================
   SERVICES SHOWCASE - FULL RESPONSIVE FIX
   ========================================== */

/* Desktop: 5 columns */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1400px;
    padding: 0 60px;
}

/* Tablet: 2-3 columns */
@media (max-width: 1200px) {
    .services-showcase {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 40px;
        gap: 24px;
    }
}

/* Small Tablet: 2 columns */
@media (max-width: 900px) {
    .services-showcase {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 30px;
        gap: 20px;
    }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
    .services-showcase {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 24px;
    }
    
    .service-item {
        height: 300px !important; /* Better height for mobile */
    }
}

/* Service items responsive */
.service-item {
    position: relative;
    height: 400px;
    min-height: 300px;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}

/* About page sections */
.about-values,
.about-history {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

@media (max-width: 768px) {
    .about-values,
    .about-history {
        padding: 40px 16px;
    }
}

/* ==========================================
   LOGO FIX - FORCE VISIBILITY ON ALL SCREENS
   ========================================== */

.nav-logo {
    height: 100px !important;
    width: auto !important;
    max-width: 160px !important;
    min-width: 120px !important;
    object-fit: contain !important;
    opacity: 1 !important; /* ALWAYS VISIBLE */
    visibility: visible !important;
    display: block !important;
}

/* Mobile logo */
@media (max-width: 768px) {
    .nav-logo {
        height: 60px !important;
        max-width: 140px !important;
        min-width: 100px !important;
    }
}

/* ==========================================
   TEXT OVERFLOW FIX - FORCE WRAPPING
   ========================================== */

.section-label,
.cinematic-title,
.cinematic-text {
    max-width: 100% !important;
    width: 100% !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    hyphens: auto !important;
}

/* Partners content container */
.partners-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

@media (max-width: 768px) {
    .partners-content {
        padding: 0 16px !important;
    }
    
    .cinematic-title {
        font-size: 2rem !important;
    }
    
    .cinematic-text {
        font-size: 1rem !important;
    }
}
