  /* RESET & VARIABLES */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        :root {
            --primary: #0B2545;
            --secondary: #6B7280;
            --accent: #F4B400;
            --background: #F8FAFC;
            --text: #111827;
            --white: #ffffff;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background-color: var(--background);
            line-height: 1.6;
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            color: var(--primary);
            font-weight: 600;
            line-height: 1.2;
        }

        /* UTILITIES */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 32px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .btn-primary {
            background-color: var(--accent);
            color: var(--primary);
        }
        
        .btn-primary:hover {
            background-color: #d9a000;
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 2px solid var(--white);
            color: var(--white);
            margin-left: 15px;
        }

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









<!-- header start -->

        

/* header  start */

   /* --- HEADER SECTION --- */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        
        .logo span { color: var(--accent); }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--primary); }
        .nav-links a.active { color: var(--primary); font-weight: 600; }

        .mobile-menu-btn { display: none; font-size: 24px; cursor: pointer; }

        /* --- HERO SECTION --- */
/* --- TOP BAR (Dark Blue) --- */
.top-bar {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-info a:hover { color: var(--accent); }
.divider { margin: 0 10px; opacity: 0.3; }
.social-mini a { color: rgba(255, 255, 255, 0.8); text-decoration: none; margin-left: 15px; font-size: 12px; }








/* --- MAIN HEADER (Sticky White) --- */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky; /* Modern sticky positioning */
    top: 0;
    z-index: 1000;
    height: 80px;
    /* display: flex; */
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Logo */
.brand-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.brand-logo span { color: var(--accent); }

/* Desktop Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0; padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

/* Gold Underline Effect on Hover */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s;
}

.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

/* Buttons & Actions */
.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* --- HAMBURGER ICON (CSS Only Animation) --- */
.hamburger {
    display: none; /* Hidden on Desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Animation classes (added via JS) */
.hamburger.active .bar:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* --- MOBILE DRAWER (Slide In) --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -280px; /* Hidden initially */
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1001;
    padding: 25px;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.open { right: 0; }

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.close-btn {
    font-size: 30px;
    cursor: pointer;
    color: var(--primary);
    line-height: 0.5;
}

.mobile-links {
    list-style: none;
    padding: 0;
}

.mobile-links li { margin-bottom: 20px; }

.mobile-links a {
    text-decoration: none;
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    display: block;
}

.drawer-footer {
    margin-top: auto; /* Push to bottom */
}

/* Darken Background Overlay */
.menu-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(2px);
}

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

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 992px) {
    .desktop-only { display: none; } /* Hide desktop menu */
    .hamburger { display: flex; } /* Show hamburger */
    .top-bar { display: none; } /* Hide top bar on mobile to save space */
    
    .main-header { height: 70px; }
}



/* header ends  */


 

/* footer */
/* --- FOOTER SECTION --- */
.site-footer {
    background-color: #061a33; /* Slightly darker than --primary */
    color: #cbd5e1; /* Light Grey text */
    padding-top: 0;
    position: relative;
    font-family: 'Inter', sans-serif;
}

/* Gold Top Border */
.footer-border {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
}

.footer-grid {
    display: grid;
    /* 4 Columns layout */
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 40px;
    padding: 80px 0 60px 0;
}

/* Typography */
.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo span { color: var(--accent); }

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-heading {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

/* Links Styling */
.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li { margin-bottom: 12px; }

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Hover Effect: Slide right & turn Gold */
.footer-nav a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.social-links a:hover {
    background-color: var(--accent);
    color: var(--primary);
}

.social-links svg { width: 18px; height: 18px; }

/* Contact Column */
.contact-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.icon-small {
    font-size: 18px;
    color: var(--accent);
    margin-top: 2px; /* Align with first line of text */
}

.contact-row p { margin: 0; font-size: 14px; }
.contact-row a { color: #cbd5e1; text-decoration: none; transition: color 0.3s; }
.contact-row a:hover { color: var(--accent); }
.mono-font { font-family: 'Roboto Mono', monospace; }

/* Map Styling */
.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    transition: border-color 0.3s;
}

.map-wrapper:hover {
    border-color: var(--accent);
}

/* Grayscale Map Effect - Professional Look */
.map-wrapper iframe {
    filter: grayscale(100%) invert(90%) contrast(85%); /* Makes map dark/grey */
    transition: filter 0.5s ease;
}

/* Reveal Color on Hover */
.map-wrapper:hover iframe {
    filter: grayscale(0%) invert(0%);
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #94a3b8;
}

.legal-links a {
    color: #94a3b8;
    text-decoration: none;
}

.legal-links a:hover { color: var(--accent); }
.dot { margin: 0 10px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 2 Columns */
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* 1 Column */
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}












        /* --- HEADER SECTION --- */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        
        .logo span { color: var(--accent); }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.2s;
        }

        .nav-links a:hover { color: var(--primary); }
        .nav-links a.active { color: var(--primary); font-weight: 600; }

        .mobile-menu-btn { display: none; font-size: 24px; cursor: pointer; }

        /* --- HERO SECTION --- */



        /* --- MODERN HERO SECTION --- */


