   /* * Item Name: ASEC Technology - Hardware Engineering Template
 * Author: YourName/ASEC
 * License: Standard License (see LICENSE.txt)
 * Copyright 2026 ASEC Technology
 */


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow-y: auto !important;
    overflow-x: hidden; 
    -webkit-font-smoothing: antialiased

}


.wrapper {
       background: linear-gradient(135deg, #ffffff 0%, #ffffff  50%, #ffffff 100%);
  /* background: linear-gradient(135deg, #02040f 0%, #02040f  50%, #081221 100%); */
}




/* ==========================================================================
   COLOR VARIABLES (THEME SETTINGS)
   ========================================================================= */
:root {
    /* Brand & UI Colors */
    --header-bg-color: rgba(255, 255, 255, 0.87);
    --header-border-color: rgba(190, 244, 255, 0.1);
    --header-hover-border: rgba(0, 212, 255, 0.3);
    --logo-glow-color: rgba(41, 98, 255, 0.2);
    
    /* Navigation Colors */
    --nav-link-color: #94a3b8;
    --nav-link-active: #000000;
    --nav-underline-color: #00D4FF;
    --nav-underline-glow: rgba(0, 212, 255, 0.8);
    --nav-dot-color: #007bff;
    
    /* Primary Button Colors */
    --btn-primary-bg: linear-gradient(135deg, #2962FF, #0030b3);
    --btn-hover-bg: #00D4FF;
    --btn-shadow-color: rgba(41, 98, 255, 0.3);
    --btn-hover-shadow: rgba(0, 212, 255, 0.5);
    --btn-text-contrast: #050a15;
}

/* ==========================================================================
   START HEADER NAVIGATIONS STYLES
   ========================================================================== */

header.container {
    position: fixed;        
    top: 0;
    left: 0;
    width: 100%;            
    max-width: 100%; 
    display: flex;           
    justify-content: space-between; 
    align-items: center;     
    padding: 15px 6%;
    z-index: 1000;         
    
    /* Background & Effects */
    background: var(--header-bg-color); 
    backdrop-filter: blur(20px);        
    -webkit-backdrop-filter: blur(20px); 
    
    /* Borders & Shadows */
    border-bottom: 1px solid var(--header-border-color);  
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s var(--tf-ease);
}

header.container:hover {
    border-bottom: 1px solid var(--header-hover-border);
}

.logo img {
    height: 38px;           
    width: auto;             
    display: block;
    filter: drop-shadow(0 0 8px var(--logo-glow-color));
}

header nav ul {
    list-style: none;       
    display: flex;          
    gap: 45px;               
    align-items: center;
}

header nav ul li a {
    position: relative;      
    color: var(--nav-link-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;   
    transition: all 0.3s var(--tf-ease);
}

/* Cyber Underline Effect */
header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--nav-underline-color);
    box-shadow: 0 0 10px var(--nav-underline-glow);
    transition: width 0.3s var(--tf-ease);
}

header nav ul li a:hover::after,
header nav ul li.active a::after {
    width: 100%;
}

header nav ul li.active a, 
header nav ul li a:hover {
    color: var(--nav-link-active);
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
}

/* Primary CTA Button */
header nav ul li.primary {
    background: var(--btn-primary-bg); 
    padding: 12px 28px;
    border-radius: 4px;
    border: none;
    transition: all 0.4s var(--tf-ease);
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px var(--btn-shadow-color);
}

header nav ul li.primary a {
    color: var(--nav-link-color); /* Matches your original slate grey */
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

header nav ul li.primary a::after {
    display: none; 
}

header nav ul li.primary:hover {
    transform: translateY(-2px);
    background: var(--btn-hover-bg); 
    box-shadow: 0 8px 25px var(--btn-hover-shadow);
}

header nav ul li.primary:hover a {
    color: var(--btn-text-contrast);
}

@media (max-width: 1024px) {
    /* 1. Reduce padding to save horizontal space */
    header.container {
        padding: 15px 4%;
    }

    /* 2. Tighten gap between menu items */
    header nav ul {
        gap: 20px; 
    }

    /* 3. Compact typography for medium screens */
    header nav ul li a {
        font-size: 13px;
        letter-spacing: 0.8px;
    }

    /* 4. Adjust primary button padding for balance */
    header nav ul li.primary {
        padding: 10px 20px;
    }
}

/* Switching to Mobile Burger at 776px */
@media (max-width: 776px) {
    header.container {
        padding: 15px 5%;
    }
    header nav ul {
        display: none; /* Mobile menu implementation goes here */
    }
}

/* ==========================================================================
   MENU HOVER INDICATOR (ANIMATED DOT)
   ========================================================================== */

header nav ul li:not(.active) a::after {
    content: '';           
    position: absolute;
    bottom: -10px;           
    left: 50%;
    width: 5px;             
    height: 5px;             
    background: var(--nav-dot-color);   
    border-radius: 50%;      
    transform: translateX(-50%) scale(0);
    transition: 0.3s;         
    box-shadow: 0 0 10px var(--nav-dot-color); 
}

header nav ul li:not(.active) a:hover::after {
    transform: translateX(-50%) scale(1.5); 
}

/* ==========================================================================
   COLOR VARIABLES (MOBILE LIGHT THEME)
   ========================================================================== */
:root {
    /* Drawer Aesthetics */
    --m-menu-bg: rgba(255, 255, 255, 0.98);
    --m-menu-border: rgba(0, 212, 255, 0.1);
    --m-burger-line: #000000; /* Darker for light theme */
    --m-burger-active: #00D4FF;
    
    /* Mobile Typography */
    --m-link-idle: #94a3b8;
    --m-link-hover: #000000;
    --m-link-tap: #00D4FF;
    --m-link-glow: rgba(0, 212, 255, 0.8);
    
    /* Primary CTA Button */
    --m-cta-grad: linear-gradient(135deg, #2962FF, #00D4FF);
    --m-cta-shadow: rgba(41, 98, 255, 0.3);
    --m-cta-text: #ffffff;
}

/* ==========================================================================
   START MOBILE MENU & NAVIGATION STYLES
   ========================================================================== */

/**
 * Menu Toggle (Burger Icon)
 * Positioned above the drawer with custom cubic-bezier timing.
 */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100; 
    position: relative;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--m-burger-line); 
    margin: 6px 0;
    transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    border-radius: 2px;
}

/* --- MOBILE RESPONSIVE (768px) --- */
@media screen and (max-width: 768px) {
    
    .menu-toggle {
        display: block; 
    }

    /**
     * Side Drawer Menu
     * Features high-end glassmorphism and smooth right-side entry.
     */
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 85%; /* Optimal width for mobile reach */
        height: 100vh;
        
        background: var(--m-menu-bg);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        
        /* Neon Edge Depth */
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.1);
        border-left: 1px solid var(--m-menu-border);
    }

    #nav-menu.active {
        right: 0; 
    }

    #nav-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 30px; /* Thumb-friendly tap targets */
        text-align: center; 
    }

    #nav-menu ul li a {
        font-size: 24px; 
        color: var(--m-link-idle); 
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        transition: 0.3s ease;
    }

    /* Feedback on tap: Color shift and scale down */
    #nav-menu ul li a:active {
        color: var(--m-link-tap);
        transform: scale(0.95);
        text-shadow: 0 0 15px var(--m-link-glow);
    }
    
    #nav-menu ul li a:hover {
        color: var(--m-link-hover);
    }

    /**
     * Primary CTA Button
     * Enhanced visibility for mobile conversion.
     */
    #nav-menu ul li.primary {
        background: var(--m-cta-grad);
        padding: 15px 45px;
        border-radius: 4px; 
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 10px 20px var(--m-cta-shadow);
    }

    #nav-menu ul li.primary a {
        color: var(--m-cta-text);
        font-size: 18px;
        font-weight: 800;
    }
    
    /* Tactile feedback for primary button */
    #nav-menu ul li.primary:active {
        transform: scale(0.98);
    }

    /**
     * Burger Icon Animation
     * Smooth 'X' transformation on menu open.
     */
    .menu-toggle.open span {
        background: var(--m-burger-active); 
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.7);
    }

    .menu-toggle.open span:nth-child(1) { 
        transform: translateY(8px) rotate(45deg); 
    }
    
    .menu-toggle.open span:nth-child(2) { 
        opacity: 0; 
        transform: translateX(10px); 
    }
    
    .menu-toggle.open span:nth-child(3) { 
        transform: translateY(-8px) rotate(-45deg); 
    }
}

