/* * 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;
    overflow-y: auto !important;
    overflow-x: hidden; 

}


.wrapper {
     /*  background: linear-gradient(135deg, #b1bbf5 0%, #3b405a  50%, #364253 100%); */
   background: linear-gradient(135deg, #02040f 0%, #02040f  50%, #081221 100%);
}











/* ==========================================================================
   COLOR VARIABLES (DARK THEME SETTINGS)
   ========================================================================== */
:root {
    /* Brand & Background Colors */
    --nav-bg-dark: rgba(5, 10, 21, 0.8);
    --nav-border-cyan-low: rgba(0, 212, 255, 0.1);
    --nav-border-cyan-high: rgba(0, 212, 255, 0.3);
    --nav-logo-glow: rgba(41, 98, 255, 0.2);
    
    /* Text & Link Colors */
    --nav-link-slate: #94a3b8;
    --nav-link-light: #ffffff;
    --nav-accent-cyan: #00D4FF;
    --nav-accent-blue: #007bff;
    
    /* Primary Button Gradient & Shadows */
    --nav-btn-gradient: linear-gradient(135deg, #2962FF, #0030b3);
    --nav-btn-shadow: rgba(41, 98, 255, 0.3);
    --nav-btn-hover-glow: rgba(0, 212, 255, 0.5);
}

/* ==========================================================================
   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;         
    
    /* High-End Cyber Glassmorphism on Dark Background */
    background: var(--nav-bg-dark); 
    backdrop-filter: blur(20px);        
    -webkit-backdrop-filter: blur(20px); 
    
    /* Industrial Edge Definition */
    border-bottom: 1px solid var(--nav-border-cyan-low);  
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s var(--tf-ease);
}

/* Subtle glowing line interaction */
header.container:hover {
    border-bottom: 1px solid var(--nav-border-cyan-high);
}

.logo img {
    height: 38px;           
    width: auto;             
    display: block;
    filter: drop-shadow(0 0 8px var(--nav-logo-glow));
}

header nav ul {
    list-style: none;       
    display: flex;          
    gap: 45px;               
    align-items: center;
}

/* Main Link Typography */
header nav ul li a {
    position: relative;      
    color: var(--nav-link-slate);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;   
    transition: all 0.3s var(--tf-ease);
}

/* Underline Hover Effect (Cyber Style) */
header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--nav-accent-cyan);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
    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-light);
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
}

/* Primary Button - Industrial Solid Style */
header nav ul li.primary {
    background: var(--nav-btn-gradient); 
    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(--nav-btn-shadow);
}

header nav ul li.primary a {
    color: var(--nav-link-slate);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

header nav ul li.primary a::after {
    display: none; /* Disables standard underline */
}

/* Hover state for primary button */
header nav ul li.primary:hover {
    transform: translateY(-2px);
    background: var(--nav-accent-cyan); 
    box-shadow: 0 8px 25px var(--nav-btn-hover-glow);
}

header nav ul li.primary:hover a {
    color: var(--nav-link-light);
}

@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)
   ========================================================================== */

/**
 * Secondary indicator logic for non-active links
 */
header nav ul li:not(.active) a::after {
    content: '';           
    position: absolute;
    bottom: -10px;           
    left: 50%;
    width: 5px;             
    height: 5px;             
    background: var(--nav-accent-blue);   
    border-radius: 50%;      
    transform: translateX(-50%) scale(0);
    transition: 0.3s;         
    box-shadow: 0 0 10px var(--nav-accent-blue); 
}

header nav ul li:not(.active) a:hover::after {
    transform: translateX(-50%) scale(1.5); 
}

/* ==========================================================================
   HEADER NAVIGATION END
   ========================================================================== */

/* ==========================================================================
   COLOR VARIABLES (MOBILE THEME)
   ========================================================================== */