/* --- MODERN HERO SECTION --- */
.hero-modern {
    position: relative;
    background-color: var(--primary); /* Deep Navy Base */
    padding: 60px 0 50px 0; /* Top padding accounts for fixed header */
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Technical Blueprint Grid Pattern */
.hero-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Creates a subtle grid line effect */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px; /* Size of the grid squares */
    z-index: 1;
    pointer-events: none;
}

/* Optional: Radial gradient to make center brighter */
.hero-modern::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; height: 80%;
    background: radial-gradient(circle, rgba(11, 37, 69, 0.8) 0%, rgba(11, 37, 69, 1) 100%);
    z-index: 2;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Text takes slightly more space */
    gap: 60px;
    position: relative;
    z-index: 3; /* Above background */
    align-items: center;
}

/* --- LEFT COLUMN: TEXT --- */
.badge-pill {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    font-family: 'Roboto Mono', monospace;
}

.badge-pill .dot {
    width: 8px; height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 10px var(--accent); /* Glowing dot */
}

.hero-text h1 {
    font-size: 58px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 25px;
}

.highlight-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--white); /* Outline text effect */
    position: relative;
}

/* Fill the outline text with gold on hover (optional interaction) */
.hero-text:hover .highlight-text {
    color: var(--accent); /* Transitions to solid gold */
    -webkit-text-stroke: 0px;
    transition: color 0.5s ease;
}

.hero-desc {
    font-size: 18px;
    color: #cbd5e1; /* Light bluish-grey */
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

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

/* Ghost Button (Transparent with border) */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-ghost:hover {
    color: var(--accent);
}

.btn-ghost .arrow {
    margin-left: 10px;
    transition: transform 0.3s;
}

.btn-ghost:hover .arrow {
    transform: translateX(5px);
}

/* Stats Row */
.hero-stats {
    display: none;
    /* display: flex; CHANGED from display: none */
    align-items: center;
    background: rgba(0, 0, 0, 0.2); /* Darker box behind stats */
    padding: 20px 30px;
    border-radius: 8px;
    width: fit-content;
    border-left: 4px solid var(--accent);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: var(--white);
}

.stat-label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 25px;
}

/* --- RIGHT COLUMN: VISUAL --- */
.image-container {
    position: relative;
    width: 100%; /* ADDED for responsiveness */
}

.hero-visual { /* ADDED this class to match HTML */
    width: 100%;
}

.floating-img {
    width: 100%; /* CHANGED from comment to actual property */
    max-width: 100%; /* ADDED for better responsiveness */
    height: auto; /* ADDED to maintain aspect ratio */
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(244, 180, 0, 0.1); /* Gold shadow offset */
    /* animation: float-anim 6s ease-in-out infinite; */
}

/* Floating Animation Keyframes */
@keyframes float-anim {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); } /* Moves up */
    100% { transform: translateY(0px); }
}

/* Floating Badge on Image */
.float-card {
    position: absolute;
    top: 0px;
    right: -30px;
    background-color: var(--white);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    animation: float-anim 6s ease-in-out infinite;
    animation-delay: 1s; /* Slight delay so it moves differently than the main image */
    max-width: 200px; /* ADDED for mobile */
}

.icon-check {
    background-color: #10B981; /* Success Green */
    color: white;
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
}

.float-card strong {
    display: block;
    color: var(--primary);
    line-height: 1.2;
}

.float-card .small {
    font-size: 12px;
    color: var(--secondary);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr; /* Stack vertically */
        text-align: center;
        gap: 50px;
    }

    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-stats {
        margin: 0 auto; /* Center stats */
    }

    .float-card {
        right: 0; /* CHANGED from left: 0 */
        left: auto; /* Ensure it doesn't conflict with right */
        top: -20px; /* Adjusted position */
    }
}