/* ==========================================================================
   END OF MOBILE MENU & NAVIGATION STYLES 
   ========================================================================== */


/* ==========================================================================
   MEGA HERO LIGHT EDITION - THEME VARIABLES
   ========================================================================== */
:root {
    /* Industrial Light Palette */
    --v4-bg-light: #ffffff;
    --v4-accent: rgb(0, 14, 145);      /* Deep Blue */
    
    /* Typography Colors */
    --v4-text-main: rgb(255, 255, 255); /* High Contrast for Overlays */
    --v4-text-dim: rgb(255, 255, 255);      /* Muted Brand Color */
    
    /* Animation Physics */
    --v4-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --v4-reveal-speed: 1.2s;
}

/* ==========================================================================
   START OF HERO INFO SECTION STYLES
   ========================================================================== */

/**
 * 1. RESET & FOUNDATION
 * Viewport-filling container with Inter typography.
 */
.mega-hero_l {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--v4-bg-light);
    font-family: 'Inter', sans-serif;
}

/**
 * 2. VISUAL ENGINE (Background & Frame)
 * Handles the "Floating Frame" effect and cinematic focus.
 */
.mega-hero_l-visual-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mega-hero_l-bg-img {
    width: 98%;
    height: 95%;
    object-fit: cover;
    border-radius: 24px;
    display: block;
    
    /* Initial Cinematic State (Blurred) */
    filter: blur(25px) brightness(1.05);
    transform: scale(1.1);
    animation: mega-hero_l-cameraFocus 3s var(--v4-ease) forwards;
    transition: transform 1s var(--v4-ease);
}

/* Subtle Zoom Interaction on Hover */
.mega-hero_l:hover .mega-hero_l-bg-img {
    transform: scale(1.03);
}

/**
 * 3. CONTENT LAYOUT
 */
.mega-hero_l-content-box {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1600px;
}

.mega-hero_l-layout-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/**
 * 4. TYPOGRAPHY (Hero Title)
 * Massive text with scanning reveal effect.
 */
