

/* =========================================================
   1. GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

#about,
#products,
#projects,
#clients,
#contact {scroll-margin-top: 110px;}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #222;
    line-height: 1.6;
    background: #f6f6f6;
}

img,
video,
iframe {
    max-width: 100%;
}

.container {
    width: 94%;
    max-width: 1450px;
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.light {
    background: #f6f6f6;
}

.dark {
    background: #111;
    color: #fff;
}

.section-tag {
    display: inline-block;
    margin-bottom: 6px;
    color: #d91f26;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}


/* =========================================================
   2. HEADER / NAVIGATION
========================================================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 90px;
    padding: 10px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    width: auto;
    max-height: 72px;
}

nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    margin-left: 24px;
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.25s ease;
}

nav a:hover {
    color: #d91f26;
}


/* =========================================================
   3. HERO / BANNER
========================================================= */

.hero {
    position: relative;
    width: 100%;
	height: 600px;
	overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
    transition: opacity 0.6s ease-in-out;
}

/* Dark overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.20);

    z-index: 1;
}

/* Banner content */

.hero-content {
   position: relative;
    z-index: 2;

    width: 100%;
    text-align: center;
    color: #fff;

    padding: 20px;

}


.hero-content h1 {
    margin: 0 0 12px;

    font-size: clamp(32px, 3vw, 50px);
    line-height: 1.15;

    font-weight: 700;
}


.hero-content p {
    margin: 0 0 20px;

    font-size: 16px;
    font-weight: 400;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.hero::before {
    display: none !important;}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    padding-right: 6%;
}

.hero h1 {
    font-size: 46px;
    margin: 0 0 8px;
    max-width: 650px;
}

.hero p {
    margin: 0 0 18px;
    font-size: 17px;
}

.hero .btn {
    margin-top: 10px;
}

/* =========================================================
   MOBILE HERO
========================================================= */

@media (max-width: 768px) {

    .hero {
        height: 320px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }

}


/* =========================================================
   4. BUTTONS
========================================================= */

.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;

    border-radius: 6px;

    background: #d91f26;
    color: #fff;
    text-decoration: none;
    font-weight: 500;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.btn:hover {
    background: #b8171d;
    transform: translateY(-2px);
}


/* =========================================================
   5. ABOUT THS LIGHTING
========================================================= */

.about-section {
    padding: 90px 0;
    background: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}


/* About image */

.about-image {
    position: relative;
    min-height: 500px;
    overflow: hidden;

    border-radius: 18px;
    background: #f4f4f4;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

.about-image img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;

    padding: 18px 22px;

    border-left: 4px solid #d91f26;
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.about-badge strong {
    display: block;
    color: #d91f26;
    font-size: 24px;
    line-height: 1.2;
}

.about-badge span {
    display: block;
    margin-top: 4px;
    color: #555;
    font-size: 13px;
}


/* About content */

.about-content {
    padding: 10px 0;
}

.about-content h2,
.why-led-heading h2 {
    margin: 0 0 22px;
    color: #222;
    font-size: 42px;
    line-height: 1.2;
}

.about-content h2 span,
.why-led-heading h2 span {
    color: #d91f26;
}

.about-content p {
    margin: 0 0 16px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
}

.about-content .about-intro {
    color: #333;
    font-size: 18px;
}


/* About product list */

.about-products {
    margin-top: 30px;
}

.about-products h3 {
    margin: 0 0 18px;
    color: #222;
    font-size: 20px;
}

.about-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 25px;
}

.about-product {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-product span {
    width: 23px;
    height: 23px;
    min-width: 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #d91f26;
    color: #fff;

    font-size: 13px;
    font-weight: 700;
}

.about-product p {
    margin: 0;
    color: #333;
    font-size: 14px;
}


/* =========================================================
   6. WHY LED LIGHTING
========================================================= */

.why-led {
    margin-top: 100px;
    padding: 65px;

    border-radius: 20px;
    background: #f7f7f7;
}

.why-led-heading {
    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: 0 auto 50px;

    text-align: center;
}

.why-led-heading h2 {
   margin: 5px 0 16px;

    font-size: 44px;
    line-height: 1.2;

    font-weight: 700;
}

.why-led-heading p {
    max-width: 800px;
    margin: 0 auto;

    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

.benefits-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0,1fr));

    gap: 22px;
}

