/* ==========================================================================
   VETRONIX CSS - THE PREMIUM DESIGN SYSTEM & ANIMATIONS
   ========================================================================== */

/* Design Tokens & Custom CSS Variables */
:root {
    /* Color Palette */
    --primary: #2B8DA8;             /* Logo Blue (Teal) - brand core */
    --primary-glow: rgba(43, 141, 168, 0.4);
    --primary-dark: #1C667A;        /* Dark Logo Blue */
    --primary-light: #E6F4F7;       /* Soft Blue */
    --teal: #38bdf8;                /* Light Accent */
    --teal-glow: rgba(56, 189, 248, 0.3);
    
    /* Background bases */
    --dark-bg: #ffffff;             /* Main background changed to white */
    --dark-card: #f8fafc;           /* Light slate card */
    --light-bg: #f1f5f9;            /* Slightly darker grey background */
    --light-card: #ffffff;          /* Pure white card */
    
    /* Text colors */
    --text-white: #0f172a;          /* Now deep navy for white backgrounds */
    --text-dark: #0f172a;           /* Deep Navy */
    --text-muted: #64748b;          /* Cool gray */
    --text-body-dark: #334155;      /* Charcoal text */
    
    /* Layout Constants */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --radius-sm: 6px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    /* Animations & Shadows */
    --transition-fast: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-normal: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 12px 30px rgba(43, 141, 168, 0.2);
}

/* ==========================================================================
   Global Resets & Foundation
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.page-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: var(--radius-full);
    border: 2px solid var(--dark-bg);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================================================
   Aesthetic Elements (Preloader & Background Blobs)
   ========================================================================== */
/* 1. Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Pure white — matches the video background exactly so no border is visible */
    background: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    /* CSS Fallback Animation: Force hide after 4.5 seconds if JS fails to execute or load */
    animation: cssPreloaderFallback 0.6s ease 4s forwards;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

@keyframes cssPreloaderFallback {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.loader-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ffffff;
}

.loader-video {
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    display: block;
    outline: none;
    background: #ffffff;
}


/* 2. Glow Blobs background decor */
.glow-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: 10vh;
    left: -100px;
}

.blob-2 {
    background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
    bottom: 20vh;
    right: -100px;
}

.blob-3 {
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    top: 50vh;
    left: 40%;
}

/* ==========================================================================
   Common Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background-color: rgba(43, 141, 168, 0.08);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(43, 141, 168, 0.15);
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Light Section overrides */
.light-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.light-section .section-title {
    background: linear-gradient(135deg, var(--text-dark) 40%, var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.light-section .section-subtitle {
    color: var(--text-muted);
}

.light-section .section-badge {
    background-color: rgba(43, 141, 168, 0.08);
    color: var(--primary-dark);
    border-color: rgba(43, 141, 168, 0.2);
}

/* Dark Section overrides */
.dark-section {
    background-color: var(--dark-bg);
    color: var(--text-white);
}

.dark-section .section-title {
    background: linear-gradient(135deg, var(--text-white) 40%, var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark-section .section-subtitle {
    color: #94a3b8;
}

.dark-section .section-badge {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-color: rgba(43, 141, 168, 0.2);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

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

.mt-60 { margin-top: 60px; }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    box-shadow: 0 8px 20px var(--primary-glow);
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(43, 141, 168, 0.5);
}

.btn-primary i {
    transition: var(--transition-fast);
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: white;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-4px);
    background-color: var(--light-bg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.btn-cta i {
    color: var(--primary);
    transition: var(--transition-fast);
}

.btn-cta:hover i {
    transform: rotate(8deg) scale(1.1);
}

/* ==========================================================================
   Header & Navbar Section
   ========================================================================== */

/* Top Announcement Bar */
.top-announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--primary-dark);
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1001;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    gap: 50px;
    padding-left: 50px;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.marquee-content i {
    color: var(--teal);
}

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


.navbar-header {
    position: fixed;
    top: 40px; /* Offset for the announcement bar */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(43, 141, 168, 0.15);
}

/* Navbar Scrolled Glass Mode */
.navbar-header.scrolled {
    padding: 12px 0;
    background-color: #ffffff;
    border-bottom-color: rgba(43, 141, 168, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(43, 141, 168, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 95px;
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: var(--transition-normal);
}

.navbar-header.scrolled .nav-logo img {
    height: 72px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--text-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--primary);
    text-shadow: none;
}

/* Sliding hover line */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--teal));
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

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

/* Navbar CTA button style */
.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(43, 141, 168, 0.5);
    box-shadow: 0 6px 20px rgba(43, 141, 168, 0.3);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(43, 141, 168, 0.5);
    border-color: rgba(43, 141, 168, 0.8);
    background: linear-gradient(135deg, var(--primary), var(--teal));
}

.nav-cta-btn i {
    transition: var(--transition-fast);
}

.nav-cta-btn:hover i {
    transform: translateX(4px);
}

/* Hamburger for Mobile */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
}

.hamburger .bar {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition-fast);
    background-color: var(--text-dark);
    border-radius: 4px;
}

/* ==========================================================================
   Hero Section (Image Carousel & Transition Animations)
   ========================================================================== */
.modern-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--dark-bg);
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

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

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28, 102, 122, 0.6) 0%, rgba(43, 141, 168, 0.55) 100%);
    z-index: 1;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.5;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(43, 141, 168, 0.15);
    border: 1px solid rgba(43, 141, 168, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 24px;
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--teal), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.modern-hero .btn-primary {
    background: white;
    color: var(--primary-dark);
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.modern-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2), 0 0 0 6px rgba(255, 255, 255, 0.3);
    background: #f8f9fa;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    padding: 14px 32px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Stats Row */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-box h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.stat-box p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* Right Visual */
.hero-visual {
    position: relative;
    padding-right: 20px;
    perspective: 1000px;
}