.mega-hero_l-huge-title {
    color: var(--v4-text-main);
    font-size: clamp(50px, 8vw, 130px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -3px;
    text-transform: uppercase;
    margin: 0;
    
    /* Scanning Animation Logic */
    clip-path: inset(0 100% 0 0); 
    opacity: 0;
    animation: mega-hero_l-textScan 2s var(--v4-ease) forwards 0.8s;
}

.mega-hero_l-accent-bar {
    width: 0;
    height: 6px;
    background: var(--v4-accent);
    margin-top: 30px;
    animation: mega-hero_l-lineExtend 1.5s ease forwards 1.2s;
}

/**
 * 5. DATA PANELS (Content & Metrics)
 */
.mega-hero_l-details {
    max-width: 500px;
    color: var(--v4-text-main);
}

.mega-hero_l-id-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    letter-spacing: 6px;
    color: var(--v4-accent);
    font-weight: 800;
}

.mega-hero_l-details h3 {
    font-size: clamp(24px, 4vw, 36px);
    margin: 20px 0;
    font-weight: 700;
    line-height: 1.2;
    color: var(--v4-text-main);
}

.mega-hero_l-details p {
    color: var(--v4-text-dim);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Specs & Metadata Row */
.mega-hero_l-specs-row {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.mega-hero_l-spec-label { 
    display: block; 
    font-size: 11px; 
    color: var(--v4-accent); 
    font-weight: 900; 
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.mega-hero_l-spec-value { 
    font-weight: 700; 
    font-size: 18px; 
    font-family: 'JetBrains Mono', monospace; 
    color: var(--v4-text-main);
}

/* Primary Action Link (CTA) */
.mega-hero_l-action-link {
    display: inline-flex;
    align-items: center;
    color: var(--v4-text-main);
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 2px;
    border-bottom: 3px solid var(--v4-accent);
    padding-bottom: 8px;
    transition: all 0.4s var(--v4-ease);
}

.mega-hero_l-action-link span {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.mega-hero_l-action-link:hover {
    color: var(--v4-accent);
    padding-left: 15px;
}

.mega-hero_l-action-link:hover span {
    transform: translateX(8px);
}

/**
 * 6. REVEAL SYSTEM
 * Staggered translateY animations for child elements.
 */
.reveal-node {
    opacity: 0;
    transform: translateY(40px);
    animation: mega-hero_l-itemUp var(--v4-reveal-speed) var(--v4-ease) forwards;
}

/* Sequential Animation Delays */
.mega-hero_l-details .reveal-node:nth-child(1) { animation-delay: 1.0s; } /* Code */
.mega-hero_l-details .reveal-node:nth-child(2) { animation-delay: 1.2s; } /* H3 */
.mega-hero_l-details .reveal-node:nth-child(3) { animation-delay: 1.4s; } /* P */
.mega-hero_l-details .reveal-node:nth-child(4) { animation-delay: 1.6s; } /* Specs Row */
.mega-hero_l-details .reveal-node:nth-child(5) { animation-delay: 1.8s; } /* Link */

/**
 * 7. KEYFRAMES
 */
@keyframes mega-hero_l-cameraFocus {
    to { filter: blur(0px) brightness(1.1); transform: scale(1); }
}

@keyframes mega-hero_l-textScan {
    to { clip-path: inset(0 0 0 0); opacity: 1; }
}

@keyframes mega-hero_l-lineExtend {
    to { width: 120px; }
}

@keyframes mega-hero_l-itemUp {
    to { opacity: 1; transform: translateY(0); }
}

/**
 * 8. RESPONSIVE ADAPTATION
 * Optimized for tablets and mobile devices.
 */
@media (max-width: 992px) {
    .mega-hero_l { 
        height: auto; 
        min-height: 100vh; 
        padding: 120px 0 80px; 
    }
    .mega-hero_l-layout-grid { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 60px; 
    }
    .mega-hero_l-bg-img { 
        width: 100%; 
        height: 100%; 
        border-radius: 0; 
    }
    .mega-hero_l-huge-title { 
        font-size: 60px !important; 
    }
}

/* ==========================================================================
   END OF HERO SECTION STYLES
   ========================================================================== */











/* ==========================================================================
   MISSION SECTION - THEME VARIABLES
   ========================================================================== */
:root {
    /* Brand & UI Colors */
    --ms-text: #000000;
    --ms-muted: #94a3b8;
    --ms-accent: rgb(0, 14, 145);
    --ms-divider: rgba(0, 0, 0, 0.08); /* Adjusted for light theme consistency */
    
    /* Animation Physics */
    --ms-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ms-reveal-duration: 1.4s;
    --ms-stat-duration: 1.2s;
}

/* ==========================================================================
   START OF MISSION SECTION STYLES
   ========================================================================== */

/**
 * 1. CORE SECTION CONTAINER
 * Features high-end padding and entrance animation logic.
 */
.mission-section {
    position: relative;
    padding: 260px 10%; 
    background-color: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ms-text);
    overflow: hidden;
    
    /* Initial state for Scroll Reveal */
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--ms-reveal-duration) var(--ms-ease);
}

.mission-section.appear {
    opacity: 1;
    transform: translateY(0);
}

/**
 * 2. GRID STRUCTURE
 * Implements a 3-column split (Content | Divider | Stats).
 */
.mission-split-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    /* Wide content area (1.8fr) vs Numerical data (1fr) */
    grid-template-columns: 1.8fr 1px 1fr; 
    gap: 1600px; 
    gap: 160px; /* High-end breathing room */
    align-items: start;
}

/**
 * 3. LEFT SIDE: MISSION CONTENT
 */
.mission-left-content {
    display: flex;
    flex-direction: column;
}

.mission-left-content .label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 8px;
    color: var(--ms-accent);
    margin-bottom: 70px;
    text-transform: uppercase;
}