.benefit-card {
    position: relative;

    overflow: hidden;

    padding: 34px 24px;

    border: 1px solid #ececec;
    border-radius: 16px;

    background:
        rgba(255,255,255,0.92);

    text-align: center;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.05);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: #f0c0c2;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.benefit-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff1f1;
    color: #d91f26;

    font-size: 25px;
    font-weight: 700;
}

.benefit-card h3 {
    margin: 0 0 10px;
    color: #222;
    font-size: 18px;
}

.benefit-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   7. PRODUCTS
========================================================= */

.products-heading {
    max-width: 900px;
    margin: 0 auto 35px;
    text-align: center;
}

.products-heading .section-tag {
    display: inline-block;
    margin-bottom: 10px;
}

.products-heading h2 {
    margin: 8px 0 12px;
    font-size: 36px;
    line-height: 1.25;
    text-align: center;
}

.products-heading p {
    max-width: 800px;
    margin: 0 auto;

    color: #555;
    font-size: 16px;
    line-height: 1.7;

    text-align: center;
}

.grid {
    display: grid;
    width: 100%;
    gap: 22px;
}

.product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card {
    min-width: 0;
    border-radius: 14px;
    background: #fff;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

.product-card {
    min-height: 345px;
    padding: 20px 16px;

    display: flex;
    flex-direction: column;
    align-items: center;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.13);
}

.product-card h3 {
    position: relative;
    width: 100%;

    margin: 4px 0 18px;
    padding-bottom: 12px;

    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
}

.product-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 36px;
    height: 3px;

    border-radius: 3px;
    background: #d91f26;
}

.product-image {
    width: 100%;
    height: 235px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 8px;
    background: #fafafa;
}

.product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;

    transition: transform 0.3s ease;
}

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


/* =========================================================
   PROJECT GALLERY
========================================================= */

.projects-section {
    padding: 90px 0;
    background: #fff;
}

.projects-main-heading {
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: center;
}

.projects-main-heading h2 {
    margin: 10px 0 12px;
    font-size: 36px;
}

.projects-main-heading p {
    margin: 0;
    color: #666;
}


/* =========================================================
   THUMBNAIL GRID
========================================================= */

.project-image-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* Thumbnail Card */

.project-gallery-card {
    position: relative;

    height: 220px;

    overflow: hidden;

    border-radius: 14px;

    background: #111;

    cursor: pointer;

    box-shadow:
        0 6px 20px rgba(0,0,0,0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.project-gallery-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}


.project-gallery-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 14px 30px rgba(0,0,0,0.14);
}


.project-gallery-card:hover img {
    transform: scale(1.05);
}


/* Overlay */

.project-gallery-overlay {
    position: absolute;

    inset: 0;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding: 18px;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.62),
            rgba(0,0,0,0)
        );

    opacity: 0;

    transition:
        opacity 0.3s ease;
}


.project-gallery-card:hover
.project-gallery-overlay {
    opacity: 1;
}


