/**
 * VoxBourne Energy - Modern Theme Styles
 * Redesigned to match reference image
 */

/* Import Google Fonts - Must be at top */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@600;700&display=swap');

/* ============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================ */
:root {
    /* Strict 3-Color Palette */
    --color-primary: #F28120;      /* Orange - Primary CTAs, highlights */
    --color-secondary: #2D6373;    /* Dark Teal - Structure, text, backgrounds */
    --color-accent: #06038D;       /* Deep Blue - Accents, borders, highlights */
    
    /* Derived shades for hierarchy (using only the 3 colors) */
    --color-overlay: rgba(45, 99, 115, 0.85);  /* Secondary with opacity */
    --color-overlay-light: rgba(6, 3, 141, 0.3);  /* Accent with opacity */
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows - using secondary color */
    --shadow-sm: 0 2px 8px rgba(45, 99, 115, 0.1);
    --shadow-md: 0 4px 16px rgba(45, 99, 115, 0.15);
    --shadow-lg: 0 8px 32px rgba(45, 99, 115, 0.2);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--color-secondary);
    background: var(--color-accent);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* ============================================
   MODERN HEADER - TRANSPARENT/STICKY
   ============================================ */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #06038D;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: var(--spacing-sm) 0;
    border-bottom: 2px solid var(--color-primary);
}

.modern-header.scrolled {
    background: #06038D;
    box-shadow: 0 8px 32px rgba(45, 99, 115, 0.15);
    padding: var(--spacing-xs) 0;
    border-bottom: 3px solid var(--color-primary);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Logo Removed - Compact Header */

/* ============================================
   MODERN HAMBURGER MENU SYSTEM
   ============================================ */

/* Hamburger Toggle Button - Compact Header */
.hamburger-toggle {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(242, 129, 32, 0.3);
}

.hamburger-toggle:hover {
    transform: scale(1.05);
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(45, 99, 115, 0.4);
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 16px;
}

.hamburger-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-inner::before {
    top: -6px;
    left: 0;
}

.hamburger-inner::after {
    top: 6px;
    left: 0;
}

/* Active State - Hamburger to X */
.hamburger-toggle.active .hamburger-inner {
    background: transparent;
}

.hamburger-toggle.active:hover {
    background: var(--color-secondary);
}

.hamburger-toggle.active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
    background: var(--color-accent);
}

.hamburger-toggle.active .hamburger-inner::after {
    top: 0;
    transform: rotate(-45deg);
    background: var(--color-accent);
}

/* Navigation Overlay */
.navigation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Navigation Menu */
.navigation-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100vh;
    background: var(--color-accent);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    border-left: 3px solid var(--color-primary);
}

.navigation-overlay.active .navigation-menu {
    transform: translateX(0);
}

/* Menu Header */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-lg);
    border-bottom: 1px solid rgba(45, 99, 115, 0.1);
}

.menu-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.menu-logo .logo-icon {
    background: var(--color-primary);
    color: var(--color-accent);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-logo .logo-text {
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

.menu-logo .logo-accent {
    color: var(--color-primary);
}

/* Close Button */
.menu-close {
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.menu-close:hover {
    background: rgba(242, 129, 32, 0.1);
    transform: scale(1.1);
}

.close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

.close-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.close-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Menu Content */
.menu-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Main Menu */
.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin-bottom: var(--spacing-md);
}

.main-menu .menu-item-has-children {
    position: relative;
}

.menu-link {
    display: block;
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: -0.01em;
}

.menu-link:hover {
    color: var(--color-primary);
    background: rgba(242, 129, 32, 0.1);
    transform: translateX(8px);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--spacing-lg);
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-link:hover::after {
    width: calc(100% - var(--spacing-lg) * 2);
}

/* Submenu */
.sub-menu {
    list-style: none;
    margin: var(--spacing-sm) 0 0 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-menu li:hover .sub-menu {
    max-height: 300px;
}

.sub-menu li {
    margin-bottom: var(--spacing-sm);
    margin-left: var(--spacing-lg);
}

.sub-menu-link {
    display: block;
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.sub-menu-link:hover {
    color: var(--color-primary);
    opacity: 1;
    background: rgba(242, 129, 32, 0.05);
    transform: translateX(4px);
}

/* Menu CTA */
.menu-cta {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(45, 99, 115, 0.1);
}

.menu-cta-btn {
    display: block;
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-primary);
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(242, 129, 32, 0.3);
}

.menu-cta-btn:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 99, 115, 0.4);
}

/* Prevent Body Scroll When Menu is Open */
body.menu-open {
    overflow: hidden;
}

/* Focus States */
.hamburger-toggle:focus,
.menu-close:focus,
.menu-link:focus,
.sub-menu-link:focus,
.menu-cta-btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navigation-menu {
        max-width: 100%;
    }
    
    .menu-header {
        padding: var(--spacing-lg) var(--spacing-md) var(--spacing-md);
    }
    
    .menu-content {
        padding: var(--spacing-md);
    }
    
    .menu-link {
        font-size: 1.1rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .menu-cta {
        margin-top: var(--spacing-lg);
    }
}

/* ============================================
   HERO SECTION - FULL-SCREEN VIDEO (REFERENCE DESIGN)
   ============================================ */
.hero-modern {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #06038D;
}

/* Video Container - Full Coverage with Isolation */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    
    /* Create new composite layer for better performance */
    isolation: isolate;
    contain: layout style;
}

/* HTML5 Video Background - Full Screen with GPU Acceleration */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    background: var(--color-secondary);
    
    /* Performance optimizations for smooth playback */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    
    /* Hardware acceleration */
    -webkit-perspective: 1000;
    perspective: 1000;
    
    /* Smooth rendering */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Fallback Background Image */
.hero-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Hero Overlay - Dark Gradient for Text Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Hero Content Wrapper - Title at Top */
.hero-content-wrapper {
    position: relative;
    z-index: 100;
    width: 100%;
    padding: 60px var(--spacing-lg) 0;
    text-align: center;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Title - Large Orange Uppercase (Reference Design) */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin: 0;
    text-shadow: 0 4px 20px rgba(242, 129, 32, 0.6), 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Hero Subtitle - Hidden in Reference Design */
.hero-subtitle {
    display: none;
}

/* CTA Button Group - Hidden in Reference Design */
.hero-cta-group {
    display: none;
}

/* Primary CTA Button */
.btn-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary.btn-hero {
    background: var(--color-primary);
    color: var(--color-secondary);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(242, 129, 32, 0.4);
}

.btn-primary.btn-hero:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    font-weight: 700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 99, 115, 0.5);
}

/* Secondary CTA Button */
.btn-secondary.btn-hero-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    font-weight: 600;
}

.btn-secondary.btn-hero-outline:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
    border-color: var(--color-primary);
    font-weight: 700;
    transform: translateY(-2px);
}

/* Hero Logo Wrapper - Bottom Center (Reference Design) */
.hero-logo-wrapper {
    position: relative;
    z-index: 100;
    width: 100%;
    padding: 0 var(--spacing-lg) 60px;
    text-align: center;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(242, 129, 32, 0.4));
    transition: all 0.3s ease;
}

.hero-logo:hover {
    filter: drop-shadow(0 12px 32px rgba(242, 129, 32, 0.6));
    transform: scale(1.02);
}

/* Text Logo Fallback */
.hero-logo-text {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 20px rgba(242, 129, 32, 0.6), 0 2px 8px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.2;
}

.hero-logo-text:hover {
    text-shadow: 0 6px 30px rgba(242, 129, 32, 0.8), 0 3px 12px rgba(0, 0, 0, 0.9);
    transform: scale(1.02);
}

/* Scroll Indicator - Hidden in Reference Design */
.hero-scroll-indicator {
    display: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    color: var(--color-accent);
    animation: bounce 2s infinite;
}

.scroll-icon svg {
    width: 20px;
    height: 20px;
}

.scroll-text {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    display: block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ============================================
   HERO SECTION - MOBILE RESPONSIVE
   ============================================ */

/* Tablet - Optimize Layout */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2vw, 1.25rem);
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .hero-logo-wrapper {
        padding: 0 var(--spacing-md) 40px;
    }
}

/* Tablet Optimization */
@media (max-width: 1024px) {
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
        letter-spacing: 0.03em;
    }
    
    .hero-content-wrapper {
        padding: 50px var(--spacing-md) 0;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .hero-logo-wrapper {
        padding: 0 var(--spacing-md) 40px;
    }
}