.mission-left-content .mission-text {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 120px;
    letter-spacing: -2px;
    max-width: 950px;
    -webkit-text-fill-color: initial !important;
    background: none !important;
}

/* Secondary faded text style */
.mission-left-content .gray-text {
    color: var(--ms-muted);
    opacity: 0.35;
}

/**
 * 4. MEDIA WRAPPER
 * Sophisticated image container with flexible sizing variables.
 */
.mission-image-wrap {
    /* Adjustable Image Dimensions */
    --img-w: 600px; 


    position: relative;
    max-width: var(--img-w);
    width: 100%;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15); /* Softened for light theme */
    margin-top: 60px; 
}

.mission-image-wrap img {
    width: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.95);
    transition: transform 3s var(--ms-ease);
}

.mission-section.appear .mission-image-wrap img {
    transform: scale(1);
}

/**
 * 5. CENTER DIVIDER
 * Animated vertical line that grows on reveal.
 */
.vertical-divider {
    background: var(--ms-divider);
    height: 0%;
    transition: height 2s var(--ms-ease) 0.6s;
}

.mission-section.appear .vertical-divider {
    height: 100%;
}

/**
 * 6. RIGHT SIDE: DATA PANELS
 * High-impact numerical statistics with staggered entry.
 */
.mission-data-column {
    display: flex;
    flex-direction: column;
    gap: 140px; 
    padding-top: 180px; /* Offset for organic layout feel */
}

.stat-block {
    opacity: 0;
    transform: translateX(40px);
    transition: all var(--ms-stat-duration) var(--ms-ease);
}

.mission-section.appear .stat-block {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Delay Logic */
.stat-block:nth-child(1) { transition-delay: 0s; }
.stat-block:nth-child(2) { transition-delay: 0.3s; }
.stat-block:nth-child(3) { transition-delay: 0.6s; }

.stat-block .stat-number {
    font-size: clamp(65px, 8vw, 110px);
    font-weight: 900;
    line-height: 0.9;
    display: block;
    margin-bottom: 25px;
}

.stat-block .stat-number sup {
    font-size: 0.35em;
    color: var(--ms-accent);
    margin-left: 10px;
}

.stat-block .stat-desc {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--ms-muted);
    font-weight: 700;
}

/**
 * 7. RESPONSIVE ADAPTATION
 */
@media (max-width: 1300px) {
    .mission-split-grid { gap: 100px; }
}

@media (max-width: 1100px) {
    .mission-section { padding: 120px 5%; }
    .mission-split-grid { 
        grid-template-columns: 1fr; 
        gap: 80px; 
    }
    .mission-image-wrap { 
        width: 100%; 
        height: auto; 
    }
    .vertical-divider { 
        display: none; 
    }
    .mission-data-column { 
        flex-direction: row; 
        flex-wrap: wrap; 
        gap: 80px;
        padding-top: 0;
    }
}

/* ==========================================================================
   END OF MISSION SECTION STYLES
   ========================================================================== */



   /* ==========================================================================
   ASEC TECHNOLOGY - INFINITE CAROUSEL ULTIMATE
   Theme: Arctic White & Steel Blue
   Focus: Hardware Acceleration & Premium Easing
   ========================================================================== */

