@import url('https://fonts.googleapis.com/css2?family=Mr+Dafoe&family=Inter:wght@400;700&family=Outfit:wght@400;700;900&family=Alex+Brush&display=swap');

:root {
    --primary: #ffcc00;
    --dark: #121212;
    --grey: #1e1e1e;
    --text: #ffffff;
    --text-muted: #b0b0b0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "ISK ELEC";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 20vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    animation: backgroundGlow 8s ease-all infinite alternate;
}

@keyframes backgroundGlow {
    from {
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.02);
        color: rgba(255, 255, 255, 0.01);
    }

    to {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.04);
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    padding: 0.4rem 5%;
    background: var(--dark);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 45px;
    /* Slightly larger for better visibility */
    width: auto;
    cursor: pointer;
    filter: brightness(1) invert(0);
    /* Reset to original if needed, or ensure it's loaded */
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    transition: var(--transition);
}

/* Burger Menu */
.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background: rgba(18, 18, 18, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        visibility: hidden;
        /* Hide when not active */
        pointer-events: none;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        margin: 1.5rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .nav-links.nav-active li {
        opacity: 1;
        transform: translateY(0);
    }

    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 25px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .burger div {
        width: 30px;
        height: 3px;
        background-color: var(--primary);
        /* Gold burger for visibility */
        border-radius: 10px;
        transition: all 0.3s ease;
        position: relative;
    }

    .logo img {
        height: 35px;
    }
}

.nav-active {
    transform: translateX(0%) !important;
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toggle .line1 {
    transform: translateY(8px) rotate(45deg);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar-signature {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 2px 0;
    min-width: 250px;
}

.navbar-signature span {
    display: inline-block;
    font-family: 'Alex Brush', cursive;
    font-size: 2.2rem;
    font-weight: 400;
    /* Fine, elegant script */
    /* LED Light White Aesthetic: Pure white with subtle cool cyan tint */
    background: linear-gradient(to right, #ffffff 0%, #e0faff 25%, #ffffff 50%, #e0faff 75%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: 0;
    transform: rotate(-2deg);
    transition: opacity 0.1s;
    position: relative;
    /* Subtle LED Glow Shadow */
    text-shadow: 0 0 5px rgba(0, 242, 255, 0.2), 0 0 10px rgba(255, 255, 255, 0.1);
}

.navbar-signature span.revealed {
    opacity: 1;
    animation: fireTrace 4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fireTrace {
    0% {
        filter: brightness(1.2) blur(1px);
        background-position: 0% center;
    }

    30% {
        filter: brightness(1.1) blur(0);
        background-position: 50% center;
    }

    100% {
        filter: brightness(1);
        background-position: 100% center;
    }
}

.navbar-signature span.flash {
    color: #ffffff;
    text-shadow: 0 0 15px #00f2ff, 0 0 30px #00f2ff, 0 0 45px rgba(0, 242, 255, 0.5);
    opacity: 1;
    filter: brightness(1.5) contrast(1.2);
}

/* Lightning Bolt Styling - Updated for Fire/Electric Fusion */
.lightning-bolt {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    background: #ffffff;
    box-shadow: 0 0 20px #00f2ff, 0 0 40px #00f2ff, 0 0 60px rgba(0, 242, 255, 0.8);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

.lightning-bolt::before,
.lightning-bolt::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 50%;
    background: #00f2ff;
    box-shadow: 0 0 15px #00f2ff;
}

.lightning-bolt::before {
    transform: rotate(45deg);
    top: -20%;
    left: 10px;
}

.lightning-bolt::after {
    transform: rotate(-45deg);
    bottom: -20%;
    right: 10px;
}

@keyframes lightningFlash {
    0% {
        opacity: 0;
        height: 0;
    }

    10% {
        opacity: 1;
        height: 60px;
        transform: translate(-50%, -50%) skewX(20deg);
        background: #ffffff;
        box-shadow: 0 0 20px #00f2ff, 0 0 40px rgba(0, 242, 255, 0.5);
    }

    20% {
        opacity: 0;
        height: 40px;
    }

    30% {
        opacity: 1;
        height: 80px;
        transform: translate(-50%, -50%) skewX(-20deg);
        background: #eee;
        box-shadow: 0 0 20px #eee;
    }

    40% {
        opacity: 0;
    }
}

.bolt-active {
    animation: lightningFlash 0.3s ease-out forwards;
}

.navbar-signature span:hover {
    cursor: default;
    /* Animation removed to play only once on load */
}

@keyframes flickerHover {
    0% {
        opacity: 1;
        filter: drop-shadow(0 0 5px var(--primary));
    }

    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 20px var(--primary));
    }

    100% {
        opacity: 1;
        filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    }
}

@media (max-width: 1024px) {
    .navbar-signature {
        display: none;
    }
}

.nav-links a:hover {
    color: var(--primary);
}

/* Sections */
section {
    padding: 5rem 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1,
h2 {
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.accent {
    color: var(--primary);
}

/* Hero Slider - Skewed Fusion Design */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s ease, visibility 1s;
    will-change: opacity;
}

/* Ensure the first slide is visible even if JS is slow */
.slide:first-child {
    opacity: 1;
    visibility: visible;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 5;
    /* Ensure active slide is layered correctly */
}

/* Background Fill (Blurred) */
.slide-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.6);
    z-index: 0;
    transform: scale(1.1);
    /* Slight overscale to hide blur edges */
}

/* Sharp Image (Full Visibility) */
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 66%;
    /* Expanded to allow for diagonal slant */
    height: 100%;
    background-size: cover;
    /* Changed from contain to cover to ensure image fills space */
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 90.91% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 90.91% 100%, 0 100%);
    will-change: transform;
}