.visual-main-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(43, 141, 168, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2;
    aspect-ratio: 3/2;
    width: 100%;
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.hero-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-carousel-dots .dot.active {
    background: white;
    transform: scale(1.3);
}

/* Hover animation removed */

.hero-badges-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-badges-inline .glass-badge {
    position: relative;
    animation: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
}

.glass-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
    pointer-events: none; /* so they don't block mouse movements for the 3D tilt */
}

.floating-badge-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: 3s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}

.badge-text strong {
    display: block;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
}

.badge-text span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .modern-hero {
        padding: 140px 0 60px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-badges-inline {
        justify-content: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-visual {
        padding: 0 20px;
        margin-top: 40px;
    }
}

/* ==========================================================================
   About Us Section (Vibrant Light theme styling)
   ========================================================================== */
.about-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent SVG lines or elements */
.about-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 30px solid rgba(43, 141, 168, 0.03);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column content */
.about-text {
    font-size: 1.05rem;
    color: var(--text-body-dark);
    margin-bottom: 24px;
    line-height: 1.75;
}

.about-text strong {
    color: var(--primary-dark);
}

.about-motto-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: white;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    margin: 16px 0 36px 0;
}

.motto-accent-mark {
    color: var(--primary-light);
    font-size: 2.2rem;
    position: absolute;
    left: 10px;
    top: -5px;
    opacity: 0.5;
    z-index: 1;
}

.about-motto {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-dark);
    position: relative;
    z-index: 2;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.value-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) scale(var(--card-scale, 1));
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(250px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(43, 141, 168, 0.08), transparent 85%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    box-shadow: 0 15px 35px rgba(9, 13, 22, 0.08);
    border-color: rgba(43, 141, 168, 0.35);
}

.value-icon-wrapper {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-fast);
    transform: translateZ(0);
}

.value-icon-wrapper.img-wrapper {
    width: 76px;
    height: 76px;
    background-color: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 4px;
    overflow: hidden;
}

.value-card:hover .value-icon-wrapper {
    background-color: var(--primary);
    color: var(--text-dark);
    transform: scale(1.05) rotate(5deg) translateZ(30px);
    box-shadow: 0 6px 15px var(--primary-glow);
}

.value-card:hover .value-icon-wrapper.img-wrapper {
    background-color: white;
    border-color: rgba(43, 141, 168, 0.35);
    box-shadow: 0 6px 15px rgba(9, 13, 22, 0.08);
}

.value-card-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.value-info {
    transform: translateZ(0);
    transition: transform 0.3s ease;
}

.value-card:hover .value-info {
    transform: translateZ(20px);
}

.value-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.value-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Right Column showcase */
.about-showcase {
    position: relative;
    padding: 20px;
}

.showcase-card {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(9, 13, 22, 0.1);
    background-color: white;
}

.showcase-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.showcase-card:hover .showcase-img {
    transform: scale(1.04);
}

.showcase-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background-color: white;
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(9, 13, 22, 0.12);
    display: flex;
    flex-direction: column;
    z-index: 3;
    border-left: 4px solid var(--teal);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    animation: floating-badge 4s infinite ease-in-out;
}

.showcase-badge.top-badge {
    position: absolute;
    top: -30px;
    right: -20px;
    left: auto;
    bottom: auto;
    margin-bottom: 0;
    display: flex;
    z-index: 10;
}

@keyframes floating-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.badge-number {
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--primary-dark);
    line-height: 1;
    font-family: var(--font-heading);
}

.badge-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-body-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.showcase-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border: 4px solid rgba(43, 141, 168, 0.12);
    border-radius: var(--radius-md);
    z-index: 1;
    transform: translate(-15px, 35px);
    transition: var(--transition-normal);
}

.about-showcase:hover .showcase-frame {
    transform: translate(-5px, 20px);
    border-color: rgba(43, 141, 168, 0.25);
}

/* ==========================================================================
   Mission & Vision Cards (Cohesive dark/glass styling)
   ========================================================================== */
.mission-vision-section {
    padding: 100px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.mission-vision-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: white;
    border: 1px solid rgba(43, 141, 168, 0.1);
    padding: 56px 48px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

/* Card neon glow border hover */
.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.08);
    border-color: rgba(56, 189, 248, 0.25);
}

.mv-icon {
    font-size: 2.75rem;
    color: var(--teal);
    background-color: rgba(56, 189, 248, 0.08);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.15);
    transition: var(--transition-normal);
}

.mv-card:hover .mv-icon {
    background-color: var(--teal);
    color: var(--dark-bg);
    transform: rotate(360deg);
}

.mv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.mv-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Impact Counters Section (Gradient background layer)
   ========================================================================== */
.counters-section {
    padding: 110px 0;
    background: linear-gradient(135deg, #f0fbfe 0%, #e0f6fb 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glowing background orbs */
.counters-section::before,
.counters-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43, 141, 168, 0.08) 0%, transparent 70%);
    z-index: 0;
    filter: blur(40px);
}
.counters-section::before {
    top: -100px;
    left: -100px;
}
.counters-section::after {
    bottom: -150px;
    right: -100px;
}

.counters-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-card {
    background: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 45px 24px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 15px 35px rgba(43, 141, 168, 0.08);
}

.counter-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.9);
    border-top-color: #ffffff;
    box-shadow: 0 25px 45px rgba(43, 141, 168, 0.15), 0 0 30px rgba(255, 255, 255, 0.8);
}

.counter-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 1.6rem;
    box-shadow: 0 10px 25px rgba(28, 102, 122, 0.4);
    transition: var(--transition-normal);
}

.counter-card:hover .counter-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(28, 102, 122, 0.6);
}