:root {
    /* Brand & Background Palette */
    --bg-white: #ffffff;        
    --card-bg-inactive: #f8fafc; /* Subtle grey-blue for inactive cards */
    --accent-blue: #2962FF;     /* Corporate Electric Blue */
    
    /* Typography Colors */
    --text-main: #0f172a;
    --text-H3: #000000;       /* Deep Slate for titles */
    --text-muted: #64748b;      /* Professional Grey for descriptions */
    
    /* Geometry & Spacing */
    --card-w: 310px;            /* Precise card width */
    --gap: 180px;               /* Space between cards */
    
    /* Animation Physics */
    --smooth-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ==========================================================================
   1. MAIN SECTION CONTAINER
   ========================================================================== */

.infinite-carousel {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: var(--bg-white);
    
    /* Initial state for scroll reveal animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s var(--smooth-ease), transform 1.5s var(--smooth-ease);
}

/* Triggered via JS when section enters the viewport */
.infinite-carousel.active-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   2. VIEWPORT & TRACK
   ========================================================================== */

.carousel-viewport {
    width: 100%;
    max-width: 1400px;
    height: 620px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards-track {
    display: flex;
    gap: var(--gap);
    align-items: center;
    /* Hardware Acceleration */
    will-change: transform;
    transition: transform 0.8s var(--smooth-ease);
}

/* ==========================================================================
   3. SERVICE CARD - INACTIVE STATE
   ========================================================================== */

.service-card {
    flex: 0 0 var(--card-w);
    width: var(--card-w);
    height: 480px;
    background: var(--card-bg-inactive);
    border: 1px solid rgba(0, 0, 0, 0.03); 
    border-radius: 30px;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    /* Inactive Visuals */
    opacity: 0.35; 
    transform: scale(0.9);
    filter: grayscale(50%);
    
    transition: 
        transform 0.8s var(--smooth-ease), 
        opacity 0.8s var(--smooth-ease), 
        filter 0.8s var(--smooth-ease),
        background 0.5s ease,
        box-shadow 0.5s ease;
}

/* ==========================================================================
   4. SERVICE CARD - ACTIVE STATE
   ========================================================================== */

.service-card.active {
    opacity: 1;
    transform: scale(1.08); 
    filter: grayscale(0%);
    background: #ffffff; 
    border-color: var(--accent-blue);
    z-index: 10;
    
    /* Premium Floating Shadow */
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   5. IMAGE & TYPOGRAPHY
   ========================================================================== */

.info--image {
    width: 100%;
    height: 180px;
    margin-bottom: 30px;
    transition: transform 0.8s var(--smooth-ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info--image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.1));
}

/* Image lift for active card */
.service-card.active .info--image {
    transform: translateY(-15px) scale(1.05);
}

.service-card h3 {
    color: var( --text-H3);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   6. CONTROLS (ARROWS)
   ========================================================================== */

.carousel-controls { 
    margin-top: 40px; 
    display: flex; 
    gap: 25px; 
}

.nav-arrow { 
    width: 60px; 
    height: 60px;
    border: 1px solid var(--accent-blue);
    border-radius: 50%; 
    cursor: pointer;
    display: flex; 
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    border-color: var(--accent-blue);
    background: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(41, 98, 255, 0.4);
}

/* ==========================================================================
   7. MOBILE RESPONSIVENESS
   ========================================================================== */

@media (max-width: 768px) {
    :root { 
        --gap: 30px; 
        --card-w: 280px; 
    }
    
    .service-card { 
        opacity: 0.2; 
        transform: scale(0.85);
    }
    
    .service-card.active { 
        transform: scale(1.03); 
    }
}
/* ==========================================================================
   INDUSTRIAL DESIGN SYSTEM - DARK MODE
   Theme: Midnight & Electric Blue
   Focus: Centered Industrial Features
   ========================================================================== */

:root {
    /* Deep Dark Palette */
    --bg-page: #0a0a0a;             
    --bg-card: #141414;             
    --border-soft: #222222;         
    --border-hover: #333333;        
    
    /* Brand & Typography */
    --text-main: #ffffff;           
    --text-muted: #8e8e93;          
    --accent-blue: #0071ff;         
    --accent-neon: #2962FF;         
    
    /* Geometry */
    --radius-island: 42px;          
    --radius-inner: 24px;           
    
    /* Animation Physics */
    --swiss-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --expo-ease: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ==========================================================================
   1. SHARED REVEAL SYSTEM
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s var(--swiss-ease), transform 1.2s var(--swiss-ease);
}

.reveal-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   2. FEATURES ROW (GRID LOGIC)
   ========================================================================== */

.features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    padding: 100px 0;
}

/**
 * FEATURE ITEM
 * Centered layout with entrance scaling effect.
 */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;   
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    
    /* Reveal State */
    opacity: 0; 
    transform: translateY(40px) scale(0.9);
    transition: opacity 1.2s var(--expo-ease), transform 1.2s var(--expo-ease);
}

.features-row.appear .feature-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Sequential Entrance (Cascade) */
.feature-item:nth-child(1) { transition-delay: 0s; }
.feature-item:nth-child(2) { transition-delay: 0.3s; }
.feature-item:nth-child(3) { transition-delay: 0.6s; }
.feature-item:nth-child(4) { transition-delay: 0.9s; }

/* ==========================================================================
   3. ICON & GRAPHICS
   ========================================================================== */

.icon-circle {
    width: 100px;
    height: 100px;
    border: 2px solid var(--accent-neon); 
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 98, 255, 0.05);
    position: relative;
    transition: all 0.5s var(--expo-ease);
    margin-bottom: 25px;
}

.icon-circle i {
    font-size: 38px;
    color: var(--accent-neon);
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.4));
    transition: all 0.4s ease;
}

/* Interaction State */
.feature-item:hover .icon-circle {
    transform: translateY(-12px);
    border-color: var(--accent-neon);
    background: var(--accent-neon);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.feature-item:hover .icon-circle i {
    color: #ffffff;
    transform: scale(1.1);
}

/* ==========================================================================
   4. TYPOGRAPHY
   ========================================================================== */

.feature-item h1 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px 0;
    color: var(--text-main);
}

.feature-item p {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.6;
    letter-spacing: 1px;
    opacity: 0.6;
    transition: 0.4s;
}

.feature-item:hover p {
    opacity: 1;
    color: var(--text-main);
}

/* ==========================================================================
   5. RESPONSIVITY & PERFORMANCE
   ========================================================================== */

@media (max-width: 1024px) {
    .features-row { gap: 60px; }
}

@media (max-width: 768px) {
    .features-row { flex-direction: column; align-items: center; }
}

/* Hardware-Performance & Accessibility Fix */
@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll, 
    .feature-item { 
        transition: none !important; 
        opacity: 1 !important; 
        transform: none !important; 
    }
}

/* ==========================================================================
   END OF FEATURES SECTION
   ========================================================================== */


   /* ==========================================================================
    START services-island-wrap
   ========================================================================== */




   /* --- SECTION WRAPPER --- */
.projects-v2-island-wrap {
    padding: 100px 0;
    display: flex;
    justify-content: center;
    background-color:transparent; /* Light theme background */
}

/* --- THE "ISLAND" CONTAINER --- */
.projects-v2-blue-island {
    width: 90%;
    max-width: 1400px;
    background: transparent;
    border-radius: 40px; /* Large "Island" radius */
    padding: 80px 6%;
    position: relative;
    overflow: hidden;
    color:  #0071ff;
   
}