/* Mobile Portrait - Full Optimization */
@media (max-width: 768px) {
    .hero-modern {
        height: 100vh;
        min-height: 100vh;
        max-height: none;
    }
    
    .hero-video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 100vh;
    }
    
    .hero-video-bg,
    .hero-fallback-bg {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        
        /* Mobile performance optimizations */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    /* Content wrapper - title at top */
    .hero-content-wrapper {
        padding: 40px var(--spacing-sm) 0;
    }
    
    /* Typography - optimized sizes */
    .hero-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        line-height: 1.3;
        letter-spacing: 0.02em;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-logo {
        max-width: 250px;
    }
    
    .hero-logo-wrapper {
        padding: 0 var(--spacing-sm) 30px;
    }
    
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.25rem, 6vw, 2rem);
    }
    
    .hero-logo {
        max-width: 200px;
    }
    
    .hero-logo-wrapper {
        padding: 0 var(--spacing-sm) 20px;
    }
    
    .btn-hero {
        width: 100%;
        max-width: none;
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
        box-sizing: border-box;
    }
    
    /* Scroll Indicator - fixed at bottom, centered, safe from buttons */
    .hero-scroll-indicator {
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        z-index: 100;
        width: auto;
        margin: 0;
    }
    
    .scroll-icon {
        width: 36px;
        height: 36px;
    }
    
    .scroll-text {
        font-size: 0.6875rem;
        letter-spacing: 0.15em;
    }
}

/* Small Mobile - Extra Compact */
@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 90px 1rem 130px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 6.5vw, 2.25rem);
        line-height: 1.25;
        margin-bottom: 0.875rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.875rem, 3.5vw, 1.125rem);
        margin-bottom: 1.75rem;
    }
    
    .btn-hero {
        font-size: 0.875rem;
        padding: 0.875rem 1.25rem;
    }
    
    .hero-cta-group {
        gap: 0.75rem;
    }
    
    .hero-scroll-indicator {
        bottom: 1.25rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .scroll-icon {
        width: 32px;
        height: 32px;
    }
    
    .scroll-text {
        font-size: 0.625rem;
    }
}

/* iOS Safari - Fix viewport height */
@supports (-webkit-touch-callout: none) {
    .hero-modern {
        height: 100vh;
        height: -webkit-fill-available;
        min-height: -webkit-fill-available;
    }
    
    .hero-video-container {
        height: 100vh;
        height: -webkit-fill-available;
        min-height: -webkit-fill-available;
    }
    
    .hero-video-bg,
    .hero-fallback-bg {
        height: 100%;
        min-height: 100%;
    }
}

/* ============================================
   CORE EXPERTISE SECTION - MODERN FUTURISTIC INDUSTRIAL
   ============================================ */

.core-expertise-section {
    position: relative;
    padding: 100px 0;
    background: #06038D;
    overflow: hidden;
}

/* Industrial Gradient Background */
.industrial-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(242, 129, 32, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(45, 99, 115, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Tech Particles Effect */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(242, 129, 32, 0.3) 1px, transparent 1px),
        radial-gradient(circle, rgba(6, 3, 141, 0.2) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    opacity: 0.3;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes particleFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50px); }
}

/* Energy Streaks */
.energy-streaks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(242, 129, 32, 0.1) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: energyPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes energyPulse {
    0%, 100% { background-position: 0% 50%; opacity: 0.3; }
    50% { background-position: 100% 50%; opacity: 0.6; }
}

/* Container */
.expertise-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* ============================================
   SECTION HEADER - GLOWING ORANGE ACCENTS
   ============================================ */
.expertise-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    gap: 30px;
    position: relative;
}

/* Header Glow Elements */
.header-glow-left,
.header-glow-right {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(242, 129, 32, 0.6) 100%);
    box-shadow: 0 0 10px rgba(242, 129, 32, 0.5);
}

.header-glow-right {
    background: linear-gradient(90deg, rgba(242, 129, 32, 0.6) 0%, transparent 100%);
}

/* Title with Glow */
.expertise-title {
    position: relative;
    margin: 0;
    padding: 0;
}

.title-text {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(242, 129, 32, 0.8),
        0 0 40px rgba(242, 129, 32, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(242, 129, 32, 0.3) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 1;
    animation: titleGlowPulse 3s ease-in-out infinite;
}

@keyframes titleGlowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* ============================================
   EXPERTISE GRID - HORIZONTAL LAYOUT
   ============================================ */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    perspective: 1000px;
}

/* ============================================
   EXPERTISE CARD - GLASSMORPHISM & 3D EFFECTS
   ============================================ */
.expertise-card {
    position: relative;
    padding: 30px 20px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform-style: preserve-3d;
    cursor: pointer;
    cursor: default;
    overflow: hidden;
    border: 2px solid var(--color-primary);
    box-shadow: 0 8px 32px rgba(45, 99, 115, 0.15);
}

/* Top Border Strip */
.card-top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    opacity: 0.8;
    transition: opacity 0.45s ease;
}

/* Left Edge Accent Bar */
.card-left-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-primary);
    opacity: 0.6;
    transition: all 0.45s ease;
}

/* Diagonal Hatch Pattern */
.hatch-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(242, 129, 32, 0.03) 10px,
        rgba(242, 129, 32, 0.03) 11px
    );
    pointer-events: none;
}

/* Blueprint Corner Brackets */
.corner-bracket {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: var(--color-accent);
    border-style: solid;
    opacity: 0.4;
    transition: opacity 0.45s ease;
}

.bracket-tl {
    top: 8px;
    left: 8px;
    border-width: 1px 0 0 1px;
}

.bracket-tr {
    top: 8px;
    right: 8px;
    border-width: 1px 1px 0 0;
}

.bracket-bl {
    bottom: 8px;
    left: 8px;
    border-width: 0 0 1px 1px;
}

.bracket-br {
    bottom: 8px;
    right: 8px;
    border-width: 0 1px 1px 0;
}

/* Glassmorphism Card Background */
.card-glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 1;
    transition: all 0.4s ease;
}

/* Glow Border */
.card-border-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(242, 129, 32, 0.3), rgba(45, 99, 115, 0.3));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    filter: blur(8px);
}

/* 3D Icon Container */
.card-icon-container {
    position: relative;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 2;
}

.icon-3d-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: all 0.4s ease;
}

/* Icon Glow Effect */
.icon-glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(242, 129, 32, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: iconGlowPulse 3s ease-in-out infinite;
}

@keyframes iconGlowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* 3D Icon */
.card-icon {
    font-size: 3rem;
    color: var(--color-primary);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(242, 129, 32, 0.5));
    transition: all 0.4s ease;
}

/* Icon Reflection */
.icon-reflection {
    position: absolute;
    bottom: -10px;
    width: 80%;
    height: 20px;
    background: radial-gradient(ellipse, rgba(242, 129, 32, 0.2) 0%, transparent 70%);
    filter: blur(8px);
    opacity: 0.5;
}

/* Icon Watermark */
.icon-watermark {
    position: absolute;
    font-size: 8rem;
    opacity: 0.08;
    color: var(--color-primary);
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.icon-watermark i {
    color: inherit;
}

/* Main Icon */
.card-icon {
    font-size: 4rem;
    position: relative;
    z-index: 2;
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    color: var(--color-primary);
    filter: drop-shadow(0 0 8px rgba(242, 129, 32, 0.3));
}

/* Separator Line */
.card-separator {
    width: 60px;
    height: 2px;
    margin: 15px 0;
    background: var(--color-primary);
    opacity: 0.8;
}

/* Card Content */
.card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

/* Card Title */
.card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    letter-spacing: 0.02em;
}

/* Orange Underline */
.title-underline {
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    margin: 0 auto;
    box-shadow: 0 0 8px rgba(242, 129, 32, 0.6);
    transition: all 0.4s ease;
}