.counter-card h3 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.counter-card p {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   Products Section (Vibrant Light Grid)
   ========================================================================== */
.products-section {
    padding: 120px 0;
    background-color: var(--light-bg);
}

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

.light-section .section-header .section-badge {
    background-color: var(--primary-light);
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Product Filter Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 40px auto 10px auto;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.tab-btn {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-body-dark);
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-color: rgba(43, 141, 168, 0.25);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: var(--primary);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.tab-btn.active:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 36px;
    transition: all 0.5s ease;
}

.product-card {
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
    display: flex;
    flex-direction: column;
    position: relative; /* Essential for absolute specs overlay container */
}

/* Animation for filter transition */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-card.fade-in-anim {
    animation: cardFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.product-card.filtered-out {
    display: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(9, 13, 22, 0.1);
    border-color: rgba(43, 141, 168, 0.4);
}

/* /* Specifications Overlay removed as per feedback */

.specs-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.specs-header h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-dark);
    font-weight: 800;
    margin: 0;
}

.specs-tag {
    font-size: 0.72rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: inline-block;
}

.specs-body {
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
    justify-content: center;
}

.spec-item {
    font-size: 0.88rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.spec-item strong {
    color: var(--text-dark);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-inquire-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: white !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 15px var(--primary-glow);
    transition: var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.specs-inquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(43, 141, 168, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.specs-inquire-btn i {
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.specs-inquire-btn:hover i {
    transform: translateX(3px) translateY(-3px);
}

.product-img-wrapper {
    height: 230px;
    overflow: hidden;
    background-color: #f8fafc;
    position: relative;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: var(--transition-slow);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

/* Category Badge overlay on product card */
.product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    background-color: white;
    border: 1px solid rgba(43, 141, 168, 0.3);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 5;
}

.product-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.product-info p {
    font-size: 0.98rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.btn-text {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-text i {
    transition: var(--transition-fast);
}

.btn-text:hover {
    color: var(--primary-dark);
}

.btn-text:hover i {
    transform: translateX(6px);
}

/* ==========================================================================
   Testimonials Section (Aesthetic slider styling)
   ========================================================================== */
.testimonials-section {
    padding: 110px 0;
    background-color: var(--dark-card);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--teal-glow) 0%, transparent 65%);
    bottom: -50px;
    left: -50px;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials-slider-wrapper {
    position: relative;
    margin-top: 50px;
    min-height: 280px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96) translateY(10px);
    transition: var(--transition-normal);
    text-align: left;
    background: #ffffff;
    border: 1px solid rgba(43, 141, 168, 0.15);
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(43, 141, 168, 0.08);
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: scale(1) translateY(0);
    z-index: 2;
}

.google-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: #202124;
    margin-bottom: 2px;
    font-weight: 600;
}

.client-role {
    font-size: 0.85rem;
    color: #70757a;
    font-weight: 400;
}

.google-logo img {
    width: 24px;
    height: auto;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 16px;
    color: #fbbc04;
    font-size: 0.95rem;
}

.review-time {
    color: #70757a;
    font-size: 0.85rem;
    margin-left: 8px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #3c4043;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.testi-btn {
    background: white;
    border: 1px solid rgba(43, 141, 168, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.15rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.testi-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 8px 20px var(--primary-glow);
    transform: scale(1.08);
}

.testi-indicators {
    display: flex;
    gap: 8px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(43, 141, 168, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.testi-dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

/* ==========================================================================
   FAQ Section (Light Accordion)
   ========================================================================== */
.faq-section {
    padding: 120px 0;
    background-color: var(--light-bg);
}

.faq-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid rgba(226, 232, 240, 0.8);
    background-color: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.faq-item:hover {
    border-color: rgba(43, 141, 168, 0.2);
    box-shadow: 0 10px 20px rgba(9, 13, 22, 0.03);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 28px;
    background-color: transparent;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-question i {
    color: var(--primary);
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
    border-color: rgba(43, 141, 168, 0.25);
    box-shadow: 0 12px 24px rgba(9, 13, 22, 0.05);
}

.faq-item.active .faq-question {
    color: var(--primary-dark);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #fbfcfd;
}

.faq-answer-inner {
    padding: 24px 28px;
}

.faq-answer p {
    color: var(--text-body-dark);
    line-height: 1.7;
    font-size: 1rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(-45deg, #090d16, #064e3b, #0d9488, #090d16);
    background-size: 400% 400%;
    animation: gradient-shift 12s ease infinite;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Decorative background glowing orb */
.cta-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(43, 141, 168, 0.15) 0%, transparent 65%);
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(135deg, white 40%, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 44px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 1.15rem;
    padding: 18px 44px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(43, 141, 168, 0.35);
    transition: var(--transition-normal);
    border: none;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
}

/* Reflection shine sweep */
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    transition: none;
    z-index: -1;
}

.btn-cta:hover::before {
    animation: shine-sweep 1.4s ease-in-out infinite;
}

@keyframes shine-sweep {
    0% { left: -150%; }
    100% { left: 150%; }
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(43, 141, 168, 0.65);
    background: white;
    color: var(--primary-dark);
}

.btn-cta:active {
    transform: translateY(-2px) scale(1.01);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--light-bg);
    color: var(--text-muted);
    padding: 50px 0 30px;
    position: relative;
    border-top: 1px solid rgba(43, 141, 168, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-clean-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.footer-nav {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #475569;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(43, 141, 168, 0.05);
    border: 1px solid rgba(43, 141, 168, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition-fast);
    font-size: 0.95rem;
}

.footer-socials a:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(43, 141, 168, 0.25);
}

.footer-bottom-clean {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.88rem;
    color: #64748b;
}

.footer-bottom-clean p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* ==========================================================================
   Smooth Reveal Animations ([data-animate])
   ========================================================================== */
[data-animate] {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate="fade-up"] {
    transform: translateY(50px) scale(0.98);
}

[data-animate="fade-left"] {
    transform: translateX(-50px);
}

[data-animate="fade-right"] {
    transform: translateX(50px);
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ==========================================================================
   Responsive Adapters
   ========================================================================== */
@media (max-width: 1024px) {
    /* No-op, grid removed */
}

@media (max-width: 992px) {
    .section-title { font-size: 2.25rem; }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-showcase {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Responsive Header & Announcement Bar */
    .top-announcement-bar {
        height: 30px;
        font-size: 0.8rem;
    }
    
    .navbar-header {
        top: 30px;
        padding: 10px 0;
    }
    
    .navbar-header.scrolled {
        padding: 8px 0;
    }
    
    .nav-logo img {
        height: 65px;
    }
    
    .navbar-header.scrolled .nav-logo img {
        height: 54px;
    }

    /* Navbar Hamburger logic */
    .hamburger { display: block; }
    
    .hamburger.active .bar:nth-child(2) { opacity: 0; }
    .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: rgba(9, 13, 22, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        width: 100%;
        height: calc(100vh - 100%);
        padding: 50px 24px;
        gap: 32px;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        transition: left 0.45s cubic-bezier(0.16, 1, 0.3, 1), top 0.4s ease, height 0.4s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active { left: 0; }
    
    .nav-link {
        font-size: 1.25rem;
        font-weight: 700;
        width: 100%;
        text-align: center;
        padding: 12px 0;
        color: rgba(255, 255, 255, 0.85); /* High contrast light grey/white */
        transition: var(--transition-fast);
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--teal) !important; /* Bright teal for active/hover states */
    }
    
    .nav-link::after { display: none; }
    
    .nav-cta-btn {
        width: 80%;
        justify-content: center;
        font-size: 1.05rem;
        padding: 14px 28px;
    }
    
    /* Layout structural items */
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .counters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-control {
        width: 46px;
        height: 46px;
    }
    
    .carousel-control.prev { left: 16px; }
    .carousel-control.next { right: 16px; }
    
    /* Clean Footer Responsive */
    .footer-clean-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 16px 24px;
    }
    
    .footer-bottom-clean {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    /* Mobile Spacing & Typography Overrides */
    .about-section,
    .about-mv-section,
    .testimonials-section,
    .faq-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 1.95rem;
    }

    .page-hero {
        margin-top: 100px !important; /* Shift below header */
        height: auto !important;
        min-height: auto !important;
        padding: 60px 0 !important;
    }
    
    .page-hero-content h1 {
        font-size: 2.25rem !important;
    }
    
    .page-hero-content p {
        font-size: 1.05rem !important;
    }

    .company-overview-section .about-main-img {
        min-height: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .company-overview-section .about-showcase {
        padding: 0 !important;
    }

    .company-overview-section .showcase-frame {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .counters-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide {
        padding: 36px 20px;
    }
    
    .testimonial-text {
        font-size: 1.15rem;
    }
    
    .footer-nav {
        gap: 12px 16px;
    }
    
    .cta-content h2 {
        font-size: 2.15rem;
    }
    
    /* Mobile specific adjustments for better layout fitting */
    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -0.8px;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 25px;
    }
    
    .about-text {
        font-size: 0.95rem;
    }
    
    .mv-box {
        padding: 30px 20px;
    }
    
    .value-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        padding: 20px;
    }
    
    .about-section,
    .about-mv-section,
    .testimonials-section,
    .faq-section {
        padding: 50px 0;
    }

    .page-hero {
        margin-top: 100px !important;
        padding: 40px 0 !important;
    }
    
    .page-hero-content h1 {
        font-size: 1.85rem !important;
    }
    
    .page-hero-content p {
        font-size: 0.95rem !important;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.page-hero {
    margin-top: 160px; /* Offset for header */
    height: 300px;
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-bg) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 65%);
    top: -50%;
    left: -50%;
    opacity: 0.6;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(var(--primary-glow) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.15;
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 24px;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, white, var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.page-hero-content p {
    font-size: 1.25rem;
    color: #94a3b8;
}

/* Global Offices Grid */
.global-offices-section {
    padding: 120px 0;
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.global-offices-section .office-card {
    background-color: white;
    padding: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-normal);
    height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.global-offices-section .office-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(43, 141, 168, 0.3);
}

.global-offices-section .office-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-grow: 1;
}

.global-offices-section .office-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    transition: var(--transition-fast);
}

.global-offices-section .office-card:hover .office-icon {
    transform: scale(1.1);
    color: var(--primary-dark);
}

.global-offices-section .office-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 800;
}

.global-offices-section .office-card p {
    font-size: 0.95rem;
    color: var(--text-body-dark);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.office-map-link {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-normal);
    margin-top: auto;
    width: fit-content;
}

.office-map-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-dark);
    border: none;
    box-shadow: 0 10px 25px var(--primary-glow);
}

.highlight-card .office-icon,
.highlight-card h3 {
    color: var(--text-dark);
}

.highlight-card p {
    color: var(--primary-light);
}

.highlight-card:hover {
    box-shadow: 0 15px 30px rgba(43, 141, 168, 0.45);
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    z-index: 1;
    color: var(--text-dark);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: flex-start;
}

.form-info h2 {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 800;
}

.form-info p {
    font-size: 1.15rem;
    color: var(--text-body-dark);
    line-height: 1.7;
    margin-bottom: 30px;
}

.form-box {
    background-color: white;
    padding: 56px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(9, 13, 22, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    background-color: #f8fafc;
    color: var(--text-dark);
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 12px rgba(43, 141, 168, 0.15);
}

.form-submit button {
    width: 100%;
}

.form-info-socials {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.form-info-socials h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
}

.social-icon-links {
    display: flex;
    gap: 16px;
}

.social-icon-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-normal);
    border: 1px solid rgba(43, 141, 168, 0.2);
}

.social-icon-links a:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--primary-glow);
    border-color: var(--primary);
}

/* Map frame wrapper */
.form-info-map {
    margin-top: 40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.form-info-map iframe {
    display: block;
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */
.about-hero {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 100%);
}

.company-overview-section {
    padding: 120px 0;
    background-color: white;
    color: var(--text-dark);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    height: 100%;
}

.about-main-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
}

.image-wrapper:hover .about-main-img {
    transform: scale(1.05);
}

.overview-content p {
    font-size: 1.1rem;
    color: var(--text-body-dark);
    line-height: 1.75;
    margin-bottom: 24px;
}

.certifications-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: var(--light-bg);
    padding: 28px;
    border-radius: var(--radius-md);
    margin-top: 40px;
    border-left: 4px solid var(--primary);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    border-right: 1px solid rgba(226, 232, 240, 0.5);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.cert-icon {
    font-size: 2.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.certifications-box h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.certifications-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.overview-image {
    position: relative;
    padding: 20px;
}

.motto-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: white;
    padding: 24px 32px;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 35px rgba(9, 13, 22, 0.1);
    display: flex;
    gap: 16px;
    align-items: center;
    border-bottom: 4px solid var(--primary);
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    border-left: 1px solid rgba(226, 232, 240, 0.5);
    border-right: 1px solid rgba(226, 232, 240, 0.5);
}

.motto-card i {
    font-size: 2.2rem;
    color: var(--primary);
}

.motto-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    font-weight: 800;
}

/* About Mission Vision Expanded */
.about-mv-section {
    padding: 100px 0;
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.mv-grid-expanded {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
}

.mv-box {
    background-color: white;
    padding: 56px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.mv-header .mv-icon {
    margin-bottom: 0;
    width: 60px;
    height: 60px;
}

.mv-header h2 {
    font-family: var(--font-heading);
    font-size: 2.15rem;
    color: var(--text-dark);
    font-weight: 800;
}

.vision-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-body-dark);
    font-style: italic;
    border-left: 4px solid var(--primary-light);
    padding-left: 24px;
}

.mission-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.05rem;
    color: var(--text-body-dark);
    line-height: 1.65;
}