/* --- CONTENT REVEAL LOGIC --- */
.projects-v2-content .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* When the section appears (triggered by JS or class) */
.projects-v2-blue-island.appear .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays (The "Step" effect) */
.projects-v2-content .reveal-item:nth-child(1) { transition-delay: 0.2s; }
.projects-v2-content .reveal-item:nth-child(2) { transition-delay: 0.4s; }
.projects-v2-content .reveal-item:nth-child(3) { transition-delay: 0.6s; }
.projects-v2-content .reveal-item:nth-child(4) { transition-delay: 0.8s; }

/* --- TYPOGRAPHY --- */
.projects-v2-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 15px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.projects-v2-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
}

.projects-v2-lead {
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* --- BUTTON STYLE --- */
.projects-v2-btn {
    display: inline-flex;
    align-items: center;
    background: #0071ff;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.projects-v2-btn:hover {
    background: #0071ff;
    color:  #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(51, 51, 51, 0.3);
}

.projects-v2-btn:hover i {
    transform: translateX(5px);
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .projects-blue-island { padding: 40px 25px; border-radius: 30px; }
    .projects-title { font-size: 32px; }
}



   /* ==========================================================================
    END services-island-wrap
   ========================================================================== */





      /* ==========================================================================
    START projects-island-wrap
   ========================================================================== */



/* Container to help centering */
.projects-island-wrap {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* The Blue Island */
.projects-blue-island {
    background: #2962FF;
    max-width: 1200px; 
    width: 100%;
    border-radius: 40px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 85, 255, 0.2);
    
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Logic for reveal */
.projects-blue-island.appear {
    opacity: 1;
    transform: translateY(0);
}

.projects-tag {
    display: inline-block;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.projects-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.projects-lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    max-width: 500px;
    margin: 0 auto 35px auto;
    line-height: 1.5;
}

/* Glowing Button */
.projects-btn {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    color: #0055ff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.projects-btn i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.projects-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.projects-btn:hover i {
    transform: translateX(5px);
}

/* Mobile adjustments */
@media (max-width: 640px) {
    .projects-blue-island { padding: 40px 25px; border-radius: 30px; }
    .projects-title { font-size: 32px; }
}


  /* ==========================================================================
    END projects-island-wrap
   ========================================================================== */









/* ==========================================================================
   INDUSTRIAL ISLANDS SECTION
   Theme: High-End White Industrial
   Features: Magnetic Motion, Liquid Chrome Typography, Laser Shimmer
   ========================================================================== */

:root {
    /* Background & Surface */
    --bg-page: #ffffff;
    --bg-card: #ffffff;
    
    /* Accents & Auras */
    --accent-blue: #2962FF;
    --blue-aura: rgba(41, 98, 255, 0.2);
    --border-soft: rgba(0, 0, 0, 0.05);
    --border-hover: rgba(41, 98, 255, 0.5);
    
    /* Typography Colors */
    --title-gradient: linear-gradient(180deg, #000000 0%, #888888 50%, #000000 100%);
    --text-data: #888;
    --text-active: #000000;
    
    /* Animation Physics */
    --v4-ease: cubic-bezier(0.22, 1, 0.36, 1); /* High-end "Exponential" easing */
}

/* ==========================================================================
   1. SECTION FOUNDATION
   ========================================================================== */

.tf-industrial-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: transparent;
}

.tf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   2. THE CARD: MAGNETIC MOTION
   ========================================================================== */

.tf-swiss-card {
    opacity: 0;
    transform: translateY(50px) scale(0.98);
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 40px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
    transition: 
        opacity 1.4s var(--v4-ease), 
        transform 1.4s var(--v4-ease),
        border-color 0.4s ease,
        box-shadow 0.8s var(--v4-ease);
}

/* Triggered by JS when entering viewport */
.tf-swiss-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.tf-swiss-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-12px) scale(1.005);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.6),
        0 0 30px var(--blue-aura);
}

/* ==========================================================================
   3. TITLES: LIQUID CHROME
   ========================================================================== */

.tf-card-title {
    font-size: clamp(32px, 5vw, 55px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    text-transform: uppercase;
    display: block;
    background: var(--title-gradient);
    background-size: 100% 300%;
    background-position: 0 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1s var(--v4-ease);
}

.tf-swiss-card:hover .tf-card-title {
    background-position: 0 100%;
}

/* ==========================================================================
   4. MEDIA: CINEMATIC PAN
   ========================================================================== */

.tf-card-media {
    height: 520px;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
    background: #000;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) grayscale(0.2);
    transition: transform 6s var(--v4-ease), filter 1.2s ease;
}

.tf-swiss-card:hover .main-img {
    filter: brightness(1) grayscale(0);
    transform: scale(1.12);
}

/* ==========================================================================
   5. STAGGERED DATA ELEMENTS
   ========================================================================== */

.tf-content-grid {
    display: grid;
    grid-template-columns: 1fr 2.4fr;
    gap: 60px;
}

.tf-data-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
}

.tf-data-label {
    font-size: 10px;
    color: var(--accent-blue);
    letter-spacing: 2.5px;
    font-weight: 900;
    margin-bottom: 12px;
    display: block;
}

.tf-data-value {
    font-size: 14px;
    color: var(--text-data);
    line-height: 1.5;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.8s var(--v4-ease);
}

