
@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%);
}













/* ==========================================================================
   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%; /* Slightly tighter padding for pro look */
    z-index: 1000;         
    
    /* High-End Cyber Glassmorphism */
    background: rgba(5, 10, 21, 0.8); 
    backdrop-filter: blur(20px);        
    -webkit-backdrop-filter: blur(20px); 
    
    /* Industrial Edge Definition */
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);  
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s var(--tf-ease);
}

/* Subtle glowing line at the very top on hover or scroll */
header.container:hover {
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
}

.logo img {
    height: 38px;           
    width: auto;             
    display: block;
    filter: drop-shadow(0 0 8px rgba(41, 98, 255, 0.2));
}

header nav ul {
    list-style: none;       
    display: flex;          
    gap: 45px;               
    align-items: center;
}

/* Main Link Typography */
header nav ul li a {
    position: relative;      
    color: #94a3b8; /* Slate grey for inactive state */
    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(--tf-cyan, #00D4FF);
    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: #ffffff;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.3));
}

/* Primary Button - Industrial Solid Style */
header nav ul li.primary {
    background: linear-gradient(135deg, #2962FF, #0030b3); 
    padding: 12px 28px;
    border-radius: 4px; /* Structured industrial corners */
    border: none;
    transition: all 0.4s var(--tf-ease);
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(41, 98, 255, 0.3);
}

header nav ul li.primary a {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

header nav ul li.primary a::after {
    display: none; /* Remove underline from button text */
}

/* Hover state for primary button */
header nav ul li.primary:hover {
    transform: translateY(-2px);
    background: #00D4FF; /* Flash to Cyan on hover */
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

header nav ul li.primary:hover a {
    color: #050a15; /* Contrast color for text on Cyan */
}

/* Responsive Logic */
@media (max-width: 776px) {
    header.container {
        padding: 15px 5%;
    }
    header nav ul {
        display: none; /* Usually replaced by a burger menu on mobile */
    }
}

/* ==========================================================================
   HEADER NAVIGATION END
   ========================================================================== */










 /* ==========================================================================
   MENU HOVER INDICATOR START
   ========================================================================== */

/* Purpose: Creates the glowing animated dot that appears under menu links */
header nav ul li:not(.active) a::after {
    content: '';           
    position: absolute;
    bottom: -10px;           
    left: 50%;
    width: 5px;             
    height: 5px;            
    background: #007bff;   /* Your original blue color */
    border-radius: 50%;      
    transform: translateX(-50%) scale(0);
    transition: 0.3s;         
    box-shadow: 0 0 10px #007bff; 
}

/* Trigger dot animation when mouse hovers over link */
header nav ul li:not(.active) a:hover::after {
    transform: translateX(-50%) scale(1.5); 
}

/* ==========================================================================
   MENU HOVER INDICATOR END
   ========================================================================== */





/* ==========================================================================
   START MOBILE MENU & NAVIGATION STYLES 
   ========================================================================== */


/* /* ==========================================================================
   START MOBILE MENU & NAVIGATION STYLES (CYBER DARK + V4 LOGIC)
   ========================================================================== */

/* --- Menu Toggle (Burger) --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100; /* Logic: Always above drawer */
    position: relative;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff; 
    margin: 6px 0;
    /* Refined 0.3s timing from second block */
    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 */
    #nav-menu {
        position: fixed;
        top: 0;
        right: -100%; 
        width: 85%; /* Optimal width for mobile reach from second block */
        height: 100vh;
        
        /* Design: Kept Deep Cyber Glassmorphism */
        background: rgba(5, 10, 21, 0.98);
        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);
        
        /* Design: Neon Edge Glow */
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
        border-left: 1px solid rgba(0, 212, 255, 0.1);
    }

    #nav-menu.active {
        right: 0; 
    }

    #nav-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 30px; /* Logic: Thumb-friendly spacing */
        text-align: center; 
    }

    #nav-menu ul li a {
        font-size: 24px; /* Logic: Larger tap target */
        color: #94a3b8; 
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        transition: 0.3s ease;
    }

    /* Logic: Feedback on tap from second block */
    #nav-menu ul li a:active {
        color: #00D4FF;
        transform: scale(0.95);
        text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
    }
    
    #nav-menu ul li a:hover {
        color: #ffffff;
    }

    /* Primary CTA Button - Cyber Dark Design */
    #nav-menu ul li.primary {
        background: linear-gradient(135deg, #2962FF, #00D4FF);
        padding: 15px 45px;
        border-radius: 4px; 
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 10px 20px rgba(41, 98, 255, 0.3);
    }

    #nav-menu ul li.primary a {
        color: #ffffff;
        font-size: 18px;
        font-weight: 800;
    }
    
    /* Logic: Remove tap scale for the primary button container */
    #nav-menu ul li.primary:active {
        transform: scale(0.98);
    }

    /* Burger Icon Animation (Perfect X transformation) */
    .menu-toggle.open span {
        background: #00D4FF; /* Cyan highlight from Cyber design */
        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 
   ========================================================================== */



/* BASIC SETTINGS */
* { box-sizing: border-box; }


.pure-main-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
}

.pure-container {
    width: 100%;
    max-width: 1400px;
}