.mission-list i {
    color: var(--primary);
    margin-top: 6px;
    font-size: 1.1rem;
}

/* Research & Sourcing */
.research-sourcing-section {
    padding: 120px 0;
    background-color: white;
    color: var(--text-dark);
}

.rs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.rs-card {
    padding: 56px;
    border-radius: var(--radius-md);
    background-color: var(--light-bg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-normal);
}

.rs-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(43, 141, 168, 0.2);
}

.rs-icon {
    font-size: 2.75rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.rs-card h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.rs-card p {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-body-dark);
}

.rs-card.highlight-rs {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 25px var(--primary-glow);
}

.rs-card.highlight-rs h3, 
.rs-card.highlight-rs .rs-icon {
    color: white !important;
}

.rs-card.highlight-rs p {
    color: var(--light-bg) !important;
}

.rs-card.highlight-rs:hover {
    box-shadow: 0 15px 30px rgba(43, 141, 168, 0.4);
}

/* Global Presence Stats */
.global-presence-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    color: white;
}

.presence-content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}

.presence-content h2 {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.presence-content p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 50px;
}

.presence-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.35);
}

.stat-item h4 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.stat-item p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--primary-light);
}

/* Responsive updates for Contact / About pages */
@media (max-width: 1024px) {
    .offices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .overview-grid, .mv-grid-expanded, .rs-grid {
        grid-template-columns: 1fr;
    }
    .presence-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .motto-card {
        bottom: -20px; left: 10px; right: 10px;
        position: relative;
        margin-top: 40px;
    }
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .offices-grid, .presence-stats {
        grid-template-columns: 1fr;
    }
    .form-box {
        padding: 32px 24px;
    }
    .enquiry-form {
        grid-template-columns: 1fr;
    }
    .presence-content h2 {
        font-size: 2.15rem;
    }
}