/* Hover Glow Effect */
.card-hover-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(242, 129, 32, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   HOVER EFFECTS - 3D TILT & GLOW
   ============================================ */
.expertise-card:hover {
    transform: translateY(-12px) rotateX(5deg) rotateY(5deg);
}

.expertise-card:hover .card-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.expertise-card:hover .card-border-glow {
    opacity: 1;
    background: linear-gradient(135deg, rgba(242, 129, 32, 0.6), rgba(45, 99, 115, 0.6));
}

.expertise-card:hover .icon-3d-wrapper {
    transform: translateY(-5px) rotateX(10deg) rotateY(10deg) scale(1.1);
}

.expertise-card:hover .icon-glow-effect {
    background: radial-gradient(circle, rgba(242, 129, 32, 0.6) 0%, transparent 70%);
    filter: blur(25px);
}

.expertise-card:hover .card-icon {
    color: #ffffff;
    filter: drop-shadow(0 8px 16px rgba(242, 129, 32, 0.8));
    transform: translateY(-3px);
}

.expertise-card:hover .title-underline {
    width: 60px;
    box-shadow: 0 0 12px rgba(242, 129, 32, 0.8);
}

.expertise-card:hover .card-hover-glow {
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .expertise-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .expertise-title {
        font-size: 3rem;
        letter-spacing: 6px;
    }
}

@media (max-width: 768px) {
    .core-expertise-section {
        padding: 80px 0;
    }
    
    .expertise-container {
        padding: 0 20px;
    }
    
    .expertise-header {
        margin-bottom: 50px;
        gap: 15px;
    }
    
    .expertise-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .expertise-card {
        min-height: 260px;
        padding: 25px 15px;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .card-title {
        font-size: 0.9rem;
    }
    
    .icon-3d-wrapper {
        width: 70px;
        height: 70px;
    }
    
    /* Simplified hover on mobile */
    .expertise-card:hover {
        transform: translateY(-8px);
    }
    
    .expertise-card:hover .icon-3d-wrapper {
        transform: translateY(-3px) scale(1.05);
    }
}

@media (max-width: 480px) {
    .core-expertise-section {
        padding: 60px 0;
    }
    
    .expertise-container {
        padding: 0 15px;
    }
    
    .expertise-header {
        margin-bottom: 40px;
        gap: 10px;
    }
    
    .expertise-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .expertise-card {
        min-height: 240px;
        padding: 20px 15px;
    }
    
    .card-icon {
        font-size: 2.2rem;
    }
    
    .card-title {
        font-size: 0.85rem;
    }
    
    .icon-3d-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .header-glow-left,
    .header-glow-right {
        display: none;
    }
}

/* ============================================
   ABOUT SECTION - MODERN INDUSTRIAL DESIGN
   ============================================ */
.about-industrial {
    position: relative;
    padding: 120px 0;
    background: #06038D;
    overflow: hidden;
}

/* Geometric Background Pattern */
.geometric-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(60deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05)),
        linear-gradient(120deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05));
    background-size: 80px 140px, 80px 140px, 80px 140px, 80px 140px, 60px 100px, 60px 100px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 0 0;
    opacity: 0.3;
    animation: patternFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes patternFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* Hexagonal Overlay */
.hexagonal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(242, 129, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 99, 115, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Container */
.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Two-Column Grid */
.about-grid-industrial {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* ============================================
   LEFT COLUMN - CONTENT
   ============================================ */
.about-content-left {
    position: relative;
}

/* Main Heading */
.about-heading-wrapper {
    margin-bottom: 40px;
}

.about-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #f28120;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.heading-underline {
    width: 80px;
    height: 3px;
    background: var(--color-primary);
    box-shadow: 0 0 10px rgba(242, 129, 32, 0.5);
}

/* Company Description */
.about-description {
    margin-bottom: 50px;
}

.about-description p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #f28120;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* Mission & Vision Blocks */
.mission-vision-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mission-block,
.vision-block {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mission-block:hover,
.vision-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(242, 129, 32, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Diamond Icon Container */
.icon-diamond {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diamond-rotated {
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(242, 129, 32, 0.3);
    transition: all 0.3s ease;
}

.mission-block:hover .diamond-rotated,
.vision-block:hover .diamond-rotated {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 129, 32, 0.5);
}

.mission-icon,
.vision-icon {
    transform: rotate(-45deg);
    font-size: 1.2rem;
    color: #ffffff;
}

/* Block Content */
.block-content {
    flex: 1;
}

.block-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.block-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #f28120;
    margin: 0;
}

/* ============================================
   RIGHT COLUMN - STATS
   ============================================ */
.about-stats-right {
    position: relative;
}

.stats-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.stats-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f28120;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Stats List */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item:hover {
    padding-left: 10px;
    border-bottom-color: rgba(242, 129, 32, 0.3);
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #f28120;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    text-shadow: 0 0 8px rgba(242, 129, 32, 0.5);
}

/* ============================================
   ABOUT SECTION - RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-industrial {
        padding: 100px 0;
    }
    
    .about-container {
        padding: 0 30px;
    }
    
    .about-grid-industrial {
        gap: 60px;
    }
    
    .about-heading {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    
    .mission-vision-blocks {
        gap: 25px;
    }
    
    .stats-container {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .about-industrial {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .about-grid-industrial {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-heading {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
    }
    
    .about-heading-wrapper {
        margin-bottom: 30px;
    }
    
    .about-description {
        margin-bottom: 40px;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .mission-vision-blocks {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-block,
    .vision-block {
        padding: 20px;
        gap: 15px;
    }
    
    .icon-diamond {
        width: 50px;
        height: 50px;
    }
    
    .diamond-rotated {
        width: 40px;
        height: 40px;
    }
    
    .mission-icon,
    .vision-icon {
        font-size: 1rem;
    }
    
    .block-title {
        font-size: 1rem;
    }
    
    .block-description {
        font-size: 0.85rem;
    }
    
    .stats-container {
        padding: 30px;
    }
    
    .stats-heading {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .stat-item {
        padding: 12px 0;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-industrial {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .about-grid-industrial {
        gap: 40px;
    }
    
    .about-heading {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }
    
    .heading-underline {
        width: 60px;
        height: 2px;
    }
    
    .about-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .mission-block,
    .vision-block {
        padding: 18px;
        gap: 12px;
    }
    
    .icon-diamond {
        width: 45px;
        height: 45px;
    }
    
    .diamond-rotated {
        width: 35px;
        height: 35px;
        border-radius: 6px;
    }
    
    .mission-icon,
    .vision-icon {
        font-size: 0.9rem;
    }
    
    .block-title {
        font-size: 0.95rem;
    }
    
    .block-description {
        font-size: 0.8rem;
    }
    
    .stats-container {
        padding: 25px;
    }
    
    .stats-heading {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .stat-item {
        padding: 10px 0;
        gap: 10px;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-value {
        font-size: 0.95rem;
    }
}

/* ============================================
   TEAM SECTION - FUTURISTIC DESIGN
   ============================================ */
.team-futuristic {
    position: relative;
    padding: 100px 0;
    background: #06038D;
    overflow: hidden;
}

/* Tech Circuit Pattern Background */
.tech-circuit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, rgba(242, 129, 32, 0.03) 0px, transparent 1px, transparent 40px, rgba(242, 129, 32, 0.03) 41px),
        repeating-linear-gradient(0deg, rgba(45, 99, 115, 0.03) 0px, transparent 1px, transparent 40px, rgba(45, 99, 115, 0.03) 41px);
    opacity: 0.5;
    animation: circuitPulse 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes circuitPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Glowing Particles */
.glowing-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(242, 129, 32, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(45, 99, 115, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(242, 129, 32, 0.1) 0%, transparent 40%);
    animation: particleGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleGlow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Container */
.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Section Heading */
.team-heading-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.team-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    text-transform: uppercase;
    margin: 0;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 20px rgba(242, 129, 32, 0.8),
        0 0 40px rgba(242, 129, 32, 0.5),
        0 0 60px rgba(242, 129, 32, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

.team-heading-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(242, 129, 32, 0.3) 0%, transparent 70%);
    filter: blur(30px);
    animation: headingGlowPulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes headingGlowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    perspective: 1000px;
}

/* Team Card */
.team-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

/* Glowing Border */
.card-glow-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(242, 129, 32, 0.4), rgba(45, 99, 115, 0.4));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    filter: blur(10px);
}

/* Glassmorphism Background */
.card-glass-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 50, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: 1;
    transition: all 0.4s ease;
}

/* Team Image Wrapper */
.team-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    z-index: 2;
}

.image-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(242, 129, 32, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 15, 28, 0.8) 100%);
    z-index: 3;
    transition: opacity 0.4s ease;
}

/* Team Info */
.team-info {
    position: relative;
    padding: 25px;
    z-index: 2;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-align: center;
    line-height: 1.3;
}