:root {
    /* Mobile Drawer Colors */
    --mobile-menu-bg: rgba(5, 10, 21, 0.98);
    --mobile-menu-border: rgba(0, 212, 255, 0.1);
    --mobile-burger-color: #ffffff;
    --mobile-burger-active: #00D4FF;
    
    /* Mobile Typography */
    --mobile-link-color: #94a3b8;
    --mobile-link-hover: #ffffff;
    --mobile-link-glow: rgba(0, 212, 255, 0.8);
    
    /* Mobile CTA Button */
    --mobile-cta-gradient: linear-gradient(135deg, #2962FF, #00D4FF);
    --mobile-cta-shadow: rgba(41, 98, 255, 0.3);
}

/* ==========================================================================
   START MOBILE MENU & NAVIGATION STYLES
   ========================================================================== */

/**
 * Burger Menu Toggle
 * Logic: Always sits above the side drawer.
 */
.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(--mobile-burger-color); 
    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
     * High-End Cyber Glassmorphism with deep blur.
     */
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 85%; /* Optimal width for mobile thumb reach */
        height: 100vh;
        
        background: var(--mobile-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 Glow Design */
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
        border-left: 1px solid var(--mobile-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 spacing */
        text-align: center; 
    }

    #nav-menu ul li a {
        font-size: 24px; 
        color: var(--mobile-link-color); 
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        transition: 0.3s ease;
    }

    /* Interactive feedback on mobile tap */
    #nav-menu ul li a:active {
        color: var(--mobile-burger-active);
        transform: scale(0.95);
        text-shadow: 0 0 15px var(--mobile-link-glow);
    }
    
    #nav-menu ul li a:hover {
        color: var(--mobile-link-hover);
    }

    /**
     * Primary CTA Button - Mobile Version
     */
    #nav-menu ul li.primary {
        background: var(--mobile-cta-gradient);
        padding: 15px 45px;
        border-radius: 4px; 
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 10px 20px var(--mobile-cta-shadow);
    }

    #nav-menu ul li.primary a {
        color: var(--mobile-link-hover);
        font-size: 18px;
        font-weight: 800;
    }
    
    #nav-menu ul li.primary:active {
        transform: scale(0.98);
    }

    /**
     * Burger Icon Animation (Perfect X Transformation)
     */
    .menu-toggle.open span {
        background: var(--mobile-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 DARK EDITION - THEME VARIABLES
   ========================================================================== */
:root {
    /* Brand & Background Palette */
    --v4-bg-dark: #02040f;
    --v4-accent: #007bff;
    --v4-overlay-gradient: rgba(2, 4, 15, 0.5);
    
    /* Typography Colors */
    --v4-text-main: #ffffff;
    --v4-text-dim: rgba(255, 255, 255, 0.7);
    
    /* Animation & Motion Config */
    --v4-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --v4-reveal-speed: 1.2s;
}

/* ==========================================================================
   START OF HERO INFO SECTION STYLES
   ========================================================================== */

/**
 * 1. CORE SECTION CONTAINER
 * Full-screen viewport height with centralized content placement.
 */
.mega-hero_d {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--v4-bg-dark);
}

/**
 * 2. VISUAL ENGINE (Background, Gradients, Effects)
 * Handles cinematic camera focus and vignette overlays.
 */
.mega-hero_d-visual-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mega-hero_d-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Cinematic Camera Focus Effect */
    filter: blur(20px) brightness(0.2);
    transform: scale(1.2);
    animation: mega-hero_d-cameraFocus 3s var(--v4-ease) forwards;
}

.mega-hero_d-side-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, 
        var(--v4-bg-dark) 0%, 
        var(--v4-overlay-gradient) 25%, 
        transparent 65%);
}

.mega-hero_d-vignette {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35vh; 
    z-index: 3;
    background: linear-gradient(to top, var(--v4-bg-dark), transparent);
}

/**
 * 3. CONTENT BOX & LAYOUT
 */
.mega-hero_d-content-box {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1600px;
}

.mega-hero_d-layout-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/**
 * 4. TYPOGRAPHY & TITLE ANIMATIONS
 */
.mega-hero_d-huge-title {
    font-size: clamp(50px, 8vw, 130px);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -3px;
    text-transform: uppercase;
    margin: 0;
    color: var(--v4-text-main);
    clip-path: inset(0 100% 0 0); /* Used for the scanning reveal effect */
    opacity: 0;
    animation: mega-hero_d-textScan 2s var(--v4-ease) forwards 0.8s;
}