/* ==========================================================================
   Premium 3D Hover & Cursor Glow Global Styles for All Cards
   ========================================================================== */
.office-card, .mv-box, .rs-card, .stat-item, .mv-card {
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg)) scale(var(--card-scale, 1));
}

.office-card::before, .mv-box::before, .rs-card::before, .stat-item::before, .mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(300px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(43, 141, 168, 0.08), transparent 85%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.office-card:hover::before, .mv-box:hover::before, .rs-card:hover::before, .stat-item:hover::before, .mv-card:hover::before {
    opacity: 1;
}

/* Add translateZ depth values to inner elements of mv-card, mv-box, rs-card */
.office-card:hover .office-icon,
.mv-box:hover .mv-icon,
.rs-card:hover .rs-icon,
.stat-item:hover h4 {
    transform: translateZ(25px);
}

.office-card h3, .mv-box h2, .rs-card h3, .stat-item p {
    transform: translateZ(15px);
    transition: transform 0.3s ease;
}

/* ==========================================================================
   Product Detail Page Styles
   ========================================================================== */
.product-detail-section {
    padding: 160px 0 100px;
    background: var(--dark-bg);
    min-height: 100vh;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-image-col {
    position: sticky;
    top: 120px;
}

.product-image-wrapper {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.02);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--primary-glow) 0%, transparent 60%);
    opacity: 0.15;
    z-index: 0;
}

.product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 8px 16px rgba(15, 23, 42, 0.08));
    transition: transform 0.4s ease;
}

.product-image-wrapper:hover img {
    transform: scale(1.05) translateY(-10px);
}