.first-name {
    color: #ffffff;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.last-name {
    color: var(--color-primary);
    display: block;
    text-shadow: 
        0 0 10px rgba(242, 129, 32, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Role Badge */
.role-badge {
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.role-text {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(242, 129, 32, 0.1);
    border: 1px solid rgba(242, 129, 32, 0.3);
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(242, 129, 32, 0.2) 0%, transparent 70%);
    border-radius: 25px;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Hover Overlay */
.card-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(242, 129, 32, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 4;
    pointer-events: none;
}

/* ============================================
   TEAM CARD HOVER EFFECTS
   ============================================ */
.team-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.team-card:hover .card-glow-border {
    opacity: 1;
}

.team-card:hover .card-glass-bg {
    background: rgba(26, 35, 50, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-color: rgba(242, 129, 32, 0.3);
}

.team-card:hover .image-glow-effect {
    opacity: 1;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-card:hover .image-overlay {
    opacity: 0.7;
}

.team-card:hover .role-text {
    background: rgba(242, 129, 32, 0.2);
    border-color: rgba(242, 129, 32, 0.5);
    color: #ffffff;
}

.team-card:hover .badge-glow {
    opacity: 1;
}

.team-card:hover .card-hover-overlay {
    opacity: 1;
}

/* ============================================
   TEAM SECTION - RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .team-futuristic {
        padding: 80px 0;
    }
    
    .team-container {
        padding: 0 30px;
    }
    
    .team-grid {
        gap: 30px;
    }
    
    .team-heading {
        font-size: clamp(2rem, 4vw, 3rem);
    }
}

@media (max-width: 768px) {
    .team-futuristic {
        padding: 60px 0;
    }
    
    .team-container {
        padding: 0 20px;
    }
    
    .team-heading-wrapper {
        margin-bottom: 40px;
    }
    
    .team-heading {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        letter-spacing: 0.15em;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .team-card:hover {
        transform: translateY(-10px) scale(1.01);
    }
    
    .team-name {
        font-size: 1.3rem;
    }
    
    .role-text {
        font-size: 0.85rem;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {
    .team-futuristic {
        padding: 50px 0;
    }
    
    .team-container {
        padding: 0 15px;
    }
    
    .team-heading {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .team-info {
        padding: 20px;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .role-text {
        font-size: 0.8rem;
        padding: 7px 18px;
    }
}

/* ============================================
   CORE SERVICES SECTION - INDUSTRIAL DESIGN
   ============================================ */
.core-services-section {
    position: relative;
    padding: 100px 0;
    background: #06038D;
    overflow: hidden;
}

/* Geometric Background Pattern */
.core-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(60deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05)),
        linear-gradient(120deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05));
    background-size: 80px 140px, 80px 140px, 80px 140px, 80px 140px, 60px 100px, 60px 100px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 0 0;
    opacity: 0.3;
    animation: patternFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes patternFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* Hexagonal Overlay */
.core-services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(242, 129, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 99, 115, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Container */
.core-services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Section Heading */
.core-services-heading {
    text-align: center;
    margin-bottom: 80px;
}

.core-services-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f28120;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.title-underline-bar {
    width: 80px;
    height: 3px;
    background: #f28120;
    margin: 0 auto;
    box-shadow: 0 0 8px rgba(242, 129, 32, 0.4);
}

/* Two-Column Grid Layout */
.core-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Service Groups */
.service-group {
    margin-bottom: 50px;
}

.service-group:last-child {
    margin-bottom: 0;
}

/* Service Titles */
.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f28120;
    margin: 0 0 20px 0;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Bullet Lists */
.service-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #f28120;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.service-bullets li:last-child {
    margin-bottom: 0;
}

.service-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #f28120;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Hover Effects */
.service-bullets li:hover {
    color: #ffffff; /* White on hover */
}

.service-bullets li:hover::before {
    transform: rotate(45deg) scale(1.2);
}

/* Left Column Specific */
.services-column-left .service-group {
    padding-right: 20px;
}

/* Right Column Specific */
.services-column-right .service-group {
    padding-left: 20px;
}

/* ============================================
   CORE SERVICES - RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .core-services-section {
        padding: 80px 0;
    }
    
    .core-services-container {
        padding: 0 30px;
    }
    
    .core-services-grid {
        gap: 50px;
    }
    
    .core-services-heading {
        margin-bottom: 60px;
    }
    
    .core-services-title {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-bullets li {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .core-services-section {
        padding: 60px 0;
    }
    
    .core-services-container {
        padding: 0 20px;
    }
    
    .core-services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .core-services-heading {
        margin-bottom: 50px;
    }
    
    .core-services-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        letter-spacing: 0.08em;
    }
    
    .title-underline-bar {
        width: 60px;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .service-bullets li {
        font-size: 0.85rem;
        margin-bottom: 10px;
        padding-left: 18px;
    }
    
    .service-bullets li::before {
        width: 6px;
        height: 6px;
        top: 7px;
    }
    
    .services-column-left .service-group,
    .services-column-right .service-group {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .core-services-section {
        padding: 50px 0;
    }
    
    .core-services-container {
        padding: 0 15px;
    }
    
    .core-services-grid {
        gap: 30px;
    }
    
    .core-services-heading {
        margin-bottom: 40px;
    }
    
    .core-services-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        letter-spacing: 0.05em;
    }
    
    .title-underline-bar {
        width: 50px;
        height: 2px;
    }
    
    .service-group {
        margin-bottom: 30px;
    }
    
    .service-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .service-bullets li {
        font-size: 0.8rem;
        margin-bottom: 8px;
        padding-left: 16px;
    }
    
    .service-bullets li::before {
        width: 5px;
        height: 5px;
        top: 6px;
    }
}

/* ============================================
   CORE PRODUCTS SECTION - INDUSTRIAL DESIGN
   ============================================ */
.core-products-section {
    position: relative;
    padding: 100px 0;
    background: #06038D;
    overflow: hidden;
}

/* Geometric Background Pattern */
.core-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(60deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05)),
        linear-gradient(120deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05));
    background-size: 80px 140px, 80px 140px, 80px 140px, 80px 140px, 60px 100px, 60px 100px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 0 0;
    opacity: 0.3;
    animation: patternFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes patternFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* Hexagonal Overlay */
.core-products-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(242, 129, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 99, 115, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Container */
.core-products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Section Heading */
.core-products-heading {
    text-align: center;
    margin-bottom: 80px;
}

.core-products-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #F28120; /* Primary orange */
    text-transform: uppercase;
    margin: 0 0 20px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.products-underline-bar {
    width: 80px;
    height: 3px;
    background: #F28120; /* Primary orange */
    margin: 0 auto;
    box-shadow: 0 0 8px rgba(242, 129, 32, 0.4);
}

/* Two-Column Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Product Cards */
.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(247, 147, 30, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product-card:last-child {
    margin-bottom: 0;
}

/* Product Header with Icon and Name */
.product-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

/* Network Icon Wrapper */
.product-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

/* Network Icon - Connected Dots */
.network-icon {
    position: relative;
    width: 100%;
    height: 100%;
}

.node-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #f7931e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(247, 147, 30, 0.4);
}

.node-dot:nth-child(1) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.node-dot:nth-child(2) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.node-dot:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.connection-line {
    position: absolute;
    background: rgba(247, 147, 30, 0.3);
    transform-origin: center;
}

.connection-line:nth-child(4) {
    width: 20px;
    height: 1px;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
}

.connection-line:nth-child(5) {
    width: 1px;
    height: 20px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.connection-line:nth-child(6) {
    width: 1px;
    height: 20px;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
}

/* Floating Dots */
.floating-dots {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: floatDot 3s ease-in-out infinite;
}

.floating-dot.orange {
    background: #f7931e;
    box-shadow: 0 0 6px rgba(247, 147, 30, 0.6);
}

.floating-dot.gray {
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
}

.floating-dot:nth-child(1) {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.floating-dot:nth-child(2) {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.floating-dot:nth-child(3) {
    top: 80%;
    right: 30%;
    animation-delay: 2s;
}

@keyframes floatDot {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-5px) scale(1.2);
        opacity: 1;
    }
}

/* Product Name with Highlight */
.product-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: #F28120;
}

.nano-prefix {
    color: rgba(255, 255, 255, 0.8);
    display: inline;
}

.product-highlight {
    color: #F28120; /* Orange highlight */
    display: inline;
    text-shadow: 0 0 8px rgba(242, 129, 32, 0.4);
}

/* Product Subtitle */
.product-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 25px 0;
    font-style: italic;
    line-height: 1.4;
}

/* Product Category */
.product-category {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F28120;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Product Bullet Points */
.product-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    color: #F28120;
    font-size: 0.95rem;
    line-height: 1.5;
}

.product-bullets li:last-child {
    margin-bottom: 0;
}

.product-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #F28120;
    transform: rotate(45deg);
    box-shadow: 0 0 4px rgba(242, 129, 32, 0.4);
}

/* ============================================
   PRODUCT CARD HOVER EFFECTS
   ============================================ */
.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 129, 32, 0.3);
    box-shadow: 0 10px 30px rgba(242, 129, 32, 0.1);
}

.product-card:hover .product-highlight {
    text-shadow: 0 0 12px rgba(242, 129, 32, 0.6);
}

.product-card:hover .product-bullets li::before {
    box-shadow: 0 0 8px rgba(242, 129, 32, 0.6);
}

/* ============================================
   CORE PRODUCTS - RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .core-products-section {
        padding: 80px 0;
    }
    
    .core-products-container {
        padding: 0 30px;
    }
    
    .products-grid {
        gap: 50px;
    }
    
    .core-products-heading {
        margin-bottom: 60px;
    }
    
    .core-products-title {
        font-size: clamp(2rem, 3.5vw, 3rem);
    }
    
    .product-card {
        padding: 35px;
        margin-bottom: 35px;
    }
    
    .product-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .core-products-section {
        padding: 60px 0;
    }
    
    .core-products-container {
        padding: 0 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .core-products-heading {
        margin-bottom: 50px;
    }
    
    .core-products-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        letter-spacing: 0.08em;
    }
    
    .products-underline-bar {
        width: 60px;
    }
    
    .product-card {
        padding: 30px;
        margin-bottom: 30px;
    }
    
    .product-header {
        gap: 15px;
    }
    
    .product-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .product-name {
        font-size: 1.4rem;
    }
    
    .product-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .product-category {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .product-bullets li {
        font-size: 0.9rem;
        margin-bottom: 10px;
        padding-left: 18px;
    }
    
    .product-bullets li::before {
        width: 6px;
        height: 6px;
        top: 7px;
    }
}

@media (max-width: 480px) {
    .core-products-section {
        padding: 50px 0;
    }
    
    .core-products-container {
        padding: 0 15px;
    }
    
    .products-grid {
        gap: 30px;
    }
    
    .core-products-heading {
        margin-bottom: 40px;
    }
    
    .core-products-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        letter-spacing: 0.05em;
    }
    
    .products-underline-bar {
        width: 50px;
        height: 2px;
    }
    
    .product-card {
        padding: 25px;
        margin-bottom: 25px;
    }
    
    .product-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .product-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    
    .product-name {
        font-size: 1.3rem;
    }
    
    .product-subtitle {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .product-category {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    
    .product-bullets li {
        font-size: 0.85rem;
        margin-bottom: 8px;
        padding-left: 16px;
    }
    
    .product-bullets li::before {
        width: 5px;
        height: 5px;
        top: 6px;
    }
}

/* ============================================
   INDUSTRIES SERVED SECTION - CIRCULAR INFOGRAPHIC
   ============================================ */