.mega-hero_d-accent-bar {
    width: 0;
    height: 4px;
    background: var(--v4-accent);
    margin-top: 25px;
    animation: mega-hero_d-lineExtend 1.5s ease forwards 1.2s;
}

/**
 * 5. DATA PANELS & DETAILS
 */
.mega-hero_d-details {
    max-width: 480px;
}

.mega-hero_d-id-code {
    font-family: monospace;
    font-size: 22px;
    letter-spacing: 8px;
    color: var(--v4-accent);
    font-weight: bold;
}

.mega-hero_d-details h3 {
    font-size: 2.2rem;
    margin: 15px 0;
    font-weight: 700;
    color: var(--v4-text-main);
}

.mega-hero_d-details p {
    color: var(--v4-text-dim);
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Technical Specifications Row */
.mega-hero_d-specs-row {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.mega-hero_d-spec-label { 
    display: block; 
    font-size: 10px; 
    color: var(--v4-accent); 
    font-weight: 800; 
    letter-spacing: 1px;
}

.mega-hero_d-spec-value { 
    font-weight: bold; 
    font-size: 16px; 
    font-family: monospace; 
    color: var(--v4-text-main);
}

/* Call to Action (CTA) Link */
.mega-hero_d-action-link {
    display: inline-block;
    color: var(--v4-text-main);
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 2px;
    border-bottom: 2px solid var(--v4-accent);
    padding-bottom: 5px;
    transition: 0.3s ease;
}

.mega-hero_d-action-link:hover {
    color: var(--v4-accent);
    padding-left: 10px;
}

/**
 * 6. AUTOMATIC SEQUENTIAL REVEAL LOGIC
 * Elements fade in and slide up in a timed sequence.
 */
.reveal-node {
    opacity: 0;
    transform: translateY(30px);
    animation: mega-hero_d-itemUp var(--v4-reveal-speed) var(--v4-ease) forwards;
}

/* Reveal Delays for Fluid Sequential Motion */
.mega-hero_d-details .reveal-node:nth-child(1) { animation-delay: 1.0s; } /* Code */
.mega-hero_d-details .reveal-node:nth-child(2) { animation-delay: 1.2s; } /* H3 */
.mega-hero_d-details .reveal-node:nth-child(3) { animation-delay: 1.4s; } /* P */
.mega-hero_d-details .reveal-node:nth-child(4) { animation-delay: 1.6s; } /* Specs Row */
.mega-hero_d-details .reveal-node:nth-child(5) { animation-delay: 1.8s; } /* Action Link */

/**
 * 7. ANIMATION KEYFRAMES
 */
@keyframes mega-hero_d-cameraFocus {
    to { filter: blur(0px) brightness(0.6); transform: scale(1); }
}

@keyframes mega-hero_d-textScan {
    to { clip-path: inset(0 0 0 0); opacity: 1; }
}

@keyframes mega-hero_d-lineExtend {
    to { width: 100px; }
}

@keyframes mega-hero_d-itemUp {
    to { opacity: 1; transform: translateY(0); }
}

/**
 * 8. RESPONSIVE ADAPTATION (TABLET & MOBILE)
 * Adjusts layout to vertical stack for smaller screens.
 */
@media (max-width: 992px) {
    .mega-hero_d { 
        height: auto; 
        min-height: 100vh; 
        padding: 100px 0 60px; 
    }
    .mega-hero_d-layout-grid { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 50px; 
    }
    .mega-hero_d-huge-title { 
        font-size: 50px !important; 
    }
}

/* ==========================================================================
   END OF HERO SECTION STYLES
   ========================================================================== */

   /* ==========================================================================
   MISSION SECTION - THEME VARIABLES (DARK EDITION)
   ========================================================================== */
:root {
    /* Brand & Cyber UI Colors */
    --ms-d-text: #ffffff;
    --ms-d-muted: #94a3b8;
    --ms-d-accent: #00D4FF;
    --ms-d-divider: rgba(255, 255, 255, 0.08);
    
    /* Animation & Motion Physics */
    --ms-d-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ms-d-reveal-duration: 1.4s;
    --ms-d-stat-duration: 1.2s;
}

/* ==========================================================================
   START OF MISSION SECTION STYLES
   ========================================================================== */

/**
 * 1. CORE SECTION CONTAINER
 * Features an ultra-wide layout with massive breathing room.
 */
.mission-section {
    position: relative;
    padding: 260px 10%; 
    background-color: transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ms-d-text);
    overflow: hidden;
    
    /* Scroll-Reveal Initial State */
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--ms-d-reveal-duration) var(--ms-d-ease);
}