/* Zoom removed for visibility */
.slide.active .slide-bg {
    transform: scale(1);
}


/* Info Side (Glassmorphism Fusion) */
.slide-info {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    /* Reduced to 40% for more visibility */
    height: 100%;
    z-index: 2;
    background: rgba(255, 255, 255, 0.45);
    /* More transparent glass */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    -webkit-clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    will-change: transform;
    display: flex;
    align-items: center;
    padding: 100px 4% 0 10%;
    /* Adjusted padding */
    transform: translateX(100%);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}


/* Elegant Fusion Border */
.slide-info::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
    box-shadow: 0 0 40px 10px rgba(255, 255, 255, 0.2);
    z-index: 3;
}

.slide.active .slide-info {
    transform: translateX(0);
}

.slide-info-content {
    max-width: 480px;
    /* Adjusted for 50% width */
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out 0.8s;
}

.slide.active .slide-info-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-info-content h1,
.slide-title {
    font-family: 'Outfit', sans-serif;
    color: #000;
    /* Clean black */
    font-size: 1.8rem;
    /* Reduced, elegant size */
    font-weight: 700;
    /* Professional weight */
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-shadow: none;
    /* Removed all glow */
}

.slide-info-content .subtitle {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    /* Reduced size */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: block;
}

.slide-info-content .slide-description {
    color: #333;
    /* Darker for glass contrast */
    font-size: 1rem;
    /* Reduced size */
    line-height: 1.6;
    margin-bottom: 2.2rem;
    font-family: 'Inter', sans-serif;
    max-width: 380px;
}

.slide-info-content .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--dark);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.slide-info-content .btn:hover {
    background: var(--primary);
    color: var(--dark);
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .slide-bg {
        width: 100%;
        height: 100%;
        clip-path: none;
        -webkit-clip-path: none;
        opacity: 0.4;
        /* Fade background image for text readability */
    }

    .slide-bg-blur {
        height: 100%;
    }

    .slide-info {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: radial-gradient(circle at center, rgba(18, 18, 18, 0.6) 0%, rgba(18, 18, 18, 0.9) 100%);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        -webkit-clip-path: none;
        clip-path: none;
        position: absolute;
        padding: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transform: translateX(0);
        /* Ensure it's not shifted on mobile */
    }

    .slide-info::before {
        display: none;
    }

    .slide {
        flex-direction: column;
    }

    .slide-info-content {
        transform: translateY(0);
        opacity: 0;
        max-width: 100%;
        transition: all 0.8s ease-out 0.3s;
    }

    .slide.active .slide-info-content {
        opacity: 1;
        transform: translateY(0);
    }

    .slide-info-content h2,
    .slide-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        color: var(--primary);
        /* Gold title on mobile for pop */
    }

    .slide-info-content .subtitle {
        font-size: 1rem;
        margin-bottom: 0.8rem;
        letter-spacing: 2px;
        color: #fff;
    }

    .slide-info-content .slide-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        color: #ddd;
        display: block !important;
        /* Force display if it was hidden */
    }

    .slide-info-content .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Stats Container & Items */