.industries-served-section {
    position: relative;
    padding: 120px 0;
    background: #06038D;
    overflow: hidden;
}

/* Geometric Background Pattern */
.industries-served-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(60deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05)),
        linear-gradient(120deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05));
    background-size: 80px 140px, 80px 140px, 80px 140px, 80px 140px, 60px 100px, 60px 100px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 0 0;
    opacity: 0.3;
    animation: patternFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes patternFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* Hexagonal Overlay */
.industries-served-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(242, 129, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 99, 115, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Container */
.industries-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Two-Column Grid */
.industries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ============================================
   LEFT SIDE - TEXT CONTENT
   ============================================ */
.industries-text-content {
    max-width: 500px;
}

.industries-heading {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #F5A623; /* Golden yellow */
    text-transform: uppercase;
    margin: 0 0 20px 0;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(245, 166, 35, 0.3);
}

.heading-underline-accent {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #F5A623 0%, rgba(245, 166, 35, 0.3) 100%);
    margin: 0 0 30px 0;
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.4);
}

.industries-description {
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   RIGHT SIDE - CIRCULAR WHEEL INFOGRAPHIC
   ============================================ */
.industries-wheel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.industries-wheel-container {
    position: relative;
    width: 500px;
    height: 500px;
}

/* ============================================
   SIMPLIFIED INDUSTRIES SECTION - DARK/TECH STYLE
   ============================================ */

/* Two-Column Grid Layout */
.industries-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: center;
}

/* Left Column - Text Content */
.industries-text-content {
    padding-right: 20px;
}

/* Industries Heading */
.industries-heading {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f28120;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
}

/* Heading Underline */
.heading-underline-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF7A00, #F5A623);
    margin-bottom: 30px;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.4);
}

/* Industries Description */
.industries-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #f28120;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Industry List */
.industries-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-top: 30px;
}

.industry-item {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateX(5px);
}

.industry-bullet {
    color: #FF7A00;
    font-size: 1.2rem;
    margin-right: 10px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 122, 0, 0.5);
}

.industry-name {
    color: #f28120;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.industry-item:hover .industry-name {
    color: #f28120;
    font-weight: 600;
}

/* Right Column - Placeholder Image */
.industries-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.industries-image-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.industries-image-container:hover {
    transform: translateY(-5px);
}

/* Placeholder Image */
.industries-placeholder-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.industries-image-container:hover .industries-placeholder-image {
    transform: scale(1.02);
}

/* ============================================
   ENHANCED HOVER EFFECTS FOR PLACEHOLDER WHEEL
   ============================================ */

/* Label Highlighting on Hover */
.industry-label:hover .label-text {
    color: #F5A623;
    font-weight: 700;
    opacity: 1;
    text-shadow: 0 0 8px rgba(245, 166, 35, 0.4);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* Container Hover Effects */
.industries-wheel-container:hover .industries-wheel-placeholder {
    filter: drop-shadow(0 0 40px rgba(245, 166, 35, 0.3));
}

/* Scroll Animation */
.industries-served-section[data-aos="fade-in"] .wheel-placeholder-container {
    animation: wheelRotateIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes wheelRotateIn {
    from {
        opacity: 0;
        transform: rotate(-15deg) scale(0.8);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
        filter: blur(0px);
    }
}

/* Label Connector Hover Effects */
.industry-label:hover .label-connector {
    filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.8));
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* ============================================
   RESPONSIVE DESIGN FOR SIMPLIFIED LAYOUT
   ============================================ */
@media (max-width: 1024px) {
    .industries-served-section {
        padding: 100px 0;
    }
    
    .industries-container {
        padding: 0 30px;
    }
    
    .industries-grid {
        gap: 50px;
    }
    
    .industries-heading {
        font-size: 2.2rem;
    }
    
    .industries-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .industries-served-section {
        padding: 80px 0;
    }
    
    .industries-container {
        padding: 0 20px;
    }
    
    /* Stack layout for mobile */
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .industries-text-content {
        order: 1;
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .industries-image-wrapper {
        order: 2;
    }
    
    .industries-image-container {
        max-width: 420px;
        margin: 0 auto;
    }
    
    .industries-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .heading-underline-accent {
        margin: 0 auto 30px auto;
    }
    
    .industries-description {
        font-size: 1rem;
        text-align: center;
    }
    
    /* Industry list adjustments for mobile */
    .industries-list {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        margin: 30px auto 0 auto;
    }
    
    .industry-item {
        justify-content: center;
        text-align: left;
    }
    
    .industry-item:hover {
        transform: translateX(0);
        transform: scale(1.02);
    }
}

@media (max-width: 480px) {
    .industries-served-section {
        padding: 60px 0;
    }
    
    .industries-container {
        padding: 0 15px;
    }
    
    .industries-grid {
        gap: 30px;
    }
    
    .industries-heading {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }
    
    .industries-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .industries-list {
        gap: 12px;
        margin-top: 25px;
    }
    
    .industry-name {
        font-size: 0.9rem;
    }
    
    .industries-image-container {
        max-width: 100%;
        border-radius: 8px;
    }
    
    .industries-placeholder-image {
        border-radius: 8px;
    }
}

/* ============================================
   KEY CLIENTS SECTION - DARK NAVY WITH ORANGE ACCENTS
   ============================================ */
.key-clients-section {
    padding: 120px 0;
    background: #06038D;
    position: relative;
    overflow: hidden;
}

/* Geometric Background Pattern */
.key-clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(60deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05)),
        linear-gradient(120deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05));
    background-size: 80px 140px, 80px 140px, 80px 140px, 80px 140px, 60px 100px, 60px 100px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 0 0;
    opacity: 0.3;
    animation: patternFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes patternFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* Hexagonal Overlay */
.key-clients-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(242, 129, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 99, 115, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.key-clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Two-Column Grid Layout */
.key-clients-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 80px;
    align-items: start;
}

/* Left Column - Text Content */
.key-clients-text-content {
    padding-right: 40px;
}

/* Key Clients Heading */
.key-clients-heading {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #F28120;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(242, 129, 32, 0.3);
}

/* Orange Underline */
.key-clients-underline {
    width: 100px;
    height: 6px;
    background: #F28120;
    margin-bottom: 40px;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(242, 129, 32, 0.4);
}

/* Key Clients Description */
.key-clients-description {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #f28120;
    font-weight: 400;
    margin: 0;
}

/* Right Column - Client Lists */
.key-clients-lists-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Client Group */
.client-group {
    background: rgba(242, 129, 32, 0.05);
    border: 1px solid rgba(242, 129, 32, 0.2);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.client-group:hover {
    background: rgba(242, 129, 32, 0.08);
    border-color: rgba(242, 129, 32, 0.3);
    transform: translateY(-2px);
}

/* Client Group Heading */
.client-group-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #F28120;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-group-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px rgba(242, 129, 32, 0.5));
}

/* Client List */
.client-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Client Item */
.client-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.client-item:hover {
    transform: translateX(8px);
}

/* Client Checkbox */
.client-checkbox {
    color: #F28120;
    font-size: 1.1rem;
    font-weight: bold;
    min-width: 20px;
    text-shadow: 0 0 8px rgba(242, 129, 32, 0.4);
}