@media (max-width: 768px) {
    .hero-modern {
        /* padding: 120px 0 60px 0; */
       padding-bottom: 0;
        min-height: auto; /* CHANGED from 90vh */
        
    }

    .hero-wrapper {
        display: flex;
        flex-direction: column-reverse; /* This puts image first */
        gap: 40px;
        
         /* Reduced gap */
    }

    .hero-text h1 {
        font-size: 36px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn, .btn-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px; /* Slightly smaller padding */
    }

    .hero-desc {
        font-size: 16px;
        padding: 0 15px;
    }

    .hero-stats {
        flex-wrap: wrap; /* ADDED for very small screens */
        justify-content: center;
        padding: 15px;
        max-width: 90%;
    }

    .stat-box {
        flex: 1;
        min-width: 100px;
        text-align: center;
    }

    .stat-divider {
        margin: 0 15px;
        height: 20px;
    }

    .float-card {
        position: relative; /* CHANGED from absolute on very small screens */
        right: auto;
        top: -30px;
        margin: 0 auto;
        max-width: 250px;
        animation: none; /* Remove animation on mobile for performance */
    }

    .floating-img {
        border-radius: 15px;
        box-shadow: 10px 10px 0px rgba(244, 180, 0, 0.1); /* Smaller shadow */
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .badge-pill {
        font-size: 12px;
        padding: 5px 12px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-divider {
        display: none; /* Hide dividers on very small screens */
    }

    .hero-actions {
        max-width: 100%;
    }
}





















/* products */
/* --- PRODUCTS SECTION (Dark Theme) --- */
.products-section {
    padding: 100px 0;
    background-color: var(--primary); /* Deep Navy Background */
    color: var(--white);
}

/* Adjust header for dark background */
.section-header.light-theme h2 {
    color: var(--white);
}

.section-header.light-theme .section-tag {
    color: var(--accent); /* Gold tag looks great on Navy */
}

/* Grid Layout */
.product-grid {
    display: grid;
    /* Responsive Grid: Cards will be at least 260px wide, filling space */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Product Card Styling */
.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px); /* Subtle Lift */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Image Area */
.image-wrapper {
    /* height: 220px; */
    width: 100%;
    background-color: #f1f5f9; /* Light grey placeholder bg */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px; /* Padding ensures the product doesn't touch edges */
}

.image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the whole part is visible */
    transition: transform 0.5s ease;
}

/* Zoom effect on image hover */
.product-card:hover .image-wrapper img {
    transform: scale(1.05);
}

/* Card Text Content */
.card-content {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between; /* Pushes arrow to the right */
    align-items: center;
}

.card-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary); /* Navy text on white card */
    margin: 0;
}

.icon-arrow {
    font-size: 24px;
    color: var(--secondary);
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover Interaction for Text/Arrow */
.product-card:hover .icon-arrow {
    color: var(--accent); /* Arrow turns Gold */
    transform: translateX(5px); /* Arrow moves right */
}

.product-card:hover h4 {
    color: #000; /* Text gets slightly darker/sharper */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .product-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        gap: 20px;
    }
    
    .image-wrapper {
        /* height: 200px; */
    }
}







/* about us */
/* --- ABOUT SECTION --- */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    overflow: hidden; /* Prevents decorative boxes from causing scrollbars */
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split screen 50/50 */
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

/* --- VISUALS (Left Side) --- */
.about-visuals {
    position: relative;
    padding-left: 20px; /* Space for the outline box */
}

.main-image-frame {
    position: relative;
    z-index: 2;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

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

/* The "Blueprint" Outline behind the image */
.outline-box {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    z-index: 1; /* Behind the image */
    border-radius: 4px;
}

/* Floating Badge Styling */
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background-color: var(--primary);
    color: var(--white);
    padding: 25px 35px;
    z-index: 3; /* On top of everything */
    box-shadow: 0 10px 20px rgba(11, 37, 69, 0.3);
    text-align: center;
    border-bottom: 4px solid var(--accent); /* Pop of Gold */
}

.experience-badge .years {
    display: block;
    font-family: 'Roboto Mono', monospace;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent); /* Gold Number */
}

.experience-badge .label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* --- CONTENT (Right Side) --- */
.align-left {
    text-align: left;
    margin-bottom: 30px;
}

.separator-left {
    height: 4px;
    width: 60px;
    background-color: var(--accent);
    margin-top: 15px;
    border-radius: 2px;
}

.lead-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.check-icon {
    color: var(--accent);
    font-weight: bold;
    margin-right: 15px;
    background: rgba(244, 180, 0, 0.1); /* Soft Gold Bg */
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* --- STATS STRIP --- */
.stats-strip {
    display: flex;
    justify-content: space-between;
    background-color: var(--background); /* Light Gray */
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid #cbd5e1; /* Vertical dividers */
}

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

.stat-item h3.numbers {
    font-family: 'Roboto Mono', monospace;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 80px; /* Space for the floating badge */
    }

    .about-visuals {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .experience-badge {
        right: 0;
        bottom: -20px;
        padding: 15px 25px;
    }
    
    .experience-badge .years {
        font-size: 32px;
    }

    .stats-strip {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #cbd5e1;
        padding-bottom: 20px;
    }

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


/* testimoial  */
/* --- TESTIMONIALS FLOW SECTION --- */
.testimonials-flow {
    padding: 80px 0;
    background-color: var(--background);
    overflow: hidden; /* Hide horizontal scrollbars */
}

/* Header Styling (Reused) */
.center-aligned {
    text-align: center;
    margin-bottom: 50px;
}

.scroller {
    max-width: 100%;
}

.tag-list {
    display: flex;
    gap: 30px; /* Space between cards */
    padding-block: 20px;
    width: max-content; /* Ensure container fits all cards */
    
    /* THE ANIMATION */
    animation: scroll-loop 40s linear infinite;
}

/* Hover Pauses the Animation */
.tag-list:hover {
    animation-play-state: paused;
}

/* KEYFRAMES FOR INFINITE LOOP */
@keyframes scroll-loop {
    to {
        transform: translate(calc(-50% - 15px)); /* Moves half the width + half the gap */
    }
}

/* --- DARK CARD DESIGN --- */
.review-card-dark {
    background-color: var(--primary); /* Navy Blue Background */
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    width: 350px; /* Fixed width for consistent flow */
    flex-shrink: 0; /* Prevents squishing */
    box-shadow: 0 10px 30px rgba(11, 37, 69, 0.15);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Decorative Gold Top Border */
.review-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
}

.review-card-dark:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(11, 37, 69, 0.25);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.quote-mark {
    font-family: 'Montserrat', serif;
    font-size: 60px;
    line-height: 0.5;
    color: var(--accent);
    opacity: 0.5;
}

.stars {
    color: var(--accent);
    letter-spacing: 2px;
    font-size: 14px;
}

.review-card-dark p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #e2e8f0; /* Light gray text */
    margin-bottom: 25px;
    font-style: italic;
}

.author {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.author strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--white);
}