.product-info-col {
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.product-category {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(43, 141, 168, 0.08);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(43, 141, 168, 0.15);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: var(--primary-dark);
    line-height: 1.1;
}

.product-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 500;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-price-box {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-price-box::before {
    content: 'Available Packaging';
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-item {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
    width: 100%;
    transition: var(--transition-fast);
}

.price-item:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(43, 141, 168, 0.08);
}

.price-label {
    font-size: 0.95rem;
    color: var(--text-body-dark);
    font-weight: 600;
}

.price-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.price-value::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
}

.product-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body-dark);
    margin-bottom: 32px;
    padding: 20px 24px;
    background: var(--light-bg);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--teal);
}

.product-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    margin-top: auto;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    transition: var(--transition-normal);
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    color: white;
}

.btn-call {
    background: #ffffff;
    color: var(--primary-dark);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--primary-dark);
    transition: var(--transition-normal);
    text-decoration: none;
}

.btn-call:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.product-tabs-container {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 320px;
}

.tab-buttons {
    display: flex;
    flex-direction: column;
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--light-bg);
    padding: 8px 0;
}

.product-tabs-container .tab-btn {
    flex: none;
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 18px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: none;
    border-left: 3px solid transparent;
    text-align: left;
    margin-bottom: 4px;
}

.product-tabs-container .tab-btn.active {
    color: var(--teal);
    border-left-color: var(--teal);
    background: #ffffff;
    border-bottom-color: transparent;
}

.product-tabs-container .tab-btn:hover:not(.active) {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.7);
}

.tab-content {
    display: none;
    padding: 32px 36px;
    animation: fadeIn 0.4s ease;
    overflow-y: auto;
    max-height: 500px;
}

/* Custom Sleek Scrollbar for Tab Content */
.tab-content::-webkit-scrollbar {
    width: 6px;
}

.tab-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-full);
}

.tab-content::-webkit-scrollbar-thumb {
    background: rgba(43, 141, 168, 0.25);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.tab-content::-webkit-scrollbar-thumb:hover {
    background: rgba(43, 141, 168, 0.45);
}

.tab-content.active {
    display: block;
}

.composition-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.composition-table th, .composition-table td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    font-size: 0.95rem;
}

.composition-table tbody tr:nth-child(even) {
    background-color: var(--light-bg);
}

.composition-table tbody tr:hover {
    background-color: rgba(43, 141, 168, 0.03);
}

.composition-table th {
    color: var(--teal);
    font-weight: 700;
    font-size: 1rem;
}

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

.composition-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.composition-table td:last-child:not([colspan]) {
    color: var(--text-muted);
    text-align: right;
    font-size: 0.95rem;
}

.icon-list {
    list-style: none;
    padding: 0;
}

.icon-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--text-body-dark);
    line-height: 1.6;
}

.icon-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    /* Product Page Specific */
    .product-detail-section {
        padding: 120px 0 60px;
    }
    .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-image-col {
        position: relative;
        top: 0;
    }
    .product-image-wrapper {
        padding: 20px;
    }
    .product-title {
        font-size: 2.5rem;
    }
    .product-subtitle {
        font-size: 1.15rem;
        margin-bottom: 20px;
    }
    .product-price-box {
        padding: 12px 14px;
        margin-top: 16px;
        gap: 6px;
    }
    .price-label {
        font-size: 0.8rem;
    }
    .price-value {
        font-size: 0.8rem;
    }
    .product-intro {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
    .product-ctas {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }
    .btn-whatsapp, .btn-call {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 1.05rem;
    }
    .product-tabs-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .tab-buttons {
        flex-direction: row;
        display: flex;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding: 0;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    .tab-buttons::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }
    .product-tabs-container .tab-btn {
        flex: 0 0 auto;
        padding: 14px 20px;
        font-size: 0.9rem;
        border-left: none;
        border-bottom: 3px solid transparent;
        text-align: center;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .product-tabs-container .tab-btn.active {
        border-bottom-color: var(--teal);
        border-left-color: transparent;
        background: #ffffff;
    }
    .tab-content {
        padding: 20px;
        max-height: 400px; /* Kept compact scrollable area on mobile and tablets */
    }
    .composition-table th, .composition-table td {
        padding: 10px 12px;
    }
    .composition-table td {
        font-size: 0.9rem;
    }
    
    /* Other Components */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .values-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
}

/* ==========================================================================
   Product Bottom CTA
   ========================================================================== */
.product-bottom-cta {
    position: relative;
    padding: 80px 0;
    margin: 60px auto 0;
    text-align: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: none;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
    overflow: hidden;
}

.product-bottom-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg opacity="0.05" xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="2" cy="2" r="1" fill="%23ffffff"/></svg>');
    z-index: 0;
}

.product-bottom-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.product-bottom-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
}

.product-bottom-cta p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.product-bottom-cta .cta-buttons-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-whatsapp.pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .product-bottom-cta {
        padding: 50px 20px;
        margin-top: 40px;
    }
    .product-bottom-cta h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    .product-bottom-cta p {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    .product-bottom-cta .cta-buttons-wrap {
        flex-direction: column;
        padding: 0 20px;
        gap: 12px;
    }
    .product-bottom-cta .cta-buttons-wrap .btn-whatsapp,
    .product-bottom-cta .cta-buttons-wrap .btn-call {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 2rem;
    }
    .product-subtitle {
        font-size: 1.05rem;
    }
    .product-image-wrapper {
        padding: 15px;
    }
    .composition-table th, .composition-table td {
        padding: 10px 8px;
    }
    .composition-table td {
        font-size: 0.85rem;
    }
    .composition-table td:last-child {
        font-size: 0.9rem;
    }
    .tab-content {
        padding: 16px;
    }
}

/* ==========================================================================
   Home Page Products Enhancements
   ========================================================================== */
.products-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    margin-bottom: 50px;
}