/* Client Name */
.client-name {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.client-item:hover .client-name {
    color: #F28120;
    text-shadow: 0 0 15px rgba(242, 129, 32, 0.6);
    font-weight: 700;
}

/* ============================================
   RESPONSIVE DESIGN FOR KEY CLIENTS SECTION
   ============================================ */
@media (max-width: 1024px) {
    .key-clients-section {
        padding: 100px 0;
    }
    
    .key-clients-container {
        padding: 0 20px;
    }
    
    .key-clients-grid {
        gap: 60px;
    }
    
    .key-clients-heading {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    
    .key-clients-description {
        font-size: 1.2rem;
    }
    
    .client-group {
        padding: 25px;
    }
    
    .client-group-heading {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .key-clients-section {
        padding: 80px 0;
    }
    
    /* Stack layout for mobile */
    .key-clients-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .key-clients-text-content {
        order: 1;
        padding-right: 0;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .key-clients-lists-content {
        order: 2;
        gap: 30px;
    }
    
    .key-clients-heading {
        font-size: 2.5rem;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .key-clients-underline {
        margin: 0 auto 30px auto;
    }
    
    .key-clients-description {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .client-group {
        padding: 20px;
    }
    
    .client-group-heading {
        font-size: 1.2rem;
        justify-content: center;
        text-align: center;
    }
    
    .client-list {
        gap: 15px;
    }
    
    .client-item {
        padding: 6px 0;
    }
    
    .client-item:hover {
        transform: translateX(5px);
    }
    
    .client-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .key-clients-section {
        padding: 60px 0;
    }
    
    .key-clients-container {
        padding: 0 15px;
    }
    
    .key-clients-grid {
        gap: 30px;
    }
    
    .key-clients-heading {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }
    
    .key-clients-description {
        font-size: 1rem;
    }
    
    .key-clients-lists-content {
        gap: 25px;
    }
    
    .client-group {
        padding: 15px;
    }
    
    .client-group-heading {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .client-list {
        gap: 12px;
    }
    
    .client-item {
        gap: 12px;
        padding: 4px 0;
    }
    
    .client-name {
        font-size: 0.95rem;
    }
    
    .client-checkbox {
        font-size: 1rem;
        min-width: 18px;
    }
}

/* ============================================
   CERTIFICATIONS / COMPLIANCE SECTION - DARK PATTERNED BACKGROUND
   ============================================ */
.certifications-section {
    padding: 120px 0;
    background: #06038D;
    position: relative;
    overflow: hidden;
}

/* Geometric Background Pattern */
.certifications-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(60deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05)),
        linear-gradient(120deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05));
    background-size: 80px 140px, 80px 140px, 80px 140px, 80px 140px, 60px 100px, 60px 100px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 0 0;
    opacity: 0.3;
    animation: patternFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes patternFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* Hexagonal Overlay */
.certifications-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(242, 129, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 99, 115, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.certifications-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.certifications-content {
    text-align: center;
}

/* Certifications Heading */
.certifications-heading {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f28120;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 0 25px rgba(242, 129, 32, 0.3);
}

/* Orange Underline */
.certifications-underline {
    width: 80px;
    height: 4px;
    background: #f28120;
    margin: 0 auto 50px auto;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(242, 129, 32, 0.4);
}

/* Certifications List */
.certifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

/* Certification Item */
.certification-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(242, 129, 32, 0.1);
}

.certification-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.certification-item:hover {
    transform: translateX(10px);
    background: rgba(242, 129, 32, 0.02);
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px;
}

/* Square Bullet Icon */
.certification-bullet {
    color: #f28120;
    font-size: 1.2rem;
    font-weight: bold;
    min-width: 20px;
    margin-top: 2px;
    text-shadow: 0 0 8px rgba(242, 129, 32, 0.4);
    display: inline-block;
    border: 2px solid #f28120;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    position: relative;
    background: transparent;
}

/* Certification Text */
.certification-text {
    color: #f28120;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    flex: 1;
    transition: all 0.3s ease;
}

.certification-item:hover .certification-text {
    color: #ff9d4d;
    text-shadow: 0 0 10px rgba(242, 129, 32, 0.3);
    font-weight: 600;
}

.certification-item:hover .certification-bullet {
    background: #f28120;
    box-shadow: 0 0 15px rgba(242, 129, 32, 0.6);
}

/* ============================================
   RESPONSIVE DESIGN FOR CERTIFICATIONS SECTION
   ============================================ */
@media (max-width: 1024px) {
    .certifications-section {
        padding: 100px 0;
    }
    
    .certifications-container {
        padding: 0 20px;
    }
    
    .certifications-heading {
        font-size: 2.5rem;
        letter-spacing: 1.5px;
    }
    
    .certifications-list {
        max-width: 700px;
    }
    
    .certification-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .certifications-section {
        padding: 80px 0;
    }
    
    .certifications-container {
        padding: 0 15px;
    }
    
    .certifications-content {
        text-align: center;
    }
    
    .certifications-heading {
        font-size: 2rem;
        letter-spacing: 1px;
        text-align: center;
    }
    
    .certifications-underline {
        margin: 0 auto 40px auto;
        width: 60px;
        height: 3px;
    }
    
    .certifications-list {
        max-width: 100%;
        text-align: left;
    }
    
    .certification-item {
        padding: 12px 15px;
        margin-bottom: 20px;
        gap: 12px;
    }
    
    .certification-item:hover {
        transform: translateX(5px);
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .certification-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .certification-bullet {
        width: 14px;
        height: 14px;
        min-width: 14px;
        font-size: 1rem;
        margin-top: 1px;
    }
}

@media (max-width: 480px) {
    .certifications-section {
        padding: 60px 0;
    }
    
    .certifications-container {
        padding: 0 10px;
    }
    
    .certifications-heading {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }
    
    .certifications-underline {
        margin: 0 auto 30px auto;
        width: 50px;
        height: 3px;
    }
    
    .certification-item {
        padding: 10px 12px;
        margin-bottom: 15px;
        gap: 10px;
    }
    
    .certification-item:hover {
        transform: translateX(3px);
    }
    
    .certification-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .certification-bullet {
        width: 12px;
        height: 12px;
        min-width: 12px;
        font-size: 0.9rem;
        margin-top: 0;
        border-width: 1.5px;
    }
}

/* ============================================
   DIFFERENTIATORS SECTION - DARK NAVY WITH GLOWING EFFECTS
   ============================================ */
.differentiators-section {
    padding: 100px 0;
    background: #06038D;
    position: relative;
    overflow: hidden;
}

/* Geometric Background Pattern */
.differentiators-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(30deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(150deg, rgba(45, 99, 115, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(45, 99, 115, 0.1) 87.5%, rgba(45, 99, 115, 0.1)),
        linear-gradient(60deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05)),
        linear-gradient(120deg, rgba(242, 129, 32, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(242, 129, 32, 0.05) 87.5%, rgba(242, 129, 32, 0.05));
    background-size: 80px 140px, 80px 140px, 80px 140px, 80px 140px, 60px 100px, 60px 100px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 0 0;
    opacity: 0.3;
    animation: patternFloat 20s linear infinite;
    pointer-events: none;
}

@keyframes patternFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

/* Hexagonal Overlay */
.differentiators-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(242, 129, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 99, 115, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

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

.differentiators-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.differentiators-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Mixed Color Heading */
.differentiators-heading {
    font-size: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    line-height: 1.1;
    display: inline-block;
}

.diff-white {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.diff-orange {
    color: #f28120;
    text-shadow: 0 0 30px rgba(242, 129, 32, 0.5);
}

/* Orange Circuit Line Below Heading */
.differentiators-circuit-line {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #f28120 20%, #f28120 80%, transparent 100%);
    margin: 0 auto;
    position: relative;
    border-radius: 2px;
}

.differentiators-circuit-line::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #f28120;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(242, 129, 32, 0.8);
}

.differentiators-circuit-line::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 8px;
    height: 8px;
    background: #f28120;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(242, 129, 32, 0.8);
}

/* 4-Column Grid Layout */
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

/* Differentiator Card */
.differentiator-card {
    text-align: center;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.differentiator-card:hover {
    transform: translateY(-10px);
}

/* Icon Platform with Glow */
.icon-platform {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(242, 129, 32, 0.1) 0%, rgba(59, 130, 246, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* Dark Hexagonal/Circular Platform */
.icon-platform::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(8, 12, 26, 0.8) 0%, rgba(15, 23, 42, 0.6) 100%);
    border: 2px solid rgba(242, 129, 32, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(242, 129, 32, 0.2),
        inset 0 0 20px rgba(59, 130, 246, 0.1);
    z-index: -2;
}

/* Differentiator Icon */
.differentiator-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(242, 129, 32, 0.4));
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.differentiator-card:hover .differentiator-icon {
    filter: drop-shadow(0 0 30px rgba(242, 129, 32, 0.6));
    transform: scale(1.05);
}

/* Mixed Color Card Title */
.differentiator-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 3.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title-white {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.title-orange {
    color: #f28120;
    text-shadow: 0 0 15px rgba(242, 129, 32, 0.4);
}

/* Description Text */
.differentiator-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

.desc-orange {
    color: #f28120;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(242, 129, 32, 0.3);
}

/* Vertical Divider Lines Between Columns */
.differentiator-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -20px;
    bottom: 20px;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, rgba(242, 129, 32, 0.3) 20%, rgba(59, 130, 246, 0.2) 50%, rgba(242, 129, 32, 0.3) 80%, transparent 100%);
    border-radius: 1px;
}

/* ============================================
   RESPONSIVE DESIGN FOR DIFFERENTIATORS SECTION
   ============================================ */
@media (max-width: 1024px) {
    .differentiators-section {
        padding: 80px 0;
    }
    
    .differentiators-container {
        padding: 0 20px;
    }
    
    .differentiators-heading {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }
    
    .differentiators-grid {
        gap: 30px;
    }
    
    .differentiator-card {
        padding: 15px;
    }
    
    .icon-glow {
        width: 100px;
        height: 100px;
    }
    
    .icon-platform::before {
        width: 80px;
        height: 80px;
    }
    
    .differentiator-icon {
        width: 60px;
        height: 60px;
    }
    
    .differentiator-title {
        font-size: 1.2rem;
        min-height: 3rem;
    }
    
    .differentiator-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .differentiators-section {
        padding: 60px 0;
    }
    
    .differentiators-container {
        padding: 0 15px;
    }
    
    .differentiators-header {
        margin-bottom: 50px;
    }
    
    .differentiators-heading {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .differentiators-circuit-line {
        width: 150px;
    }
    
    /* 2-Column Layout for Tablet */
    .differentiators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .differentiator-card {
        padding: 20px;
    }
    
    .icon-glow {
        width: 90px;
        height: 90px;
    }
    
    .icon-platform::before {
        width: 70px;
        height: 70px;
    }
    
    .differentiator-icon {
        width: 50px;
        height: 50px;
    }
    
    .differentiator-title {
        font-size: 1.1rem;
        min-height: 2.8rem;
    }
    
    .differentiator-description {
        font-size: 0.85rem;
    }
    
    /* Hide vertical dividers in 2-column layout */
    .differentiator-card:nth-child(odd)::after {
        display: none;
    }
    
    .differentiator-card:nth-child(even)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .differentiators-section {
        padding: 50px 0;
    }
    
    .differentiators-container {
        padding: 0 10px;
    }
    
    .differentiators-header {
        margin-bottom: 40px;
    }
    
    .differentiators-heading {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    
    .differentiators-circuit-line {
        width: 120px;
        height: 2px;
    }
    
    .differentiators-circuit-line::before,
    .differentiators-circuit-line::after {
        width: 6px;
        height: 6px;
        top: -8px;
    }
    
    /* 1-Column Layout for Mobile */
    .differentiators-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .differentiator-card {
        padding: 15px;
    }
    
    .icon-glow {
        width: 80px;
        height: 80px;
    }
    
    .icon-platform::before {
        width: 60px;
        height: 60px;
    }
    
    .differentiator-icon {
        width: 40px;
        height: 40px;
    }
    
    .differentiator-title {
        font-size: 1rem;
        min-height: 2.4rem;
        margin-bottom: 12px;
    }
    
    .differentiator-description {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    /* No vertical dividers in mobile */
    .differentiator-card::after {
        display: none;
    }
}

/* ============================================
   INDUSTRY LABELS WITH CONNECTING LINES
   ============================================ */
.industry-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.industry-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.label-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.6), rgba(245, 166, 35, 0.2));
    position: relative;
}

.label-connector::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #F5A623;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(245, 166, 35, 0.6);
}

.label-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    transition: all 0.3s ease;
}

/* Label Positioning - Around the wheel */
.label-1 { /* Oil & Gas - Top Right */
    top: 15%;
    right: -10%;
}

.label-2 { /* Power Generation - Right */
    top: 40%;
    right: -15%;
}

.label-3 { /* Renewable Energy - Bottom Right */
    bottom: 25%;
    right: -5%;
}

.label-4 { /* Commercial Infrastructure - Bottom */
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    text-align: center;
}

.label-4 .label-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(245, 166, 35, 0.6), rgba(245, 166, 35, 0.2));
}

.label-4 .label-connector::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.label-5 { /* Automation & Robotics - Bottom Left */
    bottom: 25%;
    left: -5%;
    flex-direction: row-reverse;
}

.label-5 .label-connector {
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.6));
}

.label-5 .label-connector::before {
    left: 0;
    right: auto;
}

.label-6 { /* Water Treatment - Left */
    top: 40%;
    left: -15%;
    flex-direction: row-reverse;
}

.label-6 .label-connector {
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.6));
}