.author span {
    display: block;
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    color: var(--secondary); /* Gray */
    text-transform: uppercase;
    margin-top: 5px;
}

/* --- FADE EFFECT ON EDGES --- */
/* This creates a cool fade out effect on the left and right of the screen */
.testimonials-flow {
    position: relative;
    /* Mask Image creates transparency on edges */
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .review-card-dark {
        width: 320px; /* Slightly smaller cards on mobile */
        padding: 20px;
    }
    
    /* Make animation faster on mobile */
    .tag-list {
        animation-duration: 30s; 
    }
}







/* ours clients */

/* --- CLIENTS SECTION --- */
.clients-section {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.section-subtitle {
    color: var(--secondary);
    margin-top: 15px;
    font-size: 16px;
}

.logo-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px; /* Space between the two rows */
    margin-top: 40px;
    position: relative;
    
    /* Fade Effect on Edges (Left/Right) */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 60px; /* Space between logos */
    width: max-content;
}

/* Common Image Styles */
.client-logo {
    height: 60px; /* Uniform height */
    width: auto;
    object-fit: contain;
    
    /* THE GREYSCALE EFFECT */
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover Effect: Bring back color */
.client-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1); /* Slight Zoom */
}

/* --- ANIMATIONS --- */

/* Row 1: Moves Left */
.scroll-left {
    animation: marquee-left 40s linear infinite;
}

/* Row 2: Moves Right */
.scroll-right {
    animation: marquee-right 40s linear infinite;
}

/* Pause on hover */
.logo-marquee-wrapper:hover .logo-track {
    animation-play-state: paused;
}

@keyframes marquee-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Moves halfway because of duplicated content */
}

@keyframes marquee-right {
    0% { transform: translateX(-50%); } /* Starts from the middle */
    100% { transform: translateX(0); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .client-logo {
        height: 40px; /* Smaller logos on mobile */
    }
    
    .logo-track {
        gap: 30px;
    }
    
    .logo-marquee-wrapper {
        gap: 20px;
    }
}














/* form  */

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--primary); /* Deep Navy Background */
    color: var(--white);
    position: relative;
}

/* Optional: Subtle background pattern/gradient for texture */
.contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.05), transparent 40%);
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Text is slightly wider than form */
    gap: 80px;
    align-items: flex-start;
}

/* --- TEXT CONTENT (LEFT) --- */
.light-tag {
    color: var(--accent);
}

.contact-text h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 18px;
    color: #cbd5e1; /* Light bluish-grey for readability on dark bg */
    margin-bottom: 40px;
    line-height: 1.7;
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.prop-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.icon-circle svg {
    width: 24px;
    height: 24px;
}

.prop-text h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 5px;
}

.prop-text p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
}

/* --- FORM CARD (RIGHT) --- */
.contact-form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-card h3 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

/* Input Styling */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    background-color: #f8fafc;
    color: var(--text);
    transition: all 0.3s ease;
}

/* Input Focus State - The "Gold" Touch */
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.1);
}

.form-group textarea {
    resize: vertical; /* User can only resize height */
}

/* Button override for form */
.full-width {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 50px;
    }
    
    .contact-text {
        order: 1; /* Text first */
    }
    
    .contact-form-card {
        order: 2; /* Form second */
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-form-card {
        padding: 30px 20px; /* Less padding on mobile */
    }
}














/* --- SERVICES SECTION STYLES --- */
.services-section {
    padding: 100px 0;
    background-color: var(--background);
}

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

.section-tag {
    font-family: 'Roboto Mono', monospace;
    color: var(--accent);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Optional: Small decorative underline for the header */
.separator {
    height: 4px;
    width: 60px;
    background-color: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    /* 3 Columns by default */
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column; /* Stack Icon on top of text */
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(11, 37, 69, 0.05);
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

/* Accent top border on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0); /* Hidden by default */
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1); /* Slide in on hover */
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(11, 37, 69, 0.05); /* Very light blue bg for icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

/* SVG Styling */
.icon-box svg {
    width: 30px;
    height: 30px;
}

/* Icon colors on Card Hover */
.service-card:hover .icon-box {
    background-color: var(--primary);
    color: var(--accent);
}

.service-card h3 {
    font-size: 20px;
    color: var(--primary);
    line-height: 1.4;
}

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

/* RESPONSIVE QUERIES */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablets */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 Column on Mobile */
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        align-items: center;
        text-align: center;
    }
}








