:root {
    --primary-blue: #0066cc;
    --navy-dark: #0a192f;
    --navy-light: #172a45;
    --pure-white: #ffffff;
    --light-sky-blue: #f0f7ff;
    --card-sky-tint: #e6f2ff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-sky-blue);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 125px !important;
}

.section-padding {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 34px;
    color: var(--navy-dark);
    margin-bottom: 50px;
    position: relative;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    display: block;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Structural Layout Interfaces */
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(450px, 1fr)); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; }

/* 1. TOP MINI UTILITY STRIP BAR */
.top-utility-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 38px;
    background: #011d33 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px;
    z-index: 10000 !important;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left { display: flex; gap: 25px; }
.top-bar-left span { display: inline-flex; align-items: center; gap: 8px; }
.top-bar-left i { color: #f1c40f; }
.top-bar-right { display: flex; gap: 18px; }
.top-bar-right a { color: rgba(255, 255, 255, 0.9) !important; text-decoration: none; }
.top-bar-right a:hover { color: #f1c40f !important; }

/* 2. CORPORATE NAVBAR INTERFACE */
.navbar {
    position: fixed;
    top: 38px !important;
    left: 0;
    width: 100%;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 0;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

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

.logo-wrapper { display: flex; align-items: center; }
.brand-logo-img {
    height: 68px; /* Increased width size scale */
    width: auto;
    object-fit: contain;
}

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links li a {
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.3px;
    padding: 8px 0;
    position: relative;
    transition: color 0.25s ease;
}

.nav-links li a:hover, .nav-links li a.active { color: #f1c40f !important; }
.nav-links li a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background-color: #f1c40f; transition: width 0.25s ease;
}
.nav-links li a:hover::after, .nav-links li a.active::after { width: 100%; }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #0f172a;
    cursor: pointer;
}

/* 3. HERO SLIDESHOW (FULL VIEWPORT - NO VISUAL SHADOW MASKS) */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--pure-white);
    text-align: center;
}

.hero-bg-slides { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }

.hero::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.25); z-index: 2;
}

.hero-content-wrapper {
    position: relative; z-index: 3; max-width: 850px; padding: 20px;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.85);
}
.hero-content-wrapper h1 { font-size: 52px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; }

/* 4. CARDS & INTERACTION BUTTONS */
.premium-card {
    background: var(--pure-white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 102, 204, 0.06);
}
.premium-card:hover { transform: translateY(-6px); box-shadow: 0 12px 25px rgba(0,102,204,0.1); }
.premium-card i { font-size: 40px; color: var(--primary-blue); margin-bottom: 20px; }
.premium-card h3 { font-size: 20px; margin-bottom: 12px; color: var(--navy-dark); }
.premium-card p { font-size: 14px; color: var(--text-muted); }