/* MAIN GRID (45% Image / 55% Text) */
.pure-flex-layout {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* LEFT COLUMN (Fixed/Sticky on scroll) */
.pure-sticky-visual {
    flex: 0 0 45%;
    position: sticky;
    top: 50px; /* Top offset when sticking */
}

.image-box {
    background: #1e293b;       /* Slightly lighter blue-gray for the box */
    border: 1px solid #334155; /* Subtle dark border */
    padding: 20px;
    border-radius: 4px;
}

.main-device-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.9);   /* Slightly dims images to match dark theme */
}

.caption {
    font-size: 13px;
    color: #94a3b8;            /* Dimmer text for caption */
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

/* RIGHT COLUMN (Scrollable) */
.pure-scroll-content {
    flex: 0 0 55%;
}

/* HEADERS */
.header-block { margin-bottom: 60px; }

.line-tag {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.line-tag::before {
    content: '';
    width: 40px;
    height: 2px;
    background: #3b82f6;       /* Vibrant blue accent */
    margin-right: 15px;
}

.line-tag span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
}

h1 {
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
    color: #ffffff;            /* Pure white for the main title */
}

h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #334155; /* Darker line under sections */
    padding-bottom: 10px;
    margin-top: 0;
    color: #f8fafc;
}

h3 {
    color: #60a5fa;            /* Brighter blue for sub-headers */
    font-size: 1.3rem;
    margin: 30px 0 10px 0;
}

/* TEXT BLOCKS */
.info-block {
    margin-bottom: 80px;
}

p {
    font-size: 1.1rem;
    color: #cbd5e1;            /* Soft gray-blue for readability */
    margin-bottom: 20px;
}

/* SPECIFICATION TABLE */
.tech-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.tech-table th {
    background: #1e293b;       /* Darker header for table */
    text-align: left;
    padding: 12px;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #94a3b8;
}

.tech-table td {
    padding: 15px 12px;
    border-bottom: 1px solid #1e293b; /* Subtle separator */
    font-size: 1rem;
    color: #cbd5e1;
}

.tech-table td:first-child {
    font-weight: 700;
    width: 40%;
    color: #f8fafc;            /* Brighter labels in table */
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 1024px) {
    .pure-flex-layout { flex-direction: column; }
    .pure-sticky-visual, .pure-scroll-content { flex: 0 0 100%; width: 100%; }
    .pure-sticky-visual { position: static; margin-bottom: 40px; }
    h1 { font-size: 40px; }
}



/* ==========================================================================
   LIGHT INDUSTRIAL FOOTER SYSTEM
   Theme: Professional White & Electric Blue
   ========================================================================== */

.tf-industrial-footer {
    padding: 100px 0 50px;
    background: #ffffff; /* Pure White Background */
    border-top: 1px solid rgba(0, 0, 0, 0.06); /* Subtle dark line */
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #050505;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

/* --- Column Headings --- */
.footer-column h4 {
    color: #050505; /* Solid Black for readability */
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
}

/* Technical Blue Dot under heading */
.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 15px;
    height: 2px;
    background: #2962FF; /* Electric Blue Accent */
}

/* --- Links Styling --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #5A6C7F; /* Professional Steel Grey */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

/* Link Hover: Blue Text & Shift */
.footer-links a:hover {
    color: #2962FF;
    transform: translateX(6px);
}

/* Social Icons Styling */
.footer-links.social-list i {
    width: 22px;
    color: #2962FF;
    margin-right: 12px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.footer-links.social-list a:hover i {
    transform: scale(1.2) rotate(-10deg);
}

/* --- Footer Bottom & Divider --- */
.footer-divider {
    border: none;
    height: 1px;
    /* Gradient: transparent -> light grey -> transparent */
    background: linear-gradient(to right, 
        transparent, 
        rgba(0, 0, 0, 0.08) 50%, 
        transparent
    );
    margin-bottom: 40px;
}

.mini-footer {
    text-align: center;
}

.mini-footer p {
    color: #8892b0;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.mini-footer p span {
    color: #050505;
    font-weight: 700;
}

/* --- Responsive Tablet Fixes --- */
@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;
    }
}
/* ==========================================================================
   LIGHT INDUSTRIAL FOOTER SYSTEM
   Theme: Professional White & Electric Blue
   ========================================================================== */



/* ==========================================================================
   START HERO SECTION - SWISS MINIMALIST STYLE
   ========================================================================== */

.hero-swiss {
    height: 100vh; /* Full screen height */
    background: #000212;
    color: #000000;
    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(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 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(0, 0, 0, 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(0, 0, 0, 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: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.hero-cta a:hover {
    padding-left: 20px; /* Slight push animation on hover */
    color: #000000;
}

/* 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(0, 0, 0, 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
   ========================================================================== */






/* ==========================================================================
   DARK INDUSTRIAL FOOTER SYSTEM
   ========================================================================== */

.tf-industrial-footer {
    padding: 100px 0 50px;
    background: #050a15; /* Matching section background */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

/* --- Column Headings --- */
.footer-column h4 {
    color: var(--tf-cyan); /* Neon Cyan accents */
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    position: relative;
}

/* --- Links Styling --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8; /* Cool Grey descriptions */
    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));
}

/* --- Footer Bottom & Divider --- */
.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, 
        transparent, 
        rgba(0, 212, 255, 0.2) 50%, 
        transparent
    );
    margin-bottom: 40px;
}

.mini-footer {
    text-align: center;
}

.mini-footer p {
    color: rgba(148, 163, 184, 0.5);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.mini-footer p span {
    color: #ffffff;
    font-weight: 600;
}

/* --- Responsive Tablet Fixes --- */
@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;
    }
}


/* ==========================================================================
   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
   ========================================================================== */