.products-search-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.products-search-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.products-search-input {
    width: 100%;
    padding: 18px 24px 18px 55px;
    border: 2px solid rgba(43, 141, 168, 0.15);
    border-radius: var(--radius-full);
    font-size: 1.05rem;
    font-family: inherit;
    background: #f0fdfa;
    color: var(--text-dark);
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
    transition: var(--transition-normal);
}

.products-search-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 10px 30px rgba(43, 141, 168, 0.15);
}

.products-no-results {
    text-align: center;
    padding: 60px 20px;
    font-size: 1.2rem;
    color: var(--text-muted);
    grid-column: 1 / -1;
    display: none;
}

.view-all-products-wrapper {
    text-align: center;
    margin-top: 60px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 10px 30px var(--primary-glow);
    transition: var(--transition-normal);
}

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(43, 141, 168, 0.4);
    color: white;
}

/* ==========================================================================
   Team Section (About Page)
   ========================================================================== */
.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border: none;
    border-radius: var(--radius-lg);
    padding: 0;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: 0 15px 35px rgba(9, 13, 22, 0.08);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(9, 13, 22, 0.15);
}

.team-img-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 0;
    position: relative;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-slow);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px 24px 28px;
    background: white;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.team-name {
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.team-designation {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* ==========================================================================
   Global Offices Section (About Page)
   ========================================================================== */
.global-presence-section {
    padding: 100px 0;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.office-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.office-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.office-card:hover .office-img {
    transform: scale(1.1);
}

.office-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(9, 13, 22, 0.9) 0%, rgba(9, 13, 22, 0) 100%);
    padding: 40px 24px 24px;
    color: white;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.office-card:hover .office-overlay {
    transform: translateY(0);
}

.office-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: var(--teal);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.office-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
}

.office-card.solid-card {
    height: auto;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.office-card.solid-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.15);
    transform: translateY(-10px);
}

.office-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.office-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.office-card.solid-card:hover .office-img-wrap img {
    transform: scale(1.05);
}

.office-info {
    padding: 20px;
    text-align: left;
}


/* ==========================================================================
   About Page Utilities
   ========================================================================== */
.page-hero {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
    z-index: 1;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75); /* Frosted glass overlay */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.page-hero-content {
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 15px;
    color: #0f172a; /* Dark Blue */
    font-weight: 800;
    text-shadow: none;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--primary-dark);
    font-weight: 600;
    text-shadow: none;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--teal);
    backdrop-filter: blur(5px);
}

/* Section Backgrounds */
.light-section {
    background-color: var(--light-bg);
    color: var(--text-body-dark);
}

.light-section .section-title {
    color: var(--text-dark);
}

.dark-section {
    background-color: var(--dark-bg);
    color: var(--text-white);
}

.dark-section .section-title {
    color: var(--text-white);
}

/* Mission Vision Grid */
.mv-grid-expanded {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}
@media (min-width: 992px) {
    .mv-grid-expanded {
        grid-template-columns: 1fr 1fr;
    }
}

.mv-box {
    background: var(--light-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-normal);
}

.mv-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.mission-list li i {
    color: var(--teal);
    margin-top: 5px;
}

/* Research & Sourcing */
.research-sourcing-section {
    padding: 100px 0;
}