.tf-swiss-card:hover .tf-data-value {
    color: var(--text-active);
    transform: translateY(0);
    opacity: 1;
}

/* Delays for cascading entrance */
.tf-data-group div:nth-child(1) .tf-data-value { transition-delay: 0.1s; }
.tf-data-group div:nth-child(2) .tf-data-value { transition-delay: 0.2s; }
.tf-data-group div:nth-child(3) .tf-data-value { transition-delay: 0.3s; }

/* ==========================================================================
   6. BUTTONS: LASER SHIMMER
   ========================================================================== */

.tf-card-actions {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.btn-premium {
    height: 56px;
    padding: 0 35px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.4s var(--v4-ease);
}

.btn-premium.primary {
    background: var(--accent-blue);
    color: #fff;
    border: none;
}

/* Laser Shimmer Effect */
.btn-premium.primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
    transform: skewX(-25deg);
}

.btn-premium.primary:hover::after {
    left: 200%;
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-premium.primary svg {
    width: 18px;
    margin-left: 12px;
    transition: transform 0.3s var(--v4-ease);
}

.btn-premium.primary:hover svg {
    animation: arrow-pulse 1s infinite;
}

@keyframes arrow-pulse {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(6px); }
}

.btn-premium.secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--accent-blue);
    border: 1px solid var(--accent-blue);
    backdrop-filter: blur(10px);
}

.btn-premium.secondary:hover {
    background: var(--accent-blue);
    color: #ffffff;
}

/* ==========================================================================
   7. UTILITIES & STATUS
   ========================================================================== */

.tf-status-led {
    position: absolute; top: 35px; right: 40px;
    width: 8px; height: 8px; background: var(--accent-blue);
    border-radius: 50%; box-shadow: 0 0 15px var(--accent-blue);
    animation: led-glow 2s infinite;
}

@keyframes led-glow {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* ==========================================================================
   8. MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .tf-content-grid { grid-template-columns: 1fr; }
    .tf-card-media { height: 400px; }
}

@media (max-width: 768px) {
    .tf-swiss-card { padding: 25px; border-radius: 30px; }
    .tf-data-group { grid-template-columns: 1fr; gap: 20px; }
    .tf-card-actions { flex-direction: column; }
    .btn-premium { width: 100%; }
    .tf-status-led { top: 20px; right: 25px; }
}

/* ==========================================================================
   END OF SECTION STYLES
   ========================================================================== */




/* ==========================================================================
   CONTACT SECTION - PREMIUM VIVID INDUSTRIAL (Final v6.0)
   Features: Technical Underline Effect, Liquid Reveal, Responsive Grid
   ========================================================================== */

:root {
    /* Color Palette */
    --tf-dark: #07111f;         /* Deep technical blue/black */
    --tf-blue: #2962FF;         /* Electric Blue */
    --tf-cyan: #00D4FF;         /* Neon Cyan accent */
    --tf-grey: #636e72;         /* Professional cool grey */
    --tf-white: #ffffff;
    
    /* UI Elements */
    --tf-border-soft: rgba(0, 0, 0, 0.08);
    --tf-btn-gradient: linear-gradient(135deg, #2962FF, #1E40AF);
    --tf-line-gradient: linear-gradient(90deg, #2962FF, #00D4FF);
    
    /* Animation Physics */
    --tf-ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* Apple-style deceleration */
}

/* --- 1. SECTION WRAPPER --- */
.contact-slim {
    padding: 140px 0;
    background: var(--tf-white);
    color: var(--tf-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* --- 2. HEADER STYLING --- */
.contact-header {
    margin-bottom: 70px;
}

.contact-header h2 { 
    font-size: 56px; 
    font-weight: 800; 
    margin-bottom: 15px;
    color: var(--tf-dark);
    letter-spacing: -1.5px;
    line-height: 1;
}

.contact-header p { 
    font-size: 18px; 
    color: var(--tf-grey);
    max-width: 500px;
}

/* --- 3. FORM & INPUTS --- */
.slim-form { 
    display: flex; 
    flex-direction: column; 
    gap: 40px; 
    margin-bottom: 100px; 
}

.input-row { 
    display: flex; 
    gap: 50px; 
}

/* Wrapper for technical underline effect */
.input-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.slim-form input, 
.slim-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--tf-border-soft);
    padding: 18px 0;
    color: var(--tf-dark);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: all 0.4s var(--tf-ease-out);
}

.slim-form textarea {
    resize: none;
    min-height: 140px;
}

/* The Animated Vivid Line on Focus */
.input-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--tf-line-gradient);
    transform: translateX(-101%);
    transition: transform 0.6s var(--tf-ease-out);
}

.input-wrapper:focus-within::after {
    transform: translateX(0);
}

.slim-form input:focus, 
.slim-form textarea:focus {
    padding-left: 10px;
}

/* --- 4. PREMIUM SUBMIT BUTTON --- */
.slim-submit {
    align-self: flex-start;
    background: var(--tf-btn-gradient);
    color: var(--tf-white);
    border: none;
    padding: 20px 50px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.4s var(--tf-ease-out);
    box-shadow: 0 10px 25px rgba(41, 98, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.slim-submit i {
    transition: transform 0.3s var(--tf-ease-out);
}

.slim-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(41, 98, 255, 0.4);
    filter: brightness(1.1);
}

.slim-submit:hover i {
    transform: translateX(5px);
}

/* --- 5. FOOTER GRID --- */
.slim-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 60px; 
    border-top: 1px solid var(--tf-border-soft);
}