.label-6 .label-connector::before {
    left: 0;
    right: auto;
}

.label-7 { /* Food & Beverages - Top Left */
    top: 15%;
    left: -10%;
    flex-direction: row-reverse;
}

.label-7 .label-connector {
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.6));
}

.label-7 .label-connector::before {
    left: 0;
    right: auto;
}

.label-8 { /* Manufacturing - Top */
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column-reverse;
    text-align: center;
}

.label-8 .label-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.6));
}

.label-8 .label-connector::before {
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   ENHANCED HOVER EFFECTS & ANIMATIONS
   ============================================ */

/* SVG Segment Hover Effects - Already enhanced above */

/* Highlight corresponding label on segment hover */
.wheel-segment-svg:hover ~ .industry-labels .industry-label .label-text {
    opacity: 0.5;
}

/* Label highlighting on segment hover - Enhanced */
.industry-label:hover .label-text,
.wheel-segment-svg[data-industry="oil_gas"]:hover ~ .industry-labels .label-1 .label-text,
.wheel-segment-svg[data-industry="power_generation"]:hover ~ .industry-labels .label-2 .label-text,
.wheel-segment-svg[data-industry="renewable_energy"]:hover ~ .industry-labels .label-3 .label-text,
.wheel-segment-svg[data-industry="commercial_infrastructure"]:hover ~ .industry-labels .label-4 .label-text,
.wheel-segment-svg[data-industry="automation_robotics"]:hover ~ .industry-labels .label-5 .label-text,
.wheel-segment-svg[data-industry="water_treatment"]:hover ~ .industry-labels .label-6 .label-text,
.wheel-segment-svg[data-industry="food_beverages"]:hover ~ .industry-labels .label-7 .label-text,
.wheel-segment-svg[data-industry="manufacturing"]:hover ~ .industry-labels .label-8 .label-text {
    color: #F5A623;
    font-weight: 700;
    opacity: 1;
    text-shadow: 0 0 12px rgba(245, 166, 35, 0.6);
    transform: scale(1.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced Scroll Animation for SVG Wheel */
.industries-served-section[data-aos="fade-in"] .industries-wheel-svg {
    animation: wheelRotateIn 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes wheelRotateIn {
    from {
        opacity: 0;
        transform: rotate(-15deg) scale(0.8);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
        filter: blur(0px);
    }
}

/* Optional: Add slow rotation class via JavaScript */
.industries-wheel-svg.auto-rotate {
    animation: slowWheelRotate 60s linear infinite;
}

/* Pause rotation on hover */
.industries-wheel-svg.auto-rotate:hover {
    animation-play-state: paused;
}

/* Enhanced connector line effects */
.label-connector {
    transition: all 0.4s ease;
}

.industry-label:hover .label-connector {
    filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.8));
    transform: scale(1.1);
}

/* Energy particles enhancement on hover */
.wheel-segment-svg:hover ~ .energy-particles circle {
    animation-duration: 0.8s;
    r: 1.5;
}

/* ============================================
   INDUSTRIES SERVED - RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .industries-served-section {
        padding: 100px 0;
    }
    
    .industries-container {
        padding: 0 30px;
    }
    
    .industries-grid {
        gap: 60px;
    }
    
    .industries-wheel-container {
        width: 450px;
        height: 450px;
    }
    
    .label-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .industries-served-section {
        padding: 80px 0;
    }
    
    .industries-container {
        padding: 0 20px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .industries-text-content {
        max-width: 100%;
        text-align: center;
    }
    
    .heading-underline-accent {
        margin: 0 auto 30px auto;
    }
    
    .industries-wheel-container {
        width: 400px;
        height: 400px;
    }
    
    .label-connector {
        width: 30px;
    }
    
    .label-text {
        font-size: 0.8rem;
    }
    
    .label-1 { right: -8%; }
    .label-2 { right: -12%; }
    .label-3 { right: -3%; }
    .label-5 { left: -3%; }
    .label-6 { left: -12%; }
    .label-7 { left: -8%; }
}

@media (max-width: 480px) {
    .industries-served-section {
        padding: 60px 0;
    }
    
    .industries-container {
        padding: 0 15px;
    }
    
    .industries-grid {
        gap: 40px;
    }
    
    .industries-heading {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .heading-underline-accent {
        width: 80px;
        height: 3px;
    }
    
    .industries-description {
        font-size: 1rem;
    }
    
    .industries-wheel-container {
        width: 320px;
        height: 320px;
    }
    
    .label-connector {
        width: 20px;
        height: 1px;
    }
    
    .label-connector::before {
        width: 4px;
        height: 4px;
    }
    
    .label-text {
        font-size: 0.7rem;
    }
    
    .label-1 { right: -5%; top: 12%; }
    .label-2 { right: -8%; }
    .label-3 { right: 0%; }
    .label-5 { left: 0%; }
    .label-6 { left: -8%; }
    .label-7 { left: -5%; top: 12%; }
    
    .label-4 .label-connector,
    .label-8 .label-connector {
        height: 30px;
    }
}

/* ============================================
   TESTIMONIALS SECTION - MODERN SLIDER
   ============================================ */
.testimonials-modern {
    padding: 100px 0;
    background: var(--color-accent);
    position: relative;
    overflow: hidden;
}

.testimonials-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(230, 126, 34, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-modern .section-subtitle {
    color: var(--color-secondary);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.testimonials-wrapper {
    margin-top: 60px;
    max-width: 100%;
    overflow: hidden;
}

.testimonials-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

/* Testimonial Card - Glassmorphism Design */
.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: calc(33.333% - 20px);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-inner {
    background: var(--color-secondary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--color-primary);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Glassmorphism gradient overlay */
.testimonial-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary);
    opacity: 1;
    transition: opacity 0.4s ease;
}

.testimonial-card-inner:hover::before {
    opacity: 1;
}

/* Hover Effects */
.testimonial-card-inner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: var(--color-secondary);
    border-color: var(--color-primary);
}

/* Quote Icon */
.quote-icon-wrapper {
    margin-bottom: 20px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.testimonial-card-inner:hover .quote-icon {
    opacity: 0.6;
    transform: scale(1.1);
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-accent);
    margin-bottom: 24px;
    font-style: italic;
    flex-grow: 1;
    position: relative;
}

/* Star Rating */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    justify-content: center;
}

.star-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.star-icon.filled {
    color: var(--color-primary);
}

.testimonial-card-inner:hover .star-icon.filled {
    transform: scale(1.1);
}

/* Customer Info */
.testimonial-customer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-avatar {
flex-shrink: 0;
width: 60px;
height: 60px;
border-radius: 50%;
overflow: hidden;
background: var(--color-primary);
padding: 3px;
transition: all 0.3s ease;
}

.testimonial-card-inner:hover .customer-avatar {
transform: scale(1.05);
box-shadow: 0 4px 12px rgba(242, 129, 32, 0.4);
}

.customer-avatar img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 50%;
background: white;
}