.mission-section.appear {
    opacity: 1;
    transform: translateY(0);
}

/**
 * 2. GRID STRUCTURE
 * Logic: 1.8fr ensures the mission text remains the dominant visual element.
 */
.mission-split-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1px 1fr; 
    gap: 160px; /* Maximum breathing room for high-end feel */
    align-items: start;
}

/**
 * 3. LEFT SIDE: WIDER 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-d-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;
}

.mission-left-content .gray-text {
    color: var(--ms-d-muted);
    opacity: 0.35;
}

/**
 * 4. MEDIA WRAPPER
 * Sophisticated image frame with hover-ready scale logic.
 */
.mission-image-wrap {
    /* Adjustable Visual 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.4);
    margin-top: 60px; 
}

.mission-image-wrap img {
    width: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    transition: transform 3s var(--ms-d-ease);
}

.mission-section.appear .mission-image-wrap img {
    transform: scale(1);
}

/**
 * 5. CENTER DIVIDER
 * Animated vertical line that expands upon reveal.
 */
.vertical-divider {
    background: var(--ms-d-divider);
    height: 0%;
    transition: height 2s var(--ms-d-ease) 0.6s;
}

.mission-section.appear .vertical-divider {
    height: 100%;
}

/**
 * 6. RIGHT SIDE: SPACED STATS
 * Sequential numerical data points with staggered entry.
 */
.mission-data-column {
    display: flex;
    flex-direction: column;
    gap: 140px; 
    padding-top: 180px; /* Offset for a more organic, asymmetrical feel */
}

.stat-block {
    opacity: 0;
    transform: translateX(40px);
    transition: all var(--ms-d-stat-duration) var(--ms-d-ease);
}

.mission-section.appear .stat-block {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered Delay Logic for Stats */
.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-d-accent);
    margin-left: 10px;
}

.stat-block .stat-desc {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 5px; 
    color: var(--ms-d-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 - DARK INFINITE CAROUSEL
   Theme: Midnight Obsidian & Electric Cyan
   Focus: Cyberpunk Aesthetics & Neon Glow
   ========================================================================== */

:root {
    /* Brand & Deep Space Palette */
    --bg-deep: #050a15;         /* Dark background */
    --card-bg: #0d121d;         /* Darker card background */
    --accent-blue: #2962FF;     /* Primary corporate blue */
    --accent-cyan: #00D4FF;     /* Electric Neon highlight */
    
    /* Typography Colors */
    --text-white: #ffffff;
    --text-slate: #94a3b8;      /* Slate grey for muted text */
    
    /* Geometry & Motion */
    --card-w: 300px;
    --gap: 200px;
    --transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

/* ==========================================================================
   1. SECTION REVEAL & VIEWPORT
   ========================================================================== */

.infinite-carousel {
    margin-top: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: transparent;
    overflow: hidden;
    
    /* Scroll Reveal Initial State */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s var(--transition), transform 1.2s var(--transition);
}

.infinite-carousel.active-scroll {
    opacity: 1;
    transform: translateY(0);
}

.carousel-viewport {
    width: 1300px;
    height: 650px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cards-track {
    display: flex;
    gap: var(--gap);
    align-items: center;
    justify-content: flex-start;
    width: 9000px; 
    transform: translate3d(0, 0, 0); /* Force GPU acceleration */
    will-change: transform;
    transition: transform var(--transition);
}

/* ==========================================================================
   2. SERVICE CARD - INACTIVE STATE
   ========================================================================== */

.service-card {
    flex: 0 0 var(--card-w);
    width: var(--card-w);
    height: 480px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05); /* Cyberpunk grid border */
    border-radius: 24px;
    padding: 35px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    
    /* Visual focus logic: faded when not in focus */
    opacity: 0.3; 
    transform: scale(0.85);
    transition: all var(--transition);
}

/* ==========================================================================
   3. SERVICE CARD - ACTIVE STATE (NEON HIGHLIGHT)
   ========================================================================== */

.service-card.active {
    background: transparent;
    border-color: var(--accent-cyan);
    color: var(--text-white);
    opacity: 1;
    transform: scale(1.15);
    z-index: 10;
    
    /* Signature Cyan Glow */
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.15), 
                inset 0 0 20px rgba(0, 212, 255, 0.05);
}

/* ==========================================================================
   4. IMAGE & ICON STYLING
   ========================================================================== */

.info--image { 
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.info--image img { 
    max-width: 100%; 
    max-height: 100%; 
    object-fit: contain;
    transition: transform 0.6s var(--transition);
    border-radius: 12px;
    /* Soft Neon Shadow */
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.2));
}

/* Hover-like animation when card becomes active */
.service-card.active .info--image img { 
    transform: scale(1.1) translateY(-10px);
    filter: drop-shadow(0 15px 25px rgba(0, 212, 255, 0.4));
}

/* ==========================================================================
   5. TYPOGRAPHY
   ========================================================================== */

.service-card h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
    margin: 0;
}