.project-gallery-overlay span {
    color: #fff;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.project-lightbox {
    position: fixed;

    inset: 0;

    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 35px 80px;

    background: rgba(0,0,0,0.92);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.project-lightbox.show {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   LARGE IMAGE
========================================================= */

.project-lightbox-image-wrap {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 90vw;
    max-height: 86vh;
}


.project-lightbox-image-wrap img {
    display: block;

    max-width: 90vw;
    max-height: 86vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 10px;

    cursor: pointer;

    user-select: none;

    box-shadow:
        0 18px 60px rgba(0,0,0,0.55);

    transform: scale(0.96);

    transition:
        transform 0.25s ease,
        opacity 0.2s ease;
}


.project-lightbox.show
.project-lightbox-image-wrap img {
    transform: scale(1);
}


/* =========================================================
   CLOSE BUTTON
========================================================= */

.project-lightbox-close {
    position: absolute;

    top: 22px;
    right: 28px;

    width: 44px;
    height: 44px;

    z-index: 10;

    border: none;
    border-radius: 50%;

    background: #d91f26;

    color: #fff;

    font-size: 28px;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.project-lightbox-close:hover {
    background: #b8171d;
    transform: scale(1.08);
}


/* =========================================================
   LEFT / RIGHT ARROWS
========================================================= */

.project-lightbox-nav {
    position: absolute;

    top: 50%;

    z-index: 10;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    color: #fff;

    font-size: 38px;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.project-lightbox-prev {
    left: 25px;
}


.project-lightbox-next {
    right: 25px;
}


.project-lightbox-nav:hover {
    background: #d91f26;

    transform:
        translateY(-50%)
        scale(1.08);
}


/* =========================================================
   IMAGE COUNTER
========================================================= */

.project-image-counter {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    padding: 6px 14px;

    border-radius: 20px;

    background: rgba(0,0,0,0.55);

    color: #fff;

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 1px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .project-image-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .projects-section {
        padding: 60px 0;
    }

    .projects-main-heading h2 {
        font-size: 30px;
    }

    .project-image-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery-card {
        height: 230px;
    }

    .project-lightbox {
        padding: 25px 15px;
    }

    .project-lightbox-image-wrap img {
        max-width: 94vw;
        max-height: 78vh;
    }

    .project-lightbox-nav {
        width: 42px;
        height: 42px;

        font-size: 30px;
    }

    .project-lightbox-prev {
        left: 8px;
    }

    .project-lightbox-next {
        right: 8px;
    }

    .project-lightbox-close {
        top: 12px;
        right: 12px;

        width: 40px;
        height: 40px;
    }

}

/* Close button */

.project-lightbox-close {
    position: absolute;

    top: 22px;
    right: 28px;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: #d91f26;

    color: #fff;

    font-size: 28px;

    cursor: pointer;
}


/* Tablet */

@media (max-width: 900px) {

    .project-image-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* Mobile */

@media (max-width: 600px) {

    .projects-section {
        padding: 60px 0;
    }

    .projects-main-heading h2 {
        font-size: 30px;
    }

    .project-image-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery-card {
        height: 220px;
    }

}


/* =========================================================
   9. CLIENTS
========================================================= */

.clients-section {
    padding: 90px 0;
    background: #f7f7f7;
}

.clients-section .section-heading {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.clients-section .section-heading h2 {
    margin: 12px 0 10px;
    font-size: 34px;
}

.clients-section .section-heading p {
    margin: 0;
    color: #666;
}

.clients-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.client-card {
    min-height: 300px;
    padding: 30px 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    background: #fff;
    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.client-card h3 {
    width: 100%;
    margin: 0;

    color: #222;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

/* Prevent generic/product underline duplication */
.client-card h3::after {
    display: none;
}

.client-line {
    display: block;
    width: 42px;
    height: 3px;
    margin: 12px auto 24px;

    border-radius: 3px;
    background: #d91f26;
}

.client-logo {
    width: 100%;
    height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    display: block;

    width: auto;
    height: auto;

    max-width: 150px;
    max-height: 110px;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.client-card:hover .client-logo img {
    transform: scale(1.05);
}


/* =========================================================
   10. CONTACT / QUICK ENQUIRY
========================================================= */

.contact-section {
    position: relative;
    overflow: hidden;
    padding: 28px 0;
    background: #111;
    transition:
        background 0.5s ease,
        box-shadow 0.5s ease,
        filter 0.5s ease;
}

.contact-container {
    position: relative;
    z-index: 5;
    width: 94%;
    max-width: 1750px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr 0.95fr;
    gap: 45px;
    align-items: center;
}

/* ---------------- LEFT : IMAGE ---------------- */

.contact-image {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 355px;
    justify-self: end;
    overflow: hidden;
    border-radius: 16px;
    background: #222;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.contact-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.5s ease;
}

.contact-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.05)
        );
}

.contact-image-overlay {
    position: absolute;
    z-index: 2;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: #fff;
    text-align: center;
}

.contact-image-overlay h3 {
    margin: 0 0 6px;
    font-size: 25px;
    font-weight: 600;
}

.contact-image-overlay p {
    margin: 0 0 8px;
    font-size: 15px;
}

.contact-image-overlay span {
    display: inline-block;
    color: #e31e24;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------------- CENTER : CONTACT DETAILS ---------------- */

.contact-content {
    min-height: 355px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    text-align: left !important;
}

/* Prevent later/global styles from centering the contact column */
.contact-content > * {
    margin-left: 0;
    margin-right: 0;
}

.contact-content .section-tag {
    margin-bottom: 12px;
    text-align: left;
}

.contact-content h2 {
    margin: 0 0 25px;
    color: #fff;
    font-size: 32px;
    text-align: left;
}

.contact-name {
    margin: 0 0 18px;
    font-size: 17px;
    text-align: left;
}

.contact-item {
    margin: 0 0 15px;
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-item a:hover {
    color: #e31e24;
}

.contact-item.address {
    max-width: 420px;
    margin-top: 5px;
}

.contact-btn {
    width: fit-content;
    margin-top: 15px;
    padding: 11px 20px;
}

/* ---------------- RIGHT : ENQUIRY FORM ---------------- */

.enquiry-box {
    width: 100%;
    max-width: 520px;
    min-height: auto;
    padding: 18px 24px;
    justify-self: start;
    align-self: center;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
    color: #fff;
    transition:
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.enquiry-box .section-tag {
    margin-bottom: 4px;
}

.enquiry-box h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 26px;
    line-height: 1.2;
}

.whatsapp-enquiry {
    display: grid;
    gap: 7px;
}

.whatsapp-enquiry input,
.whatsapp-enquiry select,
.whatsapp-enquiry textarea {
    width: 100%;
    min-width: 0;
    padding: 10px 13px;
    border: 1px solid #ddd;
    border-radius: 7px;
    background: #fff;
    color: #222;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    line-height: 1.4;
    outline: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.whatsapp-enquiry input,
.whatsapp-enquiry select {
    min-height: 40px;
}

.whatsapp-enquiry textarea {
    min-height: 60px;
    max-height: 60px;
	padding: 8px 12px;
    font-size: 13px;
    
}

.whatsapp-enquiry input:focus,
.whatsapp-enquiry select:focus,
.whatsapp-enquiry textarea:focus {
    border-color: #d91f26;
    box-shadow: 0 0 0 2px rgba(217, 31, 38, 0.12);
}

.enquiry-btn {
    width: 100%;
    margin-top: 2px;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
}

/* Used later when a product card sends the visitor to the form */
.enquiry-box.enquiry-highlight {
    border-color: rgba(217, 31, 38, 0.85);
    box-shadow:
        0 0 0 3px rgba(217, 31, 38, 0.12),
        0 15px 45px rgba(217, 31, 38, 0.20);
}


/* =========================================================
   11. FOOTER
========================================================= */

footer {
    padding: 18px 20px;
    background: #000;
    color: #fff;
    text-align: center;
}


/* =========================================================
   12. FOOTER STREET LIGHT DESIGN
========================================================= */

/* Warm illumination over the complete contact section */
.contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 1;
    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(255, 225, 150, 0.22),
            transparent 38%
        ),
        radial-gradient(
            circle at 88% 15%,
            rgba(255, 225, 150, 0.22),
            transparent 38%
        ),
        linear-gradient(
            180deg,
            rgba(255, 240, 200, 0.08),
            rgba(255, 230, 170, 0.03)
        );
    mix-blend-mode: screen;
    transition: opacity 0.5s ease;
}

.footer-lighting {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    pointer-events: none;
    overflow: hidden;
}

/* ---------------- POLES ---------------- */

.footer-pole {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.footer-pole-left {
    left: -25px;
}

.footer-pole-right {
    right: -25px;
}

.footer-pole-image {
    position: absolute;
    bottom: 0;
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center bottom;
    z-index: 9;
    pointer-events: none;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.30));
    transition: filter 0.4s ease;
}

.footer-pole-left .footer-pole-image {
    left: 0;
}

.footer-pole-right .footer-pole-image {
    right: 0;
}

/* ---------------- LIGHT EFFECT ---------------- */

.footer-glow {
    position: absolute;
    top: 15px;
    width: 430px;
    height: 430px;
    z-index: 20;
    opacity: 0.42;
    filter: blur(20px);
    mix-blend-mode: screen;
    pointer-events: none;
    transition:
        opacity 0.5s ease,
        visibility 0.5s ease;
}

.footer-glow-left {
    left: 80px;
    background:
        radial-gradient(
            ellipse at 5% 5%,
            rgba(255, 225, 135, 0.65) 0%,
            rgba(255, 235, 170, 0.32) 28%,
            rgba(255, 245, 210, 0.12) 50%,
            rgba(255, 255, 255, 0) 75%
        );
    transform: rotate(-5deg);
    transform-origin: top left;
}

.footer-glow-right {
    right: 75px;
    background:
        radial-gradient(
            ellipse at 95% 5%,
            rgba(255, 225, 135, 0.65) 0%,
            rgba(255, 235, 170, 0.32) 28%,
            rgba(255, 245, 210, 0.12) 50%,
            rgba(255, 255, 255, 0) 75%
        );
    transform: rotate(5deg);
    transform-origin: top right;
}

/* ---------------- LIGHTS OFF ---------------- */

body.lights-off .contact-section::before {
    opacity: 0 !important;
}

body.lights-off .contact-section {
    background: #111;
}

body.lights-off .footer-glow {
    opacity: 0 !important;
    visibility: hidden;
}

body.lights-off .footer-pole-image {
    filter:
        brightness(0.65)
        saturate(0.65)
        drop-shadow(0 5px 10px rgba(0, 0, 0, 0.30));
}

body.lights-off .contact-image img {
    filter: brightness(1) saturate(1);
}

/* ---------------- LIGHTS ON ---------------- */

body:not(.lights-off) .contact-section {
    background: #151515;
    box-shadow:
        inset 0 20px 80px rgba(255, 220, 150, 0.05),
        inset 0 -20px 80px rgba(255, 220, 150, 0.04);
}

body:not(.lights-off) .footer-pole-image {
    filter:
        brightness(1)
        saturate(1)
        drop-shadow(0 5px 10px rgba(0, 0, 0, 0.30));
}

body:not(.lights-off) .contact-image img {
    filter: brightness(1.08) saturate(1.05);
}

/* ---------------- LIGHT SWITCH ---------------- */

.footer-light-switch {
    position: absolute;
    right: 120px;
    bottom: 20px;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 17px;
    border: none;
    border-radius: 30px;
    background: #d91f26;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.30);
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.footer-light-switch:hover {
    transform: translateY(-2px);
    background: #b8171d;
}

body.lights-off .footer-light-switch {
    background: #333;
}


/* =========================================================
   13. RESPONSIVE - LARGE / LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .footer-pole {
        width: 140px;
    }

    .footer-glow {
        width: 280px;
        height: 320px;
    }
}

@media (max-width: 1199px) {

    .container {
        width: 92%;
    }

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .clients-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-container {
        width: 94%;
    }

    .contact-grid {
        gap: 32px;
    }
}


/* =========================================================
   14. RESPONSIVE - TABLET
========================================================= */

@media (max-width: 900px) {

    .hero {
        height: 420px;
        min-height: 420px;
        max-height: 420px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-image {
        min-height: 400px;
    }

    .about-image img {
        height: 400px;
    }

    .about-content h2,
    .why-led-heading h2 {
        font-size: 36px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-section {
        padding: 35px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: center;
    }

    .contact-image {
        width: 100%;
        max-width: none;
        height: 380px;
        justify-self: stretch;
    }

    .contact-content {
        width: 100%;
        min-height: 380px;
        padding: 20px 10px;
        align-items: flex-start;
        text-align: left !important;
    }

    .enquiry-box {
        grid-column: 1 / -1;
        width: min(700px, 100%);
        max-width: 700px;
        justify-self: center;
        padding: 22px 26px;
    }

    .footer-pole {
        display: none;
    }

    .footer-glow {
        display: none;
    }

    .footer-light-switch {
        right: 15px;
        bottom: 15px;
    }
}


/* =========================================================
   15. RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 600px) {

    .container {
        width: 92%;
    }

    .section {
        padding: 60px 0;
    }

    .nav {
        flex-direction: column;
        gap: 8px;
        padding: 10px 0;
    }

    .logo img {
        max-height: 62px;
    }

    nav {
        justify-content: center;
    }

    nav a {
        margin: 4px 8px;
        font-size: 14px;
    }

    .hero {
        height: 360px;
        min-height: 360px;
        max-height: 360px;
    }

    .hero-bg {
        background-position: center center;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-image {
        min-height: 350px;
    }

    .about-image img {
        height: 350px;
    }

    .about-content h2,
    .why-led-heading h2 {
        font-size: 30px;
    }

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

    .why-led {
		position: relative;
        overflow: hidden;
        margin-top: 100px;
        padding: 70px 65px;
		border-radius: 24px;
		background:
        linear-gradient(
            135deg,
            #f8f8f8 0%,
            #ffffff 48%,
            #f3f3f3 100%
        );
		border: 1px solid #eeeeee;

    box-shadow:
        0 15px 45px rgba(0,0,0,0.05);
    }

    .benefits-grid,
    .product-grid,
    .projects-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 390px;
        padding: 22px;
    }

    .product-card h3 {
        font-size: 20px;
    }

    .product-image {
        height: 280px;
    }

    .projects-section,
    .clients-section {
        padding: 60px 0;
    }

    .project-media {
        height: 230px;
    }

    .client-card {
        min-height: 260px;
    }

    .contact-section {
        padding: 30px 0;
    }

    .contact-container {
        width: 92%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: stretch;
    }

    .contact-image {
        width: 100%;
        max-width: none;
        height: 330px;
        min-height: 0;
        justify-self: stretch;
    }

    .contact-image img {
        height: 100%;
        min-height: 0;
    }

    .contact-content {
        width: 100%;
        min-height: auto;
        padding: 20px 4px;
        align-items: flex-start;
        text-align: left !important;
    }

    .contact-content .section-tag,
    .contact-content h2,
    .contact-name,
    .contact-item {
        text-align: left;
    }

    .contact-item.address {
        max-width: 100%;
    }

    .enquiry-box {
        grid-column: auto;
        width: 100%;
        max-width: none;
        padding: 20px;
        justify-self: stretch;
    }

    .enquiry-box h2 {
        font-size: 26px;
    }

    .whatsapp-enquiry textarea {
        min-height: 80px;
        max-height: 100px;
    }

    footer {
        padding: 16px 15px;
        font-size: 13px;
    }
}


/* =========================================================
   16. VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero {
        height: 330px;
        min-height: 330px;
        max-height: 330px;
    }

    .about-image {
        min-height: 300px;
    }

    .about-image img {
        height: 300px;
    }

    .about-badge {
        left: 15px;
        bottom: 15px;
        padding: 14px 16px;
    }

    .about-badge strong {
        font-size: 20px;
    }

    .about-badge span {
        font-size: 11px;
    }

    .contact-image {
        height: 290px;
    }

    .contact-content h2 {
        font-size: 28px;
    }

    .enquiry-box {
        padding: 18px 16px;
    }

    .whatsapp-enquiry input,
    .whatsapp-enquiry select,
    .whatsapp-enquiry textarea {
        font-size: 13px;
    }
}

/* =========================================================
   BACK TO TOP BUTTON
========================================================= */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: #d91f26;
    color: #fff;

    font-family: "Poppins", sans-serif;
    font-size: 22px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transform: translateY(12px);

    box-shadow:
        0 6px 20px rgba(0,0,0,0.25);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #b8171d;
    transform: translateY(-3px);
}

.more-products-box {
    margin-top: 35px;
    padding: 24px 28px;

    text-align: center;

    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 6px 20px rgba(0,0,0,0.06);
}

.more-products-text {
    margin: 0 0 16px;

    color: #555;

    font-size: 15px;
    line-height: 1.7;
}

.more-products-actions {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 18px;
    flex-wrap: wrap;
}

.more-products-link {
    color: #d91f26;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.more-products-link:hover {
    text-decoration: underline;
}

/* =========================================================
   LATEST & TRENDING PRODUCTS
========================================================= */

.latest-products-section {
    margin-bottom: 45px;
}

.latest-products-heading {
    text-align: center;
    margin-bottom: 22px;
}

.latest-products-heading h3 {
    margin: 0;

    color: #222;

    font-size: 30px;
    font-weight: 700;

    line-height: 1.3;
}


/* Moving area */

.moving-products-window {
    width: 100%;

    overflow: hidden;

    padding: 10px 0;
}


/* Track */

.moving-products-track {
    display: flex;

    width: max-content;

    animation:
        latestProductsMove 24s linear infinite;
}


/* Pause on hover */

.moving-products-window:hover
.moving-products-track {
    animation-play-state: paused;
}


/* Group */

.moving-product-set {
    display: flex;
}


/* Product card */

.moving-product-card {
    width: 220px;
    height: 190px;

    margin-right: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 12px;

    background: #fff;

    border: 1px solid #eee;

    box-shadow:
        0 5px 18px rgba(0,0,0,0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.moving-product-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 25px rgba(0,0,0,0.12);
}


/* Image */

.moving-product-card img {
    width: 100%;
    height: 100%;

    padding: 10px;

    object-fit: contain;

    display: block;
}


/* Continuous animation */

@keyframes latestProductsMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* Tablet */

@media (max-width: 900px) {

    .moving-product-card {
        width: 195px;
        height: 170px;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .latest-products-heading h3 {
        font-size: 24px;
    }

    .moving-product-card {
        width: 165px;
        height: 145px;

        margin-right: 12px;
    }

    .moving-products-track {
        animation-duration: 18s;
    }

}

@media (max-width: 600px) {
    .back-to-top {
        right: 15px;
        bottom: 15px;

        width: 40px;
        height: 40px;

        font-size: 20px;
    }
}