/* Professional Statistics Section */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 4rem 10%;
    background: linear-gradient(to bottom, transparent, rgba(255, 204, 0, 0.05), transparent);
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0.5rem;
}

.trend-icon {
    font-size: 1.5rem;
    color: var(--primary);
    animation: pulseArrow 2.5s infinite ease-in-out;
}

@keyframes pulseArrow {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-5px) scale(1.1);
        opacity: 1;
    }
}

.stat-item .counter {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: white;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 5px;
    font-weight: 600;
}

/* Response for mobile */
@media (max-width: 1024px) {
    .stats-container {
        gap: 1.5rem;
        padding: 3rem 5%;
    }

    .stat-item {
        min-width: 100%;
        padding: 1.2rem;
    }
}

/* Partners Rolling Banner */
.partners {
    overflow: hidden;
    white-space: nowrap;
    background: #000;
    padding: 2rem 0;
}

.partners-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.partners-track img {
    height: 25px;
    /* Reduced for a more subtle professional look */
    margin: 0 30px;
    transition: var(--transition);
    filter: grayscale(1) opacity(0.7);
    /* Grayscale by default for elegance */
}

.partners-track img:hover {
    filter: grayscale(0) opacity(1);
}


@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Premium Contact Details Styling */
.contact-details-premium {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
    padding: 0 5%;
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.detail-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

.detail-item .label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 400;
}

.detail-item .value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    /* Fine writing */
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

a.value:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .contact-details-premium {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 2.5rem;
    }

    .detail-item:not(:last-child)::after {
        display: none;
    }
}

/* Forms */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.input-group {
    margin-bottom: 1.5rem;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    background: var(--grey);
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
    outline: none;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    border-color: var(--primary);
}

button.submit-btn {
    background: var(--primary);
    color: black;
    font-weight: bold;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Services Slider Redesign */
.services-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
}

.services-track-wrapper {
    flex: 1;
    overflow: hidden;
    padding: 10px 5px;
}

.services-grid {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.service-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #ffffff;
    /* White background for writing */
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    /* Slanted bottom for inclusion */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    z-index: 1;
}

/* Fusion Blur Effect at the slanted edge */
.service-img-container::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.service-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img-container img {
    transform: scale(1.15);
}

.service-info-compact {
    padding: 12px 20px;
    /* Ultra-reduced padding */
    background: #ffffff;
    color: #121212;
    /* Dark text on white bg */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    max-height: 130px;
    /* Even smaller area */
}

.service-info-compact h3 {
    font-size: 1rem;
    /* Smaller title */
    margin-bottom: 5px;
    font-weight: 800;
    color: #121212;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.service-info-compact p {
    color: #555;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 0;
    overflow-y: auto;
    /* Enable scroll */
    padding-right: 5px;
}

/* Slim Scrollbar for Service Description */
.service-info-compact p::-webkit-scrollbar {
    width: 3px;
}

.service-info-compact p::-webkit-scrollbar-track {
    background: #f8f8f8;
}

.service-info-compact p::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 10px;
}