.service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-slate); 
    margin: 15px 0;
    transition: color 0.5s ease;
}

.service-card.active p {
    color: var(--text-white);
}

/* ==========================================================================
   6. CONTROLS (ARROWS)
   ========================================================================== */

.carousel-controls { 
    margin-top: 40px; 
    display: flex; 
    gap: 25px; 
}

.nav-arrow { 
    width: 60px; 
    height: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%; 
    cursor: pointer;
    display: flex; 
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    border-color: var(--accent-cyan);
    background: var(--accent-cyan);
    color: var(--bg-deep);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

/* ==========================================================================
   7. INTERACTION LOGIC (CLICK SECURITY)
   ========================================================================== */

.image-link {
    display: block;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Disable click for side cards */
    cursor: default;
}

.service-card.active .image-link {
    pointer-events: auto; /* Enable click only for focused card */
    cursor: pointer;
}

/* ==========================================================================
   8. RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {
    :root { 
        --card-w: 280px; 
        --gap: 30px; 
    }
    
    .carousel-viewport { 
        height: 580px; 
        width: 100%;
    }

    .service-card { 
        transform: scale(0.8); 
        opacity: 0.2;
    }
    
    .service-card.active { 
        transform: scale(1.05); 
        opacity: 1;
    }
}


/* ==========================================================================
   INDUSTRIAL DESIGN SYSTEM - DARK MODE
   Theme: Midnight Obsidian & Electric Blue
   Focus: Centered Features & Neon Interactions
   ========================================================================== */

:root {
    /* Deep Dark Palette */
    --bg-page: #0a0a0a;             
    --bg-card: #141414;             
    --border-soft: #222222;         
    --border-hover: #333333;        
    
    /* Typography & Accents */
    --text-main: #ffffff;           
    --text-muted: #8e8e93;          
    --accent-blue: #0071ff;         
    --accent-neon: #00D4FF;         
    
    /* Geometry */
    --radius-island: 42px;          
    --radius-inner: 24px;           
    
    /* Animation Curves (Premium Swiss Motion) */
    --swiss-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --expo-ease: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ==========================================================================
   1. GLOBAL RESET & BASE
   ========================================================================== */

body {
    background-color: var(--bg-page);
    color: var(--text-main);
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* ==========================================================================
   2. SHARED REVEAL SYSTEM (Scroll-Triggered)
   ========================================================================== */

.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);
}

/* ==========================================================================
   3. FEATURES ROW (Centered Icons & Text)
   ========================================================================== */

.features-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    padding: 100px 0;
    will-change: transform, opacity;
}

/**
 * Logic: Individual feature items with sequential entrance.
 */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;   /* Centers icon and text */
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    
    /* Reveal Initial 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);
}

/* Automatic Sequential Cascade Delays */
.feature-item:nth-child(1) { transition-delay: 0.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; }

/* ==========================================================================
   4. ICON & GRAPHICS STYLING
   ========================================================================== */