/* PRODUCT CLICKABLE INTERACTION STYLES */
.product-clickable-card { cursor: pointer; position: relative; overflow: hidden; }
.product-img-box { width: 100%; height: 180px; margin-bottom: 15px; border-radius: 6px; overflow: hidden; background: #f8fafc; }
.product-img-box img { width: 100%; height: 100%; object-fit: contain; transition: var(--transition-smooth); }
.product-clickable-card:hover .product-img-box img { transform: scale(1.06); }

.whatsapp-badge-action {
    margin-top: 15px;
    background-color: #25d366;
    color: white;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s ease;
}
.product-clickable-card:hover .whatsapp-badge-action { background-color: #1ebd58; }

/* ==========================================================================
   SERVICES PAGE: COMPACT BLUE OVAL WHATSAPP BUTTONS
   ========================================================================== */
.dynamic-whatsapp-btn {
    margin: 20px auto 0 !important; /* Perfect vertical gap below paragraph */
    background-color: #0b63e0 !important; /* Premium corporate matching blue */
    color: #ffffff !important;
    display: inline-flex !important; /* Keeps icon and text in a tight inline layout */
    align-items: center;
    justify-content: center;
    gap: 6px;                        /* Tight gap between icon and text */
    padding: 6px 16px !important;    /* Sleek compact vertical/horizontal spacing */
    font-size: 10px !important;      /* Small sharp font metric */
    font-weight: 700 !important;     /* Bold punchy text style */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px !important;  /* Creates the perfect pill/oval capsule shape */
    width: fit-content !important;   /* Button shrinks tightly to wrap text content */
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(11, 99, 224, 0.2);
    transition: all 0.25s ease-in-out;
}

.dynamic-whatsapp-btn:hover {
    background-color: #004cb8 !important; /* Deep royal blue shade on cursor hover */
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(11, 99, 224, 0.35);
}

.dynamic-whatsapp-btn i {
    font-size: 12px !important;      /* Icon stays slightly prominent */
    margin: 0 !important;            /* Removes unwanted inherited spacing metrics */
    color: #ffffff !important;
}

/* Counter & Footer Sections */
.counter-section { background: var(--navy-dark); color: white; padding: 60px 20px; text-align: center; }
.counter-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.counter-item h2 { font-size: 42px; color: #f1c40f; }

.modern-footer { background: #071121; color: #94a3b8; padding: 60px 20px 20px; border-top: 3px solid var(--primary-blue); }
.footer-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; max-width: 1250px; margin: 0 auto; }
.footer-brand h3 { color: white; margin-bottom: 15px; }
.footer-links h4, .footer-contact h4 { color: white; margin-bottom: 20px; text-transform: uppercase; font-size: 15px; letter-spacing: 1px; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { color: #94a3b8; text-decoration: none; transition: color 0.2s; }
.footer-links ul li a:hover { color: white; }
.contact-item-row { display: flex; gap: 12px; margin-bottom: 15px; }
.contact-icon { color: var(--primary-blue); }
.footer-bottom { text-align: center; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 13px; }

/* Forms Configuration */
.contact-wrapper { padding: 40px 30px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 13px; color: var(--navy-dark); text-transform: uppercase; }
.form-control { width: 100%; padding: 12px 15px; border: 1px solid #cbd5e1; border-radius: 4px; font-family: inherit; font-size: 14px; }
.btn { display: inline-block; padding: 12px 28px; font-weight: 700; text-transform: uppercase; font-size: 13px; border: none; border-radius: 4px; cursor: pointer; text-decoration: none; text-align: center; }
.btn-primary { background: var(--primary-blue); color: white; }
.btn-primary:hover { background: #0052a3; }

/* Responsive Media Controls */
@media (max-width: 991px) {
    body { padding-top: 76px !important; }
    .top-utility-bar { display: none !important; }
    .navbar { top: 0 !important; padding: 8px 0; }
    .brand-logo-img { height: 52px; }
    .mobile-menu-toggle { display: block; }
    .nav-links {
        position: fixed; top: 68px; left: -100%; width: 280px; height: calc(100vh - 68px);
        background: #ffffff; flex-direction: column; align-items: flex-start; padding: 30px;
        gap: 20px; box-shadow: 4px 0 15px rgba(0,0,0,0.1); transition: left 0.4s ease;
    }
    .nav-links.mobile-nav-active { left: 0; }
}

/* ==========================================================================
   AUTHORIZED SHOWROOM PARTNERS - PERFECT CENTER ALIGNMENT
   ========================================================================== */
.brands-section {
    background-color: var(--light-sky-blue);
    padding: 60px 20px;
    text-align: center;
}

.brand-logos {
    display: flex;
    justify-content: center; /* Center aligns all logo items horizontally */
    align-items: center;     /* Vertically centers them perfectly */
    flex-wrap: wrap;         /* Allows wrapping beautifully on smaller tablet screens */
    gap: 40px;               /* Uniform professional spacing between logos */
    max-width: 1100px;
    margin: 0 auto;          /* Centers the entire container container block */
}

.brand-logos img {
    height: 65px;            /* Uniform height matrix */
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);  /* Subtle corporate touch */
    transition: var(--transition-smooth);
}

.brand-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.08);  /* Clean interactive zoom on hover */
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    max-width: 850px;
    padding: 20px;
    text-shadow: 2px 3px 10px rgba(0, 0, 0, 0.85);
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out; /* Real-time interactive visibility animation transition framework */
    opacity: 1;
    transform: translateY(0);
}

/* Custom visibility modifier classes targeted directly via JS script bindings */
.hero-content-wrapper.content-hidden-state {
    opacity: 0 !important;
    transform: translateY(15px); /* Soft push layout logic to elevate premium look when fading out */
    pointer-events: none;       /* Disables active button click layers when element gets hidden state */
}

/* ==========================================================================
   COMPACT OVAL HERO BUTTON UPGRADE
   ========================================================================== */
/* --- Modern Capsule View Button --- */
.view-details-btn {
    background-color: #0b63e0;
    color: white;
    border: none;
    padding: 8px 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px; /* Capsule/Oval design matching services layer */
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    margin-top: 15px;
}

.view-details-btn:hover {
    background-color: #004cb8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(11, 99, 224, 0.3);
}

/* --- Mini Window Modal Structural Architecture --- */
.mini-window-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Blurred translucent dark overlay */
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
}

.mini-window-content {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 16px;
    width: 90%;
    max-width: 420px; /* Small Mini Window footprint */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
    text-align: center;
    animation: zoomInFrame 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomInFrame {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-window-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}

.close-window-btn:hover { color: #333; }

/* Clickable Inner Card Area Link setup */
.modal-product-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.modal-product-link-wrapper img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
    border-radius: 8px;
}

.modal-product-link-wrapper h2 {
    font-size: 20px;
    color: #111;
    margin-bottom: 10px;
}

.modal-product-link-wrapper p {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Quick Action Callout */
.modal-action-hint {
    background-color: #25D366; /* WhatsApp corporate Green color accent */
    color: white;
    padding: 10px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

/* ==========================================================================
   EXCLUSIVE HIGH-CONTRAST EXPERTISE GRID LAYOUT - EXTRA PREMIUM LOOK
   ========================================================================== */
.exclusive-expertise-section {
    background: linear-gradient(135deg, #011d33 0%, #004488 100%);
    padding: 70px 20px;
    color: #ffffff;
    border-radius: 16px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 10px 35px rgba(0, 32, 96, 0.15);
}

.exp-section-title {
    text-align: center;
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: capitalize;
    font-weight: 700;
}

.exp-section-subtitle {
    text-align: center;
    color: #cbd5e1;
    margin-bottom: 45px;
    font-size: 14px;
}

.exclusive-exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 0 15px;
}

.exclusive-exp-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.exclusive-exp-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
    border-color: #f1c40f;
}

.exclusive-exp-icon {
    font-size: 36px;
    color: #f1c40f;
    margin-bottom: 15px;
}

.exclusive-exp-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 600;
    text-transform: capitalize;
}

.exclusive-exp-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exclusive-exp-card ul li {
    font-size: 13.5px;
    color: #cbd5e1;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.exclusive-exp-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #f1c40f;
    font-weight: bold;
}

.exclusive-exp-footer-box {
    margin: 40px 15px 0 15px;
    text-align: center;
    background: rgba(241, 196, 15, 0.08);
    padding: 20px;
    border-radius: 30px;
    border: 1px dashed #f1c40f;
}

.exclusive-exp-footer-box h4 {
    color: #f1c40f;
    margin: 0 0 5px 0;
    font-size: 16px;
    text-transform: capitalize;
}

.exclusive-exp-footer-box p {
    font-size: 13.5px;
    color: #ffffff;
    margin: 0;
}