.service-icon-overlay {
    position: absolute;
    bottom: 12px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-overlay {
    transform: scale(1.1) rotate(15deg);
    background: #000;
    color: var(--primary);
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    transform: scale(1.1);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 992px) {
    .service-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 600px) {
    .service-card {
        flex: 0 0 100%;
    }

    .slider-arrow {
        display: none;
    }
}

/* Product Tabs Filtering */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.tab-btn {
    padding: 10px 25px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.tab-btn:hover {
    border-color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

/* Products Section Enhanced */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    /* Smaller items */
    gap: 20px;
    /* Tighter gap */
    padding: 20px 0;
    transition: all 0.5s ease;
}

.product-item {
    background: var(--grey);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}

.product-item.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

.product-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.product-img-wrapper {
    position: relative;
    height: 150px;
    /* Reduced height */
    overflow: hidden;
    background: #fff;
    /* White background for better product visibility with 'contain' */
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Show the full photo */
    transition: transform 0.5s ease;
    padding: 10px;
    /* Breath room for 'contain' images */
}

.product-item:hover .product-img-wrapper img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 204, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.product-item:hover .product-overlay {
    opacity: 1;
}

.product-overlay i {
    font-size: 1.5rem;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.product-info-minimal {
    padding: 15px 12px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    height: 70px;
    /* Fixed height for perfect alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info-minimal h3 {
    margin: 0;
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Truncate after 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Product Preview Overlay */
.product-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-preview-overlay.active {
    display: flex;
    opacity: 1;
}

.product-preview-content {
    background: var(--dark);
    width: 800px;
    max-width: 95%;
    max-height: 90vh;
    /* Ensure it doesn't exceed viewport */
    border-radius: 20px;
    position: relative;
    padding: 30px;
    border: 1px solid var(--primary);
    box-shadow: 0 0 50px rgba(255, 204, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-preview-overlay.active .product-preview-content {
    transform: scale(1);
}

.close-preview {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    z-index: 10;
}

.close-preview:hover {
    color: var(--primary);
}

.preview-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    height: 100%;
}

.preview-img {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.preview-text {
    max-height: 100%;
    overflow-y: auto;
    /* Scrollable text if very long */
    padding-right: 10px;
}

.preview-text h2 {
    color: var(--primary);
    font-size: 1.8rem;
    /* Scaled down */
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.preview-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
}

@media (max-width: 1024px) {
    .preview-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        overflow-y: auto;
    }

    .preview-img {
        max-height: 250px;
    }

    .preview-text h2 {
        font-size: 1.5rem;
    }
}

/* --- V11 Simplified Projects Section (Pure Clarity) --- */
.projects-section-new.v11-clean {
    padding: 8rem 5% 10rem;
    background: transparent;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.clean-projects-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.v11-accent-line {
    width: 60px;
    height: 1px;
    background: var(--primary);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.clean-projects-header .section-title {
    font-size: 2.8rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 15px;
    margin-bottom: 1rem;
    color: #fff;
}

.clean-projects-header .section-title .accent {
    color: var(--primary);
    font-weight: 400;
}

.v11-status {
    font-family: 'monospace';
    font-size: 0.7rem;
    color: rgba(255, 204, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Projects Carousel - Simplified & Polished */
.projects-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0 6rem;
    position: relative;
    z-index: 2;
    background: radial-gradient(ellipse at center, rgba(0, 150, 255, 0.02) 0%, transparent 80%);
}

.projects-carousel-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: carouselScroll 50s linear infinite;
}

.projects-carousel-track:hover {
    animation-play-state: paused;
}

.carousel-item {
    width: 320px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 15px;
    backdrop-filter: blur(15px);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.carousel-item:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 204, 0, 0.4);
    background: rgba(255, 255, 255, 0.04);
}

.carousel-img-container {
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item:hover .carousel-img-container img {
    transform: scale(1.15);
}

.project-info-top h4 {
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.project-mini-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 10, 20, 0.95), transparent);
    color: #fff;
}

.carousel-overlay h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.carousel-overlay span {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes carouselScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 1024px) {
    .projects-section-new.v11-clean {
        padding: 5rem 5% 7rem;
    }

    .clean-projects-header .section-title {
        font-size: 1.8rem;
        letter-spacing: 8px;
    }

    .v11-status {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .carousel-item {
        width: 280px;
    }
}

/* Animations Globales */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- About Us Section Redesign --- */
.about-section {
    position: relative;
    padding: 10rem 5%;
    background: #080808;
    overflow: hidden;
    /* Premium Dotted World Map Background */
    background-image: radial-gradient(circle at center, transparent 0%, #080808 80%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Ccircle cx='200' cy='150' r='1.5' fill='%23ffcc00' opacity='0.3'/%3E%3Ccircle cx='220' cy='140' r='1.5' fill='%23ffcc00' opacity='0.3'/%3E%3Ccircle cx='240' cy='160' r='1.5' fill='%23ffcc00' opacity='0.3'/%3E%3Ccircle cx='400' cy='200' r='1.5' fill='%23ffcc00' opacity='0.3'/%3E%3Ccircle cx='420' cy='210' r='1.5' fill='%23ffcc00' opacity='0.3'/%3E%3Ccircle cx='600' cy='250' r='1.5' fill='%23ffcc00' opacity='0.3'/%3E%3Ccircle cx='650' cy='240' r='1.5' fill='%23ffcc00' opacity='0.3'/%3E%3Ccircle cx='800' cy='150' r='1.5' fill='%23ffcc00' opacity='0.3'/%3E%3Ccircle cx='250' cy='300' r='1.5' fill='%23ffcc00' opacity='0.3'/%3E%3Ccircle cx='500' cy='350' r='1.5' fill='%23ffcc00' opacity='0.3'/%3E%3Ccircle cx='700' cy='400' r='1.5' fill='%23ffcc00' opacity='0.3'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
}

.about-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 20%, #080808 80%);
    pointer-events: none;
    z-index: 1;
}

.about-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.decor-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    animation: techPulse 8s infinite alternate ease-in-out;
}

.blob-1 {
    top: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--primary);
}

.blob-2 {
    bottom: 20%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: #444;
}

/* Global Lighting & World Map Overlay */
.about-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255, 204, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(255, 204, 0, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    animation: slowGlow 15s infinite alternate ease-in-out;
}

@keyframes slowGlow {
    0% {
        opacity: 0.5;
        filter: blur(20px);
    }

    100% {
        opacity: 1;
        filter: blur(40px);
    }
}

@keyframes techPulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

/* World Map High-Light Nodes */
.about-bg-decor::before,
.about-bg-decor::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 25px var(--primary), 0 0 50px var(--primary);
    animation: globeLight 4s infinite ease-in-out;
}

.about-bg-decor::before {
    top: 40%;
    left: 30%;
    animation-delay: 0s;
}

.about-bg-decor::after {
    top: 60%;
    right: 35%;
    animation-delay: 2s;
}

@keyframes globeLight {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
        filter: brightness(1);
    }

    50% {
        transform: scale(1.8);
        opacity: 1;
        filter: brightness(1.5);
    }
}

@keyframes nodeGlow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.title-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

/* Description column */
.about-description-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: 20px;
}

.about-description-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

/* Features Grid Column */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Premium Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    filter: blur(40px);
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 204, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.glass-card:hover .card-glow {
    opacity: 0.1;
}

.glass-card .card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.glass-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.glass-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered grid animation */
.about-features-grid [data-animate]:nth-child(1) {
    transition-delay: 0.1s;
}

.about-features-grid [data-animate]:nth-child(2) {
    transition-delay: 0.2s;
}

.about-features-grid [data-animate]:nth-child(3) {
    transition-delay: 0.3s;
}

.about-features-grid [data-animate]:nth-child(4) {
    transition-delay: 0.4s;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .about-section {
        padding: 5rem 5%;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Premium Footer Styling */
footer {
    background: transparent;
    color: #fff;
    padding: 1rem 0 0;
    /* Very reduced padding */
    border-top: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    /* subtle blur if over content */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    /* Adjusted for removed column */
    gap: 2rem;
    /* Reduced gap */
    align-items: center;
    /* Vertically center items */
}

.footer-col h3 {
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-identity .footer-logo img {
    height: 35px;
    filter: brightness(0) invert(1);
    margin-bottom: 0.5rem;
}

.footer-address {
    color: #888;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    font-size: 0.75rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
}

.footer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.footer-value {
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    transition: var(--transition);
}

a.footer-value:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-nav {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    /* Horizontal navigation for compactness */
    gap: 15px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.footer-nav a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.qr-code-wrapper {
    background: #fff;
    padding: 12px;
    border-radius: 15px;
    display: inline-block;
}

.qr-img {
    display: block;
    width: 130px;
    height: 130px;
}

/* Professional Barcode */
.footer-assurance-text {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 250px;
}

.footer-assurance-text strong {
    color: #fff;
    font-weight: 500;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.3);
    border-radius: 5px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-badge i {
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 1rem;
    padding: 1rem 0;
    text-align: center;
    border-top: none;
    background: transparent;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav a:hover {
        padding-left: 0;
    }

    .footer-contact-item {
        align-items: center;
    }
}