.avatar-placeholder {
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: var(--color-primary);
color: var(--color-accent);
font-size: 24px;
font-weight: bold;
border-radius: 50%;
}

.customer-info {
flex: 1;
text-align: left;
}

.customer-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
}

.testimonial-card-inner:hover .customer-name {
    color: var(--color-primary);
}

.customer-designation {
    font-size: 0.875rem;
    color: var(--color-accent);
    margin: 0;
    line-height: 1.4;
    opacity: 0.8;
}

/* Navigation Controls */
.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 50px;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: var(--color-accent);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.testimonial-nav-btn svg {
    width: 24px;
    height: 24px;
}

.testimonial-nav-btn:hover {
    background: var(--color-primary);
    color: var(--color-accent);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 129, 32, 0.4);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.testimonial-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonial-nav-btn:disabled:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: scale(1);
}

/* Dots Navigation */
.testimonials-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-secondary);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.testimonial-dot:hover {
    background: var(--color-primary);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: var(--color-primary);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(242, 129, 32, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    
    .testimonials-track {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-modern {
        padding: 60px 0;
    }
    
    /* Container - prevent overflow */
    .testimonials-wrapper {
        margin-top: 40px;
        padding: 0 20px;
    }
    
    .testimonials-slider-container {
        overflow: hidden;
        position: relative;
        width: 100%;
        margin: 0 auto;
    }
    
    /* Track - single card view */
    .testimonials-track {
        gap: 0;
        width: 100%;
    }
    
    /* Card - full width on mobile */
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .testimonial-card-inner {
        padding: 30px 20px;
        border-radius: 16px;
        margin: 0;
    }
    
    /* Typography adjustments */
    .testimonial-text {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .quote-icon {
        width: 32px;
        height: 32px;
    }
    
    .quote-icon-wrapper {
        margin-bottom: 16px;
    }
    
    /* Rating */
    .testimonial-rating {
        margin-bottom: 20px;
    }
    
    .star-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Customer info */
    .customer-avatar {
        width: 48px;
        height: 48px;
    }
    
    .customer-name {
        font-size: 1rem;
    }
    
    .customer-designation {
        font-size: 0.8125rem;
    }
    
    /* Navigation controls - centered below */
    .testimonials-controls {
        margin-top: 30px;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }
    
    .testimonial-nav-btn {
        width: 44px;
        height: 44px;
        flex-shrink: 0;
    }
    
    .testimonial-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    /* Dots - centered */
    .testimonials-dots {
        gap: 8px;
    }
    
    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
    
    .testimonial-dot.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .testimonials-modern {
        padding: 50px 0;
    }
    
    .testimonials-wrapper {
        padding: 0 16px;
    }
    
    .testimonial-card-inner {
        padding: 24px 16px;
        border-radius: 12px;
    }
    
    .testimonial-text {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .quote-icon {
        width: 28px;
        height: 28px;
    }
    
    .customer-name {
        font-size: 0.9375rem;
    }
    
    .customer-designation {
        font-size: 0.75rem;
    }
    
    .customer-avatar {
        width: 44px;
        height: 44px;
    }
    
    .testimonials-controls {
        margin-top: 24px;
        gap: 16px;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .testimonial-dot {
        width: 8px;
        height: 8px;
    }
    
    .testimonial-dot.active {
        width: 20px;
    }
}

/* Animation for cards entering viewport */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card[data-aos="fade-up"] {
    animation: slideUpFade 0.6s ease forwards;
}

/* ============================================
   CLIENTS SECTION - INFINITE LOGO SLIDER
   ============================================ */
.clients-modern {
    padding: 80px 0;
    background: var(--color-secondary);
    position: relative;
    overflow: hidden;
}

.clients-modern .section-subtitle {
    color: var(--color-accent);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.container-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.clients-slider-wrapper {
    position: relative;
    margin-top: 60px;
    padding: 0;
}

/* Marquee Container */
.clients-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 0;
    box-shadow: var(--shadow-md);
}

/* Gradient Fade Edges */
.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Clients Track - Infinite Loop */
.clients-track {
    display: flex;
    gap: 80px;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Client Logo Item */
.client-logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
    position: relative;
}

.client-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

/* Logo Image - Grayscale to Color */
.client-logo-img {
    max-width: 160px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo-link:hover .client-logo-img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.08);
}

/* Logo Placeholder (when no image) */
.client-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 80px;
    background: var(--color-accent);
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.client-logo-link:hover .client-logo-placeholder {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    background: var(--color-primary);
    border-color: transparent;
}

.client-initials {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.client-logo-link:hover .client-initials {
    color: white;
}

.client-name-text {
    font-size: 0.75rem;
    color: var(--color-secondary);
    margin-top: 4px;
    text-align: center;
    transition: color 0.3s ease;
}

.client-logo-link:hover .client-name-text {
    color: rgba(255, 255, 255, 0.9);
}

/* Tooltip on Hover */
.client-tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-secondary);
    color: var(--color-accent);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 10;
}

.client-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--color-secondary);
}

.client-logo-link:hover .client-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .clients-track {
        gap: 60px;
        animation-duration: 30s;
    }
    
    .client-logo-item {
        min-width: 150px;
        height: 80px;
    }
    
    .client-logo-img {
        max-width: 130px;
        max-height: 60px;
    }
    
    .client-logo-placeholder {
        width: 130px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .clients-modern {
        padding: 60px 0;
    }
    
    .clients-slider-wrapper {
        padding: 0 20px;
        margin-top: 40px;
    }
    
    .clients-marquee {
        padding: 30px 0;
        border-radius: 12px;
    }
    
    .clients-marquee::before,
    .clients-marquee::after {
        width: 80px;
    }
    
    .clients-track {
        gap: 40px;
        animation-duration: 25s;
    }
    
    .client-logo-item {
        min-width: 120px;
        height: 70px;
    }
    
    .client-logo-img {
        max-width: 100px;
        max-height: 50px;
    }
    
    .client-logo-placeholder {
        width: 100px;
        height: 50px;
    }
    
    .client-initials {
        font-size: 1.25rem;
    }
    
    .client-name-text {
        font-size: 0.625rem;
    }
}

@media (max-width: 480px) {
    .clients-track {
        gap: 30px;
        animation-duration: 20s;
    }
    
    .client-logo-item {
        min-width: 100px;
        height: 60px;
    }
    
    .client-logo-img {
        max-width: 80px;
        max-height: 40px;
    }
    
    .client-logo-placeholder {
        width: 80px;
        height: 40px;
    }
    
    .client-initials {
        font-size: 1rem;
    }
    
    .client-tooltip {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-modern {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--color-secondary);
    opacity: 0.8;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-secondary);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-secondary);
}

.btn-large {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 1.1rem;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