.rs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}
@media (min-width: 992px) {
    .rs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.rs-card {
    background: white;
    border: 1px solid rgba(43, 141, 168, 0.1);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.rs-card h3 {
    color: var(--text-dark);
}

.rs-card p {
    color: var(--text-muted);
}

.rs-card:hover {
    background: var(--light-bg);
    border-color: rgba(43, 141, 168, 0.3);
    box-shadow: var(--shadow-md);
}

.rs-card.highlight-rs {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-color: var(--primary-dark);
}

.rs-icon {
    font-size: 2.5rem;
    color: var(--teal);
    margin-bottom: 20px;
}

/* ==========================================================================
   Careers Page Styles
   ========================================================================== */
.career-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.careers-culture-section {
    padding: 100px 0;
    color: var(--text-dark);
}

.culture-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

.culture-text p {
    color: var(--text-body-dark);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.culture-showcase-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--teal);
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.open-positions-section {
    padding: 100px 0;
    background: var(--light-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.job-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(300px circle at 50% 0px, rgba(43, 141, 168, 0.08), transparent 80%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.job-card:hover::before {
    opacity: 1;
}

.job-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(43, 141, 168, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-card-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.job-department {
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(43, 141, 168, 0.15);
    color: var(--teal);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: var(--teal);
}

.job-desc {
    font-size: 0.95rem;
    color: var(--text-body-dark);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.job-footer {
    margin-top: auto;
}

.btn-job-apply {
    width: 100%;
    padding: 12px 20px;
    background: var(--light-bg);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--primary-dark);
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-normal);
}

.job-card:hover .btn-job-apply {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-job-apply:hover {
    transform: scale(1.02);
}

.career-apply-section {
    padding: 100px 0;
    position: relative;
}

.career-form-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.career-form-info {
    padding: 50px;
    background: var(--light-bg);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.career-form-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.career-form-info p {
    color: var(--text-body-dark);
    line-height: 1.6;
    margin-bottom: 30px;
}

.guidelines-box {
    background: var(--primary-light);
    border: 1px solid rgba(43, 141, 168, 0.2);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.guidelines-box h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.guidelines-box ul {
    list-style: none;
    padding: 0;
}

.guidelines-box li {
    font-size: 0.88rem;
    color: var(--text-body-dark);
    line-height: 1.5;
    margin-bottom: 12px;
    position: relative;
    padding-left: 18px;
}

.guidelines-box li::before {
    content: '•';
    color: var(--teal);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: -2px;
}

.guidelines-box li:last-child {
    margin-bottom: 0;
}

.career-contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
    border-radius: var(--radius-md);
}

.contact-card-icon {
    font-size: 1.5rem;
    color: var(--teal);
}

.contact-card-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-card-text p a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
}

.contact-card-text p a:hover {
    color: var(--teal);
}

.career-form-box {
    padding: 50px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.career-form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.career-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.career-form input, .career-form select, .career-form textarea {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition-normal);
}

.career-form select {
    cursor: pointer;
}

.career-form select option {
    background: #0f172a;
    color: var(--text-dark);
}

.career-form input:focus, .career-form select:focus, .career-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 10px rgba(43, 141, 168, 0.15);
}

.apply-actions-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.btn-apply-email, .btn-apply-whatsapp {
    padding: 14px 20px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-normal);
    text-decoration: none;
}

.btn-apply-email {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 25px var(--primary-glow);
}

.btn-apply-email:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(43, 141, 168, 0.4);
}

.btn-apply-whatsapp {
    background: linear-gradient(135deg, #128C7E, #25D366);
    color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.btn-apply-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.35);
}

@media (max-width: 992px) {
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .career-form-wrapper {
        grid-template-columns: 1fr;
    }
    .career-form-info {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 40px;
    }
    .career-form-box {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .careers-culture-section, .open-positions-section, .career-apply-section {
        padding: 60px 0;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .apply-actions-btn-group {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ==========================================================================
   Floating Quick Contact Buttons
   ========================================================================== */
.floating-contact-buttons {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0); /* Fixes blurry edges during transitions */
    border: none;
}

.floating-btn.btn-call {
    background: #000000;
}

.floating-btn.btn-call:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.floating-btn.btn-whatsapp {
    background: #25D366;
    animation: whatsapp-pulse 2s infinite;
}

.floating-btn.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Tooltip on hover */
.btn-tooltip {
    position: absolute;
    right: 70px;
    background: rgba(9, 13, 22, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    transform: translateX(10px);
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsiveness for Floating Buttons */
@media (max-width: 576px) {
    .floating-contact-buttons {
        right: 16px;
        bottom: 16px;
        gap: 12px;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    /* Hide tooltip on mobile to avoid layout clutter */
    .btn-tooltip {
        display: none !important;
    }
}


/* ==========================================================================
   Products Page Styles
   ========================================================================== */
.products-page-container {
    padding: 100px 0;
    background: var(--light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-display-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.product-display-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(43, 141, 168, 0.3);
}

.product-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.product-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-display-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-display-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-display-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--teal);
    font-weight: 700;
    margin-bottom: 8px;
}

.product-display-title {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 12px;
}

.product-display-desc {
    font-size: 0.95rem;
    color: var(--text-body-dark);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-display-action {
    margin-top: auto;
}

.btn-product-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-normal);
}

.product-display-card:hover .btn-product-view {
    color: var(--teal);
}

.btn-product-view i {
    transition: transform 0.3s ease;
}

.product-display-card:hover .btn-product-view i {
    transform: translateX(4px);
}


.product-thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    border: 2px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
    transition: var(--transition-fast);
}

.product-thumbnail.active {
    border-color: var(--teal);
    box-shadow: 0 4px 10px rgba(43, 141, 168, 0.3);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.product-img-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

/* ==========================================================================
   Media Page Styles
   ========================================================================== */
.media-section {
    padding: 80px 0 120px;
    background-color: var(--light-bg);
}

.media-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.media-filters .tab-btn {
    background-color: #ffffff;
    color: var(--text-muted);
    border: 1px solid rgba(43, 141, 168, 0.15);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.media-filters .tab-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.media-filters .tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: all 0.4s ease;
}

/* Filtering Animations */
.media-card.filtered-out {
    display: none;
}

.media-card.fade-in-anim {
    animation: mediaCardReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes mediaCardReveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.media-card {
    background-color: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(43, 141, 168, 0.2);
}

.media-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: #e2e8f0;
}

.media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-card:hover .media-img {
    transform: scale(1.06);
}

.media-overlay-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(43, 141, 168, 0.15);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-fast);
    z-index: 1;
}

.media-overlay-zoom i {
    color: white;
    font-size: 1.8rem;
    background: rgba(15, 23, 42, 0.6);
    padding: 16px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transform: scale(0.8);
    transition: var(--transition-normal);
}

.media-card:hover .media-overlay-zoom {
    opacity: 1;
}

.media-card:hover .media-overlay-zoom i {
    transform: scale(1);
}

.media-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.media-tag {
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary);
    background-color: rgba(43, 141, 168, 0.08);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(43, 141, 168, 0.15);
}

.media-info h3 {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 800;
}

.media-info p {
    font-size: 0.95rem;
    color: var(--text-body-dark);
    line-height: 1.5;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.active .lightbox-image {
    transform: scale(1);
}

.lightbox-caption-box {
    margin-top: 20px;
    text-align: center;
    color: #ffffff;
    max-width: 600px;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: white;
}

.lightbox-desc {
    font-size: 1rem;
    color: #94a3b8;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2.2rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: var(--teal);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.lightbox-arrow:hover {
    background: var(--primary);
    border-color: transparent;
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-arrow.prev {
    left: -80px;
}

.lightbox-arrow.next {
    right: -80px;
}

/* Responsiveness for Media Grid */
@media (max-width: 1024px) {
    .media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .lightbox-arrow.prev {
        left: -30px;
        background: rgba(15, 23, 42, 0.6);
    }
    .lightbox-arrow.next {
        right: -30px;
        background: rgba(15, 23, 42, 0.6);
    }
}

@media (max-width: 768px) {
    .media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .media-section {
        padding: 50px 0 80px;
    }
    .media-filters {
        margin-bottom: 30px;
        gap: 10px;
    }
    .lightbox-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .lightbox-arrow.prev {
        left: 10px;
    }
    .lightbox-arrow.next {
        right: 10px;
    }
    .lightbox-close {
        right: 10px;
        top: -45px;
    }
}