/* gallary */
/* --- GALLERY SECTION --- */
.gallery-section {
    padding: 100px 0;
    background-color: var(--white);
}

/* The Grid Container */
.bento-grid {
    display: grid;
    /* Create a grid with auto-filling columns approx 300px wide */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Implicit row height */
    auto-rows: 250px; 
    gap: 15px; /* Space between tiles */
}

/* --- GRID SPANS (The Puzzle Pieces) --- */

/* Desktop Spanning rules */
@media (min-width: 769px) {
    /* Large item: 2 cols wide, 2 rows tall */
    .item-large {
        grid-column: span 2;
        grid-row: span 2;
    }
    
    /* Wide item: 2 cols wide */
    .item-wide {
        grid-column: span 2;
    }
    
    /* Tall item: 2 rows tall */
    .item-tall {
        grid-row: span 2;
    }
}

/* --- ITEM STYLING --- */
.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-color: #000; /* Fallback color */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    cursor: pointer;
}

.media-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Make images and videos fill the tile */
.media-wrapper img,
.media-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures no stretching */
    transition: transform 0.5s ease;
    display: block;
}

/* Zoom Effect on Hover */
.gallery-item:hover .media-wrapper img,
.gallery-item:hover .media-wrapper video {
    transform: scale(1.05);
}

/* --- OVERLAY STYLING --- */
.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.9), transparent 60%);
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Text at bottom */
    padding: 20px;
}

/* Show Overlay on Hover */
.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay-content h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--white);
    font-size: 18px;
    margin: 0 0 5px 0;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.overlay-content .category {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    color: var(--accent); /* Gold text */
    text-transform: uppercase;
    transform: translateY(10px);
    transition: transform 0.3s ease 0.1s; /* Slight delay */
}

/* Slide text up on hover */
.gallery-item:hover .overlay-content h4,
.gallery-item:hover .overlay-content .category {
    transform: translateY(0);
}

/* Play Button Icon for Videos */
.play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 50px; height: 50px;
    background-color: rgba(255,255,255,0.2);
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.gallery-item:hover .play-icon {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        auto-rows: 250px;
    }
    
    /* Reset spans on mobile so everything is uniform size */
    .item-large, .item-wide, .item-tall {
        grid-column: auto;
        grid-row: auto;
    }
    
    /* Ensure title is visible on mobile without hover? 
       Uncomment below if you want text always visible on mobile 
    */
    /*
    .overlay { opacity: 1; background: linear-gradient(to top, rgba(11, 37, 69, 0.8), transparent); }
    .overlay-content h4, .overlay-content .category { transform: translateY(0); }
    */
}








































/* form s */
/* --- DUAL PANEL CONTACT SECTION --- */
.contact-dual {
    padding: 100px 0;
    background-color: #F1F5F9; /* Slightly darker than standard white */
}

.contact-box {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden; /* Ensures rounded corners clip content */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); /* Deep shadow for pop */
}

/* --- LEFT PANEL: INFO --- */
.info-panel {
    flex: 1; /* Takes up 40-50% space */
    padding: 50px;
    background-color: var(--white);
    color: var(--primary);
}

.info-panel h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

.info-intro {
    font-size: 15px;
    color: var(--secondary);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon-box {
    width: 50px;
    height: 50px;
    background-color: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
}

.info-item .label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-item .link, 
.info-item p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
    text-decoration: none;
    margin: 0;
}

/* Hours Box at bottom of left panel */
.hours-box {
    margin-top: 50px;
    padding: 25px;
    background-color: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.hours-box h4 {
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--secondary);
}

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

.hours-box li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--primary);
}

.closed { color: #ef4444; font-weight: 600; }

/* --- RIGHT PANEL: FORM --- */
.form-panel {
    flex: 1.3; /* Takes up slightly more space */
    padding: 50px;
    background-color: var(--primary); /* Navy Blue Background */
    color: var(--white);
}

.form-panel h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--white);
}

/* Form Grid */
.input-row {
    display: flex;
    gap: 20px;
}

.input-group {
    margin-bottom: 20px;
    width: 100%;
}

.input-group label {
    display: block;
    font-size: 13px;
    color: #94a3b8; /* Light grey label */
    margin-bottom: 8px;
}

/* Modern Input Style: Transparent with border */
.form-panel input,
.form-panel select,
.form-panel textarea {
    width: 100%;
    background-color: rgba(255,255,255,0.05); /* Very slight transparency */
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    padding: 12px 15px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
}

.form-panel select option {
    background-color: var(--primary); /* Fix for dropdown bg color */
}

/* Focus State */
.form-panel input:focus,
.form-panel select:focus,
.form-panel textarea:focus {
    outline: none;
    border-color: var(--accent); /* Gold border on focus */
    background-color: rgba(255,255,255,0.1);
}