.footer-item span { 
    display: block; 
    font-size: 11px; 
    font-weight: 800;
    text-transform: uppercase; 
    color: var(--tf-blue);
    margin-bottom: 12px; 
    letter-spacing: 2px; 
}

.footer-item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--tf-dark);
}

.social-links a {
    text-decoration: none;
    color: var(--tf-dark);
    font-weight: 700;
    font-size: 14px;
    margin-right: 25px;
    transition: 0.3s;
    opacity: 0.6;
}

.social-links a:hover {
    color: var(--tf-blue);
    opacity: 1;
}

/* --- 6. LIQUID REVEAL ANIMATIONS (JS Triggered) --- */

.contact-header h2, 
.contact-header p,
.input-row .input-wrapper,
.slim-form > .input-wrapper,
.slim-submit,
.footer-item {
    opacity: 0;
    transform: translateY(40px) skewY(1deg);
    transition: all 1.2s var(--tf-ease-out);
    will-change: transform, opacity;
}

/* Active State Trigger */
.reveal-on-scroll.active-scroll .contact-header h2,
.reveal-on-scroll.active-scroll .contact-header p,
.reveal-on-scroll.active-scroll .input-row .input-wrapper,
.reveal-on-scroll.active-scroll .slim-form > .input-wrapper,
.reveal-on-scroll.active-scroll .slim-submit,
.reveal-on-scroll.active-scroll .footer-item {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
}

/* Staggered Delay Logic */
.reveal-on-scroll.active-scroll .contact-header h2 { transition-delay: 0.1s; }
.reveal-on-scroll.active-scroll .contact-header p  { transition-delay: 0.2s; }
.reveal-on-scroll.active-scroll .input-row .input-wrapper:nth-child(1) { transition-delay: 0.4s; }
.reveal-on-scroll.active-scroll .input-row .input-wrapper:nth-child(2) { transition-delay: 0.5s; }
.reveal-on-scroll.active-scroll .slim-form > .input-wrapper { transition-delay: 0.6s; }
.reveal-on-scroll.active-scroll .slim-submit     { transition-delay: 0.7s; }
.reveal-on-scroll.active-scroll .footer-item:nth-child(1) { transition-delay: 0.8s; }
.reveal-on-scroll.active-scroll .footer-item:nth-child(2) { transition-delay: 0.9s; }
.reveal-on-scroll.active-scroll .footer-item:nth-child(3) { transition-delay: 1.0s; }

/* --- 7. RESPONSIVE DESIGN --- */
@media (max-width: 991px) {
    .contact-header h2 { font-size: 42px; }
    .input-row { flex-direction: column; gap: 30px; }
}

@media (max-width: 768px) {
    .slim-footer { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .slim-submit { width: 100%; justify-content: center; }
    .social-links { display: flex; justify-content: center; }
    .contact-slim { padding: 80px 0; }
}

/* ==========================================================================
   END OF CONTACT STYLES
   ========================================================================== */
/* ==========================================================================
   LIGHT INDUSTRIAL FOOTER SYSTEM
   Theme: Professional White & Electric Blue
   Features: Industrial Accents, Steel Typography, Hover Physics
   ========================================================================== */

:root {
    /* Brand Colors */
    --tf-white: #ffffff;
    --tf-dark: #050505;
    --tf-blue: #2962FF;
    --tf-steel: #5A6C7F;
    --tf-muted: #8892b0;
    
    /* UI / Decorative */
    --tf-border-soft: rgba(0, 0, 0, 0.06);
    --tf-divider-grad: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.08) 50%, transparent);
    
    /* Animation Curve */
    --tf-ease-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ==========================================================================
   1. FOOTER LAYOUT
   ========================================================================== */

.tf-industrial-footer {
    padding: 100px 0 50px;
    background: var(--tf-white);
    border-top: 1px solid var(--tf-border-soft);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--tf-dark);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

/* ==========================================================================
   2. COLUMN HEADINGS & ACCENTS
   ========================================================================== */

.footer-column h4 {
    color: var(--tf-dark);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
}

/* Technical Blue Line under heading */
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 15px;
    height: 2px;
    background: var(--tf-blue);
}

/* ==========================================================================
   3. LINKS STYLING & SOCIALS
   ========================================================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--tf-steel);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s var(--tf-ease-smooth);
    display: inline-flex;
    align-items: center;
}

/* Link Hover: Blue Text & Shift */
.footer-links a:hover {
    color: var(--tf-blue);
    transform: translateX(6px);
}

/* Social Icons Styling */
.footer-links.social-list i {
    width: 22px;
    color: var(--tf-blue);
    margin-right: 12px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.footer-links.social-list a:hover i {
    transform: scale(1.2) rotate(-10deg);
}

/* ==========================================================================
   4. FOOTER BOTTOM & DIVIDER
   ========================================================================== */

.footer-divider {
    border: none;
    height: 1px;
    background: var(--tf-divider-grad);
    margin-bottom: 40px;
}

.mini-footer {
    text-align: center;
}

.mini-footer p {
    color: var(--tf-muted);
    font-size: 13px;
    letter-spacing: 0.3px;
}

.mini-footer p span {
    color: var(--tf-dark);
    font-weight: 700;
}

/* ==========================================================================
   5. RESPONSIVE ADAPTATION
   ========================================================================== */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   END OF LIGHT FOOTER STYLES
   ========================================================================== */