.icon-circle {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 212, 255, 0.3); 
    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: color 0.4s ease, transform 0.4s var(--expo-ease);
}

/* Interaction: Lift & Glow */
.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);
}

/* ==========================================================================
   5. 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: opacity 0.4s ease, color 0.4s ease;
}

.feature-item:hover p {
    opacity: 1;
    color: #ffffff;
}

/* ==========================================================================
   6. MAXIMIZED RESPONSIVITY
   ========================================================================== */

@media (max-width: 1024px) {
    .features-row { gap: 60px; }
}

@media (max-width: 768px) {
    .features-row { 
        flex-direction: column; 
        align-items: center; 
    }
    .tf-swiss-card { 
        border-radius: 32px; 
        padding: 25px; 
    }
}

/* Accessibility: Support for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll,
    .feature-item { 
        transition: none !important; 
        opacity: 1 !important; 
        transform: none !important; 
    }
}

/* ==========================================================================
   END OF HERO SECTION 2 STYLES
   ========================================================================== */


   /* ==========================================================================
    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: #ffffff;
   
}

/* --- 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;
    gap: 15px;
    color:  #0071ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 35px;
    border: 1px solid #0071ff;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-v2-btn:hover {
    background: #0071ff;
    color:  #ffffff;
    transform: translateX(10px); /* Moves right slightly on hover */
    box-shadow: 0 20px 40px rgba(0, 100, 100, 0.4);
}



   /* ==========================================================================
    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
   ========================================================================== */










@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;800&display=swap');
/* ==========================================================================
   INDUSTRIAL ISLANDS - DARK MODE SYSTEM
   Theme: Obsidian & Mercury (Premium Luxe)
   Features: Magnetic Motion, Physics-based Hover, Liquid Chrome
   ========================================================================== */

/* ==========================================================================
   INDUSTRIAL ISLANDS SECTION - DARK EDITION
   Theme: Deep Dark Industrial / Cyber Tech
   Features: Magnetic Motion, Liquid Chrome, Laser Shimmer
   ========================================================================== */

:root {
    /* Background & Surface */
    --bg-page: #050505;
    --bg-card: #0a0c10;
    
    /* Accents & Auras */
    --accent-blue: #2962FF;
    --blue-aura: rgba(41, 98, 255, 0.2);
    --border-soft: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(41, 98, 255, 0.5);
    
    /* Typography & Gradients */
    --title-gradient: linear-gradient(180deg, #ffffff 0%, #888888 50%, #ffffff 100%);
    --text-muted: #888;
    --text-light: #ffffff;
    
    /* 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 on Scroll */
.tf-swiss-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(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(255, 255, 255, 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-muted);
    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-light);
    transform: translateY(0);
    opacity: 1;
}

/* Staggered Delay Logic */
.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 Layer */
.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 var(--v4-ease);
}

.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: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-premium.secondary:hover {
    background: #fff;
    color: #000;
}

/* ==========================================================================
   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 DARK INFO SECTION STYLES
   ========================================================================== */


/* ==========================================================================
   CONTACT SECTION - PREMIUM VIVID INDUSTRIAL (Final v6.0)
   Features: Glassmorphism Ready, Liquid Reveal, Technical Underline
   ========================================================================== */

:root {
    /* Brand Colors */
    --tf-white: #ffffff;
    --tf-blue: #2962FF;
    --tf-cyan: #00D4FF;
    --tf-grey: #a0b5bd;
    
    /* UI / Decorative */
    --tf-border-soft: rgba(255, 255, 255, 0.274);
    --tf-btn-gradient: linear-gradient(135deg, #2962FF, #1E40AF);
    --tf-accent-gradient: linear-gradient(90deg, #2962FF, #00D4FF);
    
    /* Animation Curve */
    --tf-ease-out: cubic-bezier(0.16, 1, 0.3, 1); /* Apple-style deceleration */
}

/* --- 1. SECTION WRAPPER --- */
.contact-slim {
    padding: 140px 0;
    background: transparent;
    color: var(--tf-white);
    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-white);
    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-white);
    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-accent-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: #ffffff;
    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);
    margin-left: 10px;
}