/* Button */
.btn-gold {
    background-color: var(--accent);
    color: var(--primary);
    font-weight: 700;
    border: none;
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-gold:hover {
    background-color: #e5a800; /* Darker Gold */
    transform: translateY(-2px);
}

.full-width { width: 100%; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-box {
        flex-direction: column; /* Stack panels */
    }
    
    .info-panel, .form-panel {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .input-row {
        flex-direction: column;
        gap: 0;
    }
}






















/* header */
/* --- TOP BAR (Dark Blue) --- */
.top-bar {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-info a:hover { color: var(--accent); }
.divider { margin: 0 10px; opacity: 0.3; }
.social-mini a { color: rgba(255, 255, 255, 0.8); text-decoration: none; margin-left: 15px; font-size: 12px; }













/* products page start   */





        /* header */


        /* --- REUSING HEADER STYLES (Paste current .page-header CSS here) --- */
.page-header {
    background-color: var(--primary);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    background-image: linear-gradient(rgba(11, 37, 69, 0.9), rgba(11, 37, 69, 0.8)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
}
.page-title { font-size: 42px; font-weight: 700; margin-bottom: 10px; }
.breadcrumbs a { color: #cbd5e1; text-decoration: none; }
.breadcrumbs .current { color: var(--accent); }

/* --- PRODUCT DETAIL LAYOUT --- */
.product-detail-section {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.product-layout {
    display: grid;
    grid-template-columns: 300px 1fr; /* 300px Sidebar, rest Content */
    gap: 50px;
    align-items: start;
}

/* --- SIDEBAR STYLING --- */
.product-sidebar {
    position: sticky;
    top: 100px; /* Sticks when scrolling */
}

.sidebar-widget {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    margin-bottom: 30px;
    border-top: 4px solid var(--primary);
}

.sidebar-widget h3 {
    background-color: #f1f5f9;
    padding: 20px;
    margin: 0;
    font-size: 18px;
    color: var(--primary);
    border-bottom: 1px solid #e2e8f0;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-menu a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    transition: 0.3s;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
}

.sidebar-menu a:hover {
    color: var(--primary);
    background-color: #f8fafc;
    padding-left: 25px; /* Slide effect */
}

/* Active Menu Item */
.sidebar-menu a.active {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 600;
}

.sidebar-contact {
    background: var(--primary);
    padding: 30px;
    border-radius: 8px;
    color: var(--white);
    text-align: center;
}

.sidebar-contact h4 { font-size: 18px; margin-bottom: 10px; color: var(--white); }
.sidebar-contact p { font-size: 14px; color: #cbd5e1; margin-bottom: 20px; }

.btn-small {
    background: var(--accent);
    color: var(--primary);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-radius: 4px;
    display: inline-block;
    transition: 0.3s;
}
.btn-small:hover { background: #d9a000; }

/* --- MAIN CONTENT STYLING --- */
.main-content {
    background: transparent;
}

/* 1. Overview Section */
.product-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.video-frame-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-frame-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.overview-text .separator-left {
    height: 4px; width: 60px; background: var(--accent); margin: 15px 0;
}

.feature-bullets {
    margin-top: 20px;
    padding-left: 20px;
    color: var(--primary);
    font-weight: 500;
}
.feature-bullets li { margin-bottom: 8px; }

/* 2. Catalog Groups */
.catalog-group {
    margin-bottom: 60px;
}

.group-title {
    font-size: 24px;
    color: var(--primary);
    border-left: 5px solid var(--accent);
    padding-left: 20px;
    margin-bottom: 30px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive Grid */
    gap: 25px;
}

/* Individual Item Card */
.catalog-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.img-box {
    height: 180px;
    background-color: #f1f5f9;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.catalog-item:hover .img-box img { transform: scale(1.1); }

.text-box {
    padding: 20px;
}

.text-box h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.text-box p {
    font-size: 13px;
    color: var(--secondary);
    line-height: 1.5;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr; /* Sidebar stacks on top or bottom */
    }
    
    .product-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .product-overview {
        grid-template-columns: 1fr;
    }
}










        



        /* --- PRODUCT SHOWCASE LAYOUT --- */
.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split 50/50 */
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

/* Image Side */
.showcase-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background-color: var(--white);
    padding: 10px; /* White border effect */
    border: 1px solid #e2e8f0;
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    transition: transform 0.3s;
}

.showcase-image:hover img {
    transform: scale(1.03);
}

.floating-badge {
    position: absolute;
    top: 20px; right: 20px;
    background-color: var(--accent);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 5px;
}

/* Details Side */
.showcase-details .lead-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.showcase-details p {
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Benefits Grid (Icons) */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
    background-color: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ben-icon {
    width: 36px; height: 36px;
    background-color: rgba(11, 37, 69, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
}

.benefit-item strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
}

.benefit-item span {
    font-size: 12px;
    color: var(--secondary);
}

/* Action Buttons */
.action-btns {
    display: flex;
    gap: 15px;
}

.btn-primary {
    /* background: var(--primary); */
    color: var(--white);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}
.btn-primary:hover { background: var(--accent); color: var(--primary); }

.btn-outline {
    border: 1px solid #e2e8f0;
    color: var(--primary);
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}
.btn-outline:hover { border-color: var(--primary); background: #f8fafc; }

/* Technical Specs Box */
.tech-specs-box {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
}

.tech-specs-box h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 10px;
}

.specs-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.spec {
    display: flex;
    flex-direction: column;
}

.spec .label {
    font-size: 12px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 5px;
    font-weight: 600;
}

.spec .value {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .product-showcase {
        grid-template-columns: 1fr; /* Stack Image on top of text */
        gap: 30px;
    }

    .specs-row {
        grid-template-columns: 1fr 1fr; /* 2 cols on tablet */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .specs-row {
        grid-template-columns: 1fr; /* 1 col on mobile */
    }
    
    .action-btns {
        flex-direction: column;
    }
    
    .btn { text-align: center; }
}























        /* --- REUSING PREVIOUS SECTIONS CSS (Sidebar, Header, etc.) --- */
/* (Ensure you have the CSS from previous steps included) */

/* --- MACHINING SPECIFIC STYLES --- */

/* 1. Header Area */
.lead-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
}

.desc-text {
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* 2. Dual Capability Grid */
.machining-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns side-by-side */
    gap: 30px;
    margin-bottom: 60px;
}

.machining-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.machining-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

/* Card Image Area */
.card-visual {
    position: relative;
    height: 250px;
    overflow: hidden;
    background-color: #f8fafc;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.tech-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--primary);
    color: var(--accent);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
}

/* Card Details Area */
.card-details {
    padding: 25px;
}

.card-details h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

.card-details p {
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.5;
}

.micro-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.micro-list li {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.micro-list strong {
    color: #64748b; /* Grey Label */
}

/* 3. Specs Dashboard (Bottom) */
.specs-dashboard {
    background-color: #F8FAFC; /* Light Grey Panel */
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.specs-dashboard h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

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

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

.spec-icon {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 10px;
    display: block;
}

.spec-box h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.spec-box p {
    font-size: 13px;
    color: var(--secondary);
    line-height: 1.4;
}

/* 4. CTA */
.product-cta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    padding: 20px 30px;
    border-radius: 8px;
    color: var(--white);
}

.product-cta p { margin: 0; font-weight: 600; font-size: 16px; }

.product-cta .btn {
    background: var(--accent);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.product-cta .btn:hover { background: #d9a000; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .machining-grid {
        grid-template-columns: 1fr; /* Stack Cards */
    }
    
    .specs-grid {
        grid-template-columns: 1fr 1fr; /* 2x2 Grid for specs */
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-cta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}




















/* --- TOOLING SPECIFIC STYLES --- */

/* 1. Tooling Showcase (Image + Info Split) */
/* 1. Header Area */
.lead-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
}

.desc-text {
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}



.tooling-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Image takes slightly more space */
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.showcase-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.showcase-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.showcase-visual:hover img {
    transform: scale(1.05);
}

/* The "HRC" Hardness Badge */
.tech-overlay {
    position: absolute;
    bottom: 20px; right: 20px;
    background-color: rgba(11, 37, 69, 0.9); /* Navy */
    color: var(--white);
    padding: 10px 20px;
    border-radius: 4px;
    border-left: 4px solid var(--accent);
    backdrop-filter: blur(4px);
}

.tech-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: #cbd5e1;
    margin-bottom: 2px;
}

.tech-overlay strong {
    font-size: 18px;
    color: var(--accent);
    font-family: 'Roboto Mono', monospace;
}

/* Right Side Info */
.showcase-info h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
}

.showcase-info p {
    color: var(--secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.feat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f8fafc;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.feat-item:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.feat-icon {
    width: 40px; height: 40px;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.feat-item strong {
    display: block;
    font-size: 15px;
    color: var(--primary);
}

.feat-item span {
    font-size: 13px;
    color: var(--secondary);
}

/* 2. Capabilities Grid */
.capabilities-block {
    margin-bottom: 50px;
}

.capabilities-block h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.cap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cap-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.cap-card h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.cap-card p {
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 20px;
}

/* Material Tags */
.tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: rgba(11, 37, 69, 0.05);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(11, 37, 69, 0.1);
}

/* Process List */
.process-steps {
    list-style: none;
    padding: 0;
}

.process-steps li {
    font-size: 13px;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: 'Roboto Mono', monospace;
}

/* 3. Bottom CTA */
.tooling-cta {
    background-color: var(--primary); /* Navy */
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
}

.cta-text h4 { color: var(--accent); margin-bottom: 5px; font-size: 18px; }
.cta-text p { color: #cbd5e1; margin: 0; font-size: 14px; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .tooling-showcase {
        grid-template-columns: 1fr; /* Stack Image/Text */
        gap: 30px;
    }
    
    .cap-grid {
        grid-template-columns: 1fr; /* Stack Cap Cards */
    }
}

@media (max-width: 768px) {
    .tooling-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .tech-overlay {
        right: 10px; bottom: 10px;
        padding: 8px 15px;
    }
}







/* --- REUSING BASE STYLES --- */
/* (Ensure Sidebar, Header, etc. are included) */



.lead-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    border-left: 4px solid var(--accent);
    padding-left: 15px;
}

.desc-text {
    color: var(--secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}


.tooling-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Image takes slightly more space */
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.showcase-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.showcase-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.showcase-visual:hover img {
    transform: scale(1.05);
}


/* --- SPM SPECIFIC STYLES --- */









/* 1. Showcase Layout */
.spm-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: start;
}

/* Image Visual */
.spm-visual {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.spm-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.spm-visual:hover img {
    transform: scale(1.03);
}

.float-tags {
    position: absolute;
    bottom: 20px; left: 20px;
    display: flex;
    gap: 10px;
}

.ft-tag {
    background-color: var(--primary);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Features Side */
.spm-features h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 10px;
}

.spm-features p {
    color: var(--secondary);
    margin-bottom: 30px;
    font-size: 15px;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f8fafc;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

.feature-card:hover {
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.f-icon {
    width: 40px; height: 40px;
    background-color: var(--white);
    color: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.f-text strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 3px;
}

.f-text span {
    font-size: 13px;
    color: var(--secondary);
}

/* 2. Applications / Specs Container */
.tech-specs-container {
    background-color: var(--primary); /* Dark Navy Section for contrast */
    padding: 40px;
    border-radius: 8px;
    color: var(--white);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.tech-specs-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.tech-specs-container h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
    position: relative;
    z-index: 2;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.app-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 6px;
    transition: 0.3s;
}

.app-box:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.app-box h4 {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 10px;
}

.app-box p {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* 3. CTA (Light Version) */
.product-cta {
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-content h4 { color: var(--primary); margin-bottom: 5px; font-size: 18px; }
.cta-content p { color: var(--secondary); margin: 0; font-size: 14px; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .spm-showcase { grid-template-columns: 1fr; }
    .app-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .product-cta { flex-direction: column; text-align: center; gap: 20px; }
    .btn { width: 100%; text-align: center; }
}


















/* 1. Fixture Showcase (Split View) */
.fixture-showcase {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    background-color: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.fixture-visual {
    flex: 1;
    position: relative;
    min-height: 300px;
}

.fixture-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spec-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: rgba(11, 37, 69, 0.9); /* Navy */
    padding: 15px;
    display: flex;
    justify-content: space-around;
    backdrop-filter: blur(4px);
}

.spec-item {
    color: var(--white);
    font-size: 13px;
    font-family: 'Roboto Mono', monospace;
}
.spec-item strong { color: var(--accent); }

.fixture-details {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fixture-details h3 { font-size: 22px; color: var(--primary); margin-bottom: 20px; }
.fixture-details p { color: var(--secondary); margin-bottom: 25px; }

.fixture-benefits {
    list-style: none;
    padding: 0;
}

.fixture-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.chk-icon {
    color: var(--accent);
    font-weight: bold;
    margin-right: 12px;
    background: rgba(244, 180, 0, 0.1);
    width: 24px; height: 24px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.fixture-benefits strong {
    display: block;
    color: var(--primary);
    font-size: 15px;
}

.fixture-benefits span {
    font-size: 13px;
    color: var(--secondary);
}

/* 2. Types Grid */
.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.type-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    padding: 25px;
    border-radius: 8px;
    transition: 0.3s;
}

.type-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.icon-header {
    width: 50px; height: 50px;
    background: rgba(11, 37, 69, 0.05);
    color: var(--primary);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 15px;
    transition: 0.3s;
}

.icon-header svg { width: 24px; height: 24px; }

.type-card:hover .icon-header {
    background: var(--primary);
    color: var(--accent);
}

.type-card h4 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.type-card p { font-size: 14px; color: var(--secondary); line-height: 1.5; margin: 0; }

/* 3. Project Gallery */
.gallery-block h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 25px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 10px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 200px;
    border: 1px solid #e2e8f0;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-item:hover img { transform: scale(1.1); }

.project-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    background: rgba(11, 37, 69, 0.85);
    padding: 10px;
    text-align: center;
    transform: translateY(100%); /* Hidden initially */
    transition: transform 0.3s;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay span {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

/* 3. Bottom CTA */
.product-cta {
    background-color: var(--primary); /* Navy */
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
}

@media (max-width: 768px) {
    .product-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        margin-top: 10px;
    }
}


.cta-text h4 { color: var(--accent); margin-bottom: 5px; font-size: 18px; }
.cta-text p { color: #cbd5e1; margin: 0; font-size: 14px; }


/* RESPONSIVE */
@media (max-width: 992px) {
    .fixture-showcase { flex-direction: column; }
    .types-grid { grid-template-columns: 1fr; }
    .project-grid { grid-template-columns: 1fr; }
}