.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-white);
}

.social-links a {
    text-decoration: none;
    color: var(--tf-white);
    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 (Scroll 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);
}

/* Cascade Delays */
.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
   ========================================================================== */




/* ==========================================================================
   DARK INDUSTRIAL FOOTER SYSTEM
   Theme: Deep Technical Blue & Neon Accents
   Features: Grid System, Hover Glow, Gradient Divider
   ========================================================================== */

:root {
    /* Brand Palette */
    --tf-footer-bg: #050a15;    /* Matching section background */
    --tf-blue: #2962FF;         /* Electric Blue */
    --tf-cyan: #00D4FF;         /* Neon Cyan accents */
    --tf-text-grey: #94a3b8;    /* Cool Grey descriptions */
    --tf-text-muted: rgba(148, 163, 184, 0.5);
    
    /* UI Elements */
    --tf-border-line: rgba(255, 255, 255, 0.05);
    --tf-divider-grad: linear-gradient(to right, transparent, rgba(0, 212, 255, 0.2) 50%, transparent);
    
    /* Animation Curve */
    --tf-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   1. FOOTER LAYOUT
   ========================================================================== */

.tf-industrial-footer {
    padding: 100px 0 50px;
    background: var(--tf-footer-bg);
    border-top: 1px solid var(--tf-border-line);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

/* ==========================================================================
   2. COLUMN HEADINGS & TYPOGRAPHY
   ========================================================================== */

.footer-column h4 {
    color: var(--tf-cyan);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    position: relative;
}

/* ==========================================================================
   3. LINKS STYLING & INTERACTION
   ========================================================================== */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--tf-text-grey);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.4s var(--tf-ease);
    display: inline-flex;
    align-items: center;
}

/* Link Hover Effect: Slide and Glow */
.footer-links a span {
    position: relative;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links.social-list i {
    width: 20px;
    color: var(--tf-blue);
    margin-right: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.footer-links.social-list a:hover i {
    color: var(--tf-cyan);
    filter: drop-shadow(0 0 5px var(--tf-cyan));
}

/* ==========================================================================
   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-text-muted);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.mini-footer p span {
    color: #ffffff;
    font-weight: 600;
}

/* ==========================================================================
   5. RESPONSIVE ADAPTATION
   ========================================================================== */

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
        text-align: center;
    }

    .footer-links a:hover {
        transform: translateY(-3px); /* Up instead of right on mobile */
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .tf-industrial-footer {
        padding: 60px 0 30px;
    }
}

/* ==========================================================================
   END OF FOOTER STYLES
   ========================================================================== */

/* ==========================================================================
   START HERO SECTION - SWISS MINIMALIST STYLE
   ========================================================================== */

.hero-swiss {
    height: 100vh; /* Full screen height */
    background: #000212;
    color: #fff;
    padding: 60px 8%;
    display: flex;
    flex-direction: column;
}

.hero-grid {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Spreads top, main, and bottom sections */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
}

/* Top row: Meta information */
.hero-top {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
}

/* Main typography center piece */
.hero-main h1 {
    font-size: clamp(60px, 12vw, 150px); /* Massive fluid heading */
    font-weight: 700;
    line-height: 0.85; /* Tight line height for impact */
    text-transform: uppercase;
    letter-spacing: -4px; /* Tight letter spacing typical of Swiss design */
    margin: 40px 0;
}

.hero-main p {
    font-size: clamp(16px, 1.5vw, 20px);
    max-width: 450px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
}

/* Bottom row: Call to action and meta details */
.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* CTA Link with slide effect */
.hero-cta a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.hero-cta a:hover {
    padding-left: 20px; /* Slight push animation on hover */
    color: #4A90E2;
}

/* Services list aligned to the right */
.hero-services {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* --- RESPONSIVE LAYOUT --- */
@media (max-width: 768px) {
    .hero-bottom { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 40px; 
    }
    .hero-services { 
        text-align: left; 
    }
    .hero-main h1 { 
        letter-spacing: -2px; /* Slightly more space for smaller screens */
    }
}

/* ==========================================================================
   END HERO SECTION - SWISS MINIMALIST STYLE
   ========================================================================== */





