﻿:root {
    --brand-red: #D32F2F;
    --dark-gray: #2E2E2E;
    --light-bg: #F5F6F7;
}


.home-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    padding: 40px 20px;
}

    .home-hero .container {
        width: 100%;
        max-width: 1200px;
    }

.hero-text {
    width: 100%;
    margin: 0 auto;
}

    .hero-text h1 {
        font-size: 48px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-text p {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

/* Button Styling */
.premium-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 15px;
    }
}
/* ================= RESET ================= */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.site-header .header-inner nav a {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.site-footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/*.infra-machinery-section .infra-table-wrapper .infra-table table td {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}*/
hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: 5 !important;
}
body {
    margin: 0;
    font-family: "Georgia", serif;
    color: var(--dark-gray);
    background: #fff;
    transform: translateX(40px);
    opacity: 0;
    /*transition: all 0.8s ease;*/
}

    body.page-loaded {
        transform: translateX(0);
        opacity: 4;
    }

    body.page-exit {
        transform: translateX(0px);
        opacity: 4;
    }

/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    height: 78px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    z-index: 1000;
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ================= LOGO ================= */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* BIGGER LOGO */
.logo img {
    height: 56px; /* increased size */
    width: auto;
    display: block;
}

/* REMOVE TEXT LOGO COMPLETELY */
.logo span {
    display: none;
}

/* ================= NAV ================= */
.main-nav {
    display: flex;
    align-items: center;
}

    /* BIGGER & STRONGER NAV */
    .main-nav a {
        margin-left: 30px;
        text-decoration: none;
        color: var(--dark-gray);
        font-weight: 600;
        font-size: 17px; /* increased */
        position: relative;
    }

        .main-nav a:hover {
            color: var(--brand-red);
        }

        .main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: var(--brand-red);
            transition: width 0.3s ease;
        }

        .main-nav a:hover::after {
            width: 100%;
        }

/* ================= MOBILE MENU ================= */
.menu-icon {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

#menu-toggle {
    display: none;
}

/* ================= HERO ================= */
/* ================= HERO HEIGHT REDUCE ================= */




/* ================= SECTIONS ================= */
.section {
    padding: 80px 0;
}

    .section.light {
        background: var(--light-bg);
    }

    .section h2 {
        font-size: 28px;
        margin-bottom: 15px;
        color: var(--brand-red);
    }

/* ================= PAGE CONTENT ================= */
.page-content {
    padding: 40px 0 60px;
    line-height: 1.8;
}

    .page-content h2 {
        font-size: 26px;
        margin-top: 40px;
        margin-bottom: 10px;
        color: var(--brand-red);
    }

    .page-content p {
        margin-bottom: 18px;
        max-width: 880px;
    }
/* ================= PROJECTS ================= */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    align-items: stretch;
}

.project-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #ddd;
    align-items: center; 
    text-align: center;
    border-top: 4px solid var(--brand-red);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .project-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    /*.project-card h3 {
        text-align: left !important;
        font-size: 20px;
        min-height: 60px;*/ /* Adjust if needed */
        /*display: flex;
        align-items: center;
    }

    .project-card p {
        text-align: left !important;
        font-size: 20px;
        margin-top: 10px;
        flex-grow: 1;
    }*/
/* ================= CONTACT ================= */
.contact-single {
    display: flex;
    justify-content: center;
}

.contact-info {
    background: var(--light-bg);
    padding: 40px;
    border-left: 5px solid var(--brand-red);
    max-width: 500px;
}
/* ================= GALLERY ================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: auto;
}

.gallery-item {
    overflow: hidden;
    border: 1px solid #ddd;
}

    .gallery-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }







/* =====================================================
   INFRASTRUCTURE & MACHINERY SECTION
===================================================== */

.infra-machinery-section {
    padding: 25px 0;
    background: #f4f4f4;
}

    .infra-machinery-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
        color: var(--brand-red);
    }


.infra-intro h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.infra-intro p {
    max-width: 800px;
    margin-bottom: 40px;
    color: #444;
}

/* TABLE LAYOUT */
.infra-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

    .infra-table table {
        width: 100%;
        border-collapse: collapse;
        background: #fff;
        font-size: 14px;
    }

    .infra-table th {
        background: #e9ecef;
        text-align: left;
        padding: 10px;
        font-weight: 600;
        border: 1px solid #ccc;
    }

    .infra-table td {
        padding: 8px 10px;
        border: 1px solid #ccc;
    }

.infra-footer {
    margin-top: 40px;
    font-size: 16px;
    color: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .infra-table {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   LABORATORY EQUIPMENT SECTION
===================================================== */

.laboratory-section {
    padding: 20px 0;
    background: #ffffff;
}

    .laboratory-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
        color: var(--brand-red);
    }

.lab-intro h3 {
    text-align: center;
    font-size: 25px;
    margin-bottom: 10px;
}

.lab-intro p {
    max-width: 900px;
    margin-bottom: 40px;
    color: #444;
    line-height: 1.6;
}

/* TABLE */
.lab-table-wrapper {
    margin-bottom: 50px;
}

    .lab-table-wrapper table {
        width: 100%;
        border-collapse: collapse;
        font-size: 14px;
    }

    .lab-table-wrapper th {
        background: #e9ecef;
        text-align: left;
        padding: 10px;
        font-weight: 600;
        border: 1px solid #ccc;
    }

    .lab-table-wrapper td {
        padding: 8px 10px;
        border: 1px solid #ccc;
    }

/* PURPOSE */
.lab-purpose {
    margin-bottom: 40px;
}



    .lab-purpose ul {
        list-style: none;
        padding-left: 0;
    }

    .lab-purpose li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
    }

        .lab-purpose li::before {
            content: "▶";
            position: absolute;
            left: 0;
            margin-top: 7px;
            color: #d62828;
            font-size: 12px;
        }

/* COMMITMENT */


.lab-commitment p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* NOTE */
.lab-note {
    font-size: 18px;
    color: #555;
    background: #f4f4f4;
    padding: 15px 20px;
    border-left: 4px solid #d62828;
}

/* ================= FOOTER ================= */
.site-footer {
    background: var(--light-bg);
    padding: 35px 35px;
    margin-top: 0px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .site-header {
        height: 64px;
    }

    .logo img {
        height: 42px;
    }

    .menu-icon {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 64px;
        right: 0;
        background: #fff;
        padding: 20px;
        border: 1px solid #ddd;
        flex-direction: column;
        width: 220px;
    }

        .main-nav a {
            margin: 10px 0;
            font-size: 16px;
        }

    #menu-toggle:checked + .menu-icon + .main-nav {
        display: flex;
    }







    /* ======================================================
   HERO — NO STRETCH FIX (PRODUCTION SAFE)
   ====================================================== */


    .page-hero {
        position: relative;
        height: 65vh; /* Desktop banner height */
        min-height: 420px; /* Prevent too small on small screens */
        max-height: 720px; /* Prevent too tall on large screens */

        display: flex;
        align-items: center;
        /* IMAGE BEHAVIOUR */
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
    }
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.35), rgba(0,0,0,0.6) );
    z-index: 1;
}

.page-hero .hero-text {
    position: relative;
    z-index: 2;
}


.page-hero h1 {
    font-size: 32px;
}


/* =========================================================
   FORCE LOGO VISIBILITY & SCALE (SAFE OVERRIDE)
   ========================================================= */

/* Increase header vertical space */
.site-header {
    height: 110px;
    padding: 20px 0;
}

.logo img {
    height: 90px !important; /* 🔥 BIG & CLEAR */
    max-height: 90px;
    width: auto;
}

/* Center logo vertically */
.logo a {
    display: flex;
    align-items: center;
}

/* Hide text span safely */
.logo span {
    display: none;
}

/* Slightly stronger navigation */
.main-nav a {
    font-size: 18px;
    font-weight: 600;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .site-header {
        height: 80px;
    }

    .logo img {
        height: 60px !important;
    }

    /*.page-hero,
    .page-header {
        margin-top: 80px;
    }*/

    .main-nav a {
        font-size: 16px;
    }
}

/* =========================================================
   FORCE LOGO VISIBILITY & SCALE (SAFE OVERRIDE)
   ========================================================= */

/* Increase header vertical space */
.site-header {
    height: 110px;
    padding: 20px 0;
}

/* Push content correctly below header */
/*.page-hero,
.page-header {
    margin-top: 110px;
}*/

/* FORCE logo size */
.logo img {
    height: 90px !important; /* 🔥 BIG & CLEAR */
    max-height: 90px;
    width: auto;
}

/* Center logo vertically */
.logo a {
    display: flex;
    align-items: center;
}

/* Hide text span safely */
.logo span {
    display: none;
}

/* Slightly stronger navigation */
.main-nav a {
    font-size: 18px;
    font-weight: 600;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .site-header {
        height: 80px;
    }

    .logo img {
        height: 60px !important;
    }

    /*.page-hero,
    .page-header {
        margin-top: 80px;
    }*/

    .main-nav a {
        font-size: 16px;
    }
}

/* =========================================================
   FINAL LOGO FORCE FIX (NO LAYOUT BREAK)
   ========================================================= */

/* Header height increased */
.site-header {
    height: 120px;
    padding: 10px 0;
}

/* Push content below header */
/*.page-hero,
.page-header {
    margin-top: 120px;
}*/

/* REMOVE any accidental constraints */
.logo,
.logo a {
    height: 100%;
    display: flex;
    align-items: center;
}

    /* FORCE logo size */
    .logo img {
        height: 100px !important; /* 🔥 VISIBLY LARGE */
        max-height: 100px;
        width: auto;
        display: block;
    }

    /* Hide text safely */
    .logo span {
        display: none;
    }

/* Improve nav balance */
.main-nav a {
    font-size: 18px;
    font-weight: 600;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .site-header {
        height: 90px;
    }

    /*.page-hero,
    .page-header {
        margin-top: 90px;
    }*/

    .logo img {
        height: 65px !important;
    }

    .main-nav a {
        font-size: 16px;
    }
}
/* ======================================================
   PREMIUM CINEMATIC HERO
   ====================================================== */

.page-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    /* Cinematic Zoom Layer */
    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: inherit;
        background-size: cover;
        background-position: center;
        transform: scale(1.12);
        animation: heroZoom 18s ease-out forwards;
        z-index: 0;
    }

    /* Dark Premium Overlay */
    .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.35), rgba(0,0,0,0.65) );
        z-index: 1;
    }

    /* Hero Content */
    .page-hero .hero-text {
        position: relative;
        z-index: 2;
        color: white;
        max-width: 850px;
        animation: heroFadeUp 1.4s ease forwards;
    }

    /* Big Premium Heading */
    .page-hero h1 {
        font-size: 60px;
        line-height: 1.15;
        margin-top: -100px;
        margin-bottom: 24px;
        font-weight: 700;
        letter-spacing: -0.5px;
    }



/* ================= ANIMATIONS ================= */

@keyframes heroZoom {
    from {
        transform: scale(1.18);
    }

    to {
        transform: scale(1.05);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .page-hero {
        aspect-ratio: 4 / 5;
        min-height: 420px;
        max-height: 600px;
    }


        .page-hero h1 {
            font-size: 34px;
        }

        .page-hero p {
            font-size: 16px;
        }
}
/* Ultra wide monitors */
@media (min-width: 1600px) {
    .page-hero {
        max-height: 650px;
    }
}

/* ==================================================
   LUXURY REAL ESTATE HERO PRO
   Cinematic Builder Style (Ultra Premium)
   ================================================== */

.page-hero {
    position: relative;
    width: 100%;
    /* CINEMATIC STRIP LOOK */
    aspect-ratio: 21 / 8;
    min-height: 420px;
    max-height: 620px;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

    /* ================= PREMIUM DARK GRADIENT ================= */

    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 35%, rgba(0,0,0,0.20) 60%, rgba(0,0,0,0.10) 100% );
        z-index: 1;
    }

    /* ================= CINEMATIC DEPTH OVERLAY ================= */

    .page-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient( circle at 75% 40%, rgba(0,0,0,0.15), transparent 60% );
        z-index: 1;
    }

    /* ================= HERO TEXT PREMIUM ================= */

    .page-hero .hero-text {
        position: relative;
        z-index: 2;
        max-width: 720px;
        padding: 40px 0;
    }

    .page-hero h1 {
        font-size: clamp(38px, 4vw, 64px);
        font-weight: 800;
        margin-top: -100px;
        line-height: 1.15;
        letter-spacing: -0.5px;
        text-shadow: 0 8px 25px rgba(0,0,0,.35);
    }



/* ================= CINEMATIC SLOW ZOOM (VERY PREMIUM) ================= */

.page-hero {
    animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {

    from {
        background-size: 105%;
    }

    to {
        background-size: 115%;
    }
}

/* ==================================================
   MOBILE OPTIMIZATION (VERY IMPORTANT)
   ================================================== */

@media (max-width: 992px) {

    .page-hero {
        aspect-ratio: auto;
        min-height: 420px;
        max-height: none;
        animation: none;
    }

        .page-hero::before {
            background: linear-gradient( 180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.25) 100% );
        }

        .page-hero .hero-text {
            max-width: 100%;
            padding: 20px 0;
        }
}
/* =====================================================
   FINAL STABLE HEADER + LOGO (NON BREAKING)
   ===================================================== */

.site-header {
    height: 95px;
}
/*
.page-header {
    margin-top: 95px;
}*/

/* Big but stable logo */
.logo img {
    height: 72px !important;
    max-height: 72px;
    width: auto;
}

/* Nav premium sizing */
.main-nav a {
    font-size: 17px;
    font-weight: 600;
}

/* Mobile header safe */
@media(max-width:768px) {
    .site-header {
        height: 70px;
    }

    /*.page-header {
        margin-top: 70px;
    }*/

    .logo img {
        height: 52px !important;
    }
}


/* =====================================================
   FINAL HERO (NO STRETCH + PREMIUM + THIN)
   ===================================================== */

.page-hero {
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}


    /* Premium overlay */
    .page-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,.65), rgba(0,0,0,.35), rgba(0,0,0,.15) );
        z-index: 1;
    }


/* Cinematic slow zoom (SAFE version) */
.page-hero {
    animation: heroZoomSoft 20s ease-in-out infinite alternate;
}

@keyframes heroZoomSoft {
    from {
        background-size: 105%;
    }

    to {
        background-size: 112%;
    }
}


/* Hero text safe */
.page-hero .hero-text {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

@media (max-width: 576px) {
    .page-hero {
        height: 100vh;
        min-height: 420px;
    }
}
/* Mobile hero safe */
@media(max-width:768px) {
    .page-hero {
        height: 100vh !important;
        min-height: 420px;
        animation: none;
    }
}
/* =====================================================
   ABOUT IDENTITY — IMAGE + CONTENT SECTION
   ===================================================== */

.about-identity-section {
    position: relative;
    padding: 120px 0;
    color: #222;
    /* 🔥 CHANGE IMAGE HERE */
    background-image: url('/images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
/* Soft white overlay for readability */
.about-identity-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.85) 45%, rgba(255,255,255,0.75) 100% );
    z-index: 1;
}

.about-identity-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: center;
}
/* LEFT SIDE SHAPES */
.about-identity-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.identity-shape {
    border: 2px solid var(--brand-red);
    border-radius: 60px;
    padding: 28px 24px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(4px);
}

    .identity-shape h3 {
        margin: 0;
        color: var(--brand-red);
        font-size: 22px;
        font-weight: 700;
    }
/* RIGHT CONTENT */
.about-identity-right {
    max-width: 720px;
}

    .about-identity-right p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 28px;
        color: #333;
    }

    .about-identity-right .brand {
        color: var(--brand-red);
        font-weight: 700;
    }
/* ================= MOBILE ================= */

@media (max-width: 992px) {

    .about-identity-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-identity-left {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .identity-shape {
        flex: 1 1 45%;
        text-align: center;
    }
}

@media (max-width: 600px) {

    .about-identity-section {
        padding: 80px 0;
    }

    .about-identity-right p {
        font-size: 16px;
    }

    .identity-shape {
        flex: 1 1 100%;
    }
}
/* =====================================================
   ULTRA PREMIUM ABOUT PAGE — BUILDER STYLE
   ===================================================== */
/* HERO STRIP */
.about-hero-strip {
    padding: 140px 0 80px;
    background: linear-gradient(180deg,#fafafa,#ffffff);
}

    .about-hero-strip h1 {
        font-size: clamp(36px,4vw,58px);
        font-weight: 800;
        letter-spacing: -1px;
    }

    .about-hero-strip p {
        max-width: 720px;
        font-size: 20px;
        opacity: .85;
        margin-top: 20px;
    }
/* WHO WE ARE PREMIUM */
.about-premium {
    padding: 100px 0;
    background: #fff;
}

.about-premium-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
}

.about-premium-left h2 {
    font-size: 40px;
    margin-bottom: 30px;
}

.about-premium-left p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 22px;
}

.about-premium-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-stat {
    border-left: 4px solid var(--brand-red);
    padding-left: 22px;
}

    .about-stat h3 {
        margin: 0;
        font-size: 26px;
    }

    .about-stat span {
        opacity: .7;
    }
/* VISION */
.about-vision {
    background: var(--light-bg);
    padding: 90px 0;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    border-top: 4px solid var(--brand-red);
}

    .vision-card h3 {
        margin-bottom: 15px;
    }
/* WHY */
.about-why {
    padding: 100px 0;
}

.center {
    text-align: center;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.why-card {
    padding: 30px;
    border: 1px solid #eee;
    transition: .3s;
}

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,.08);
    }

    .why-card h4 {
        margin-bottom: 12px;
    }
/* CTA */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(90deg,#111,#333);
    color: #fff;
    text-align: center;
}
/* MOBILE */
@media(max-width:992px) {

    .about-premium-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vision-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* ==================================================
   ABOUT HERO PARALLAX
   ================================================== */

.about-hero-parallax {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: url('/images/hero.jpg') center/cover fixed no-repeat;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.65), rgba(0,0,0,.35), rgba(0,0,0,.15) );
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}

    .about-hero-content h1 {
        font-size: clamp(42px,5vw,70px);
        font-weight: 800;
    }

    .about-hero-content h2 {
        font-size: clamp(28px,3vw,40px);
        opacity: .9;
    }

    .about-hero-content p {
        font-size: 20px;
        margin-top: 20px;
    }
/* ==================================================
   LUX WHO SECTION
   ================================================== */

.about-lux-section {
    padding: 120px 0;
}

.about-lux-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
}

.about-lux-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.about-lux-text p {
    font-size: 18px;
    line-height: 1.9;
}

.about-lux-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lux-card {
    background: #fff;
    padding: 40px;
    border-left: 4px solid var(--brand-red);
    box-shadow: 0 20px 40px rgba(0,0,0,.05);
}
/* ==================================================
   PARALLAX STRIP
   ================================================== */

.about-parallax-strip {
    padding: 140px 0;
    background: url('/images/hero.jpg') center/cover fixed no-repeat;
    color: #fff;
    text-align: center;
}

    .about-parallax-strip h2 {
        font-size: clamp(30px,3vw,46px);
    }
/* ==================================================
   WHY LUX
   ================================================== */
/* ==================================================
   ABOUT HERO PARALLAX
   ================================================== */
/* ================= BASE ================= */


.about-hero-parallax {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: url('/images/hero.jpg') center/cover fixed no-repeat;
    display: flex;
    align-items: center;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.65), rgba(0,0,0,.35), rgba(0,0,0,.15) );
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}

    .about-hero-content h1 {
        font-size: clamp(42px,5vw,70px);
        font-weight: 800;
    }

    .about-hero-content h2 {
        font-size: clamp(28px,3vw,40px);
        opacity: .9;
    }

    .about-hero-content p {
        font-size: 20px;
        margin-top: 20px;
    }
/* ==================================================
   LUX WHO SECTION
   ================================================== */

.about-lux-section {
    padding: 120px 0;
}

.about-lux-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 80px;
}

.about-lux-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.about-lux-text p {
    font-size: 18px;
    line-height: 1.9;
}

.about-lux-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lux-card {
    background: #fff;
    padding: 40px;
    border-left: 4px solid var(--brand-red);
    box-shadow: 0 20px 40px rgba(0,0,0,.05);
}
/* ==================================================
   PARALLAX STRIP
   ================================================== */

.about-parallax-strip {
    padding: 140px 0;
    background: url('/images/hero.jpg') center/cover fixed no-repeat;
    color: #fff;
    text-align: center;
}

    .about-parallax-strip h2 {
        font-size: clamp(30px,3vw,46px);
    }
/* ==================================================
   WHY LUX
   ================================================== */

.about-why-lux {
    padding: 120px 0;
    background: var(--light-bg);
}

.why-lux-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.why-lux-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    transition: .35s;
}

    .why-lux-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(0,0,0,.08);
    }
/* ==================================================
   CTA
   ================================================== */

.about-cta-lux {
    padding: 100px 0;
    background: linear-gradient(90deg,#111,#333);
    color: #fff;
}
/* ==================================================
   SCROLL REVEAL ANIMATION
   ================================================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(.2,.8,.2,1);
}

    .reveal.active {
        opacity: 1;
        transform: none;
    }

.delay-1 {
    transition-delay: .2s;
}

.delay-2 {
    transition-delay: .4s;
}

.delay-3 {
    transition-delay: .6s;
}
/* ==================================================
   MOBILE
   ================================================== */

@media(max-width:992px) {

    .about-lux-grid {
        grid-template-columns: 1fr;
    }

    .why-lux-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-hero-parallax {
        background-attachment: scroll;
    }

    .about-parallax-strip {
        background-attachment: scroll;
    }
}

@media(max-width:600px) {
    .why-lux-grid {
        grid-template-columns: 1fr;
    }
}
/* ======================================================
   FOUNDATION & VALUES (INDEX PREMIUM SECTION)
   ====================================================== */

.foundation-values-section {
    position: relative;
    padding: 0px 0 10px;
    overflow: hidden;
}
/* Background image layer */
.foundation-bg {
    position: absolute;
    inset: 0;
    background: url('/images/website-bg-images/Our-FoundationsAndValues.png') center bottom/cover no-repeat;
    opacity: .18;
}
/* Content */
.foundation-content {
    position: relative;
    z-index: 2;
}

    .foundation-content h5 {
        margin-top: 10px;
        text-align: center;
        color: var(--brand-red);
        letter-spacing: 1px;
        font-weight: 700;
        font-size: 34px;
        margin-bottom: 12px;
    }
/* Header */
.foundation-header {
    max-width: 750px;
    margin-bottom: 60px;
}

    .foundation-header h5 {
        color: var(--brand-red);
        letter-spacing: 1px;
        font-weight: 700;
        font-size: 34px;
        margin-bottom: 12px;
    }

    .foundation-header h2 {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .foundation-header p {
        font-size: 20px;
        line-height: 1.8;
    }
/* Title divider */
.values-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0 30px;
    text-align: center;
    flex-wrap: wrap;
}

    .values-title span {
        flex: 1;
        height: 2px;
        background: var(--brand-red);
        opacity: .6;
        max-width: 120px;
    }

    .values-title h3 {
        color: var(--brand-red);
        font-size: 26px;
        font-size: clamp(18px, 3vw, 28px);
        font-weight: 600;
        margin: 0;
        white-space: nowrap;
    }

@media (max-width: 768px) {

    .values-title {
        gap: 15px;
    }

        .values-title span {
            max-width: 80px;
        }

        .values-title h3 {
            white-space: normal;
        }
}
/* ===== Small Mobile ===== */
@media (max-width: 480px) {

    .values-title {
        flex-direction: column;
        gap: 10px;
    }

        .values-title span {
            width: 60px;
            flex: none;
        }
}
/* Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
    margin-bottom: 40px;
}
/* HEX CARD STYLE */
.value-hex {
    background: #808080;
    color: white;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    clip-path: polygon( 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50% );
    box-shadow: 0 8px 20px rgba(0,0,0,.08), inset 0 2px 6px rgba(255,255,255,.6);
    transition: .35s;
}

    .value-hex div {
        font-weight: 600;
        line-height: 1.5;
        padding: 20px;
    }
    /* Hover */
    .value-hex:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }
/* Footer */
.values-footer {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    max-width: 850px;
    margin: auto;
}
/* ================= MOBILE ================= */

@media(max-width:992px) {

    .values-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:600px) {

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .value-hex {
        height: 150px;
    }
}
/* ======================================================
   SERVICES PAGE PREMIUM STYLING
   ====================================================== */

.services-intro h5 {
    color: var(--brand-red);
    letter-spacing: 1px;
    font-weight: 700;
}

.services-intro h2 {
    font-size: 34px;
    margin: 10px 0 20px;
}

.services-intro p {
    max-width: 750px;
    font-size: 18px;
    line-height: 1.8;
}
/* SERVICES GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.service-card {
    background: #fff;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0,0,0,.15);
    }

    .service-card h3 {
        color: var(--brand-red);
        margin-bottom: 15px;
    }

    .service-card p {
        margin-bottom: 15px;
        line-height: 1.7;
    }

    .service-card ul {
        padding-left: 18px;
    }

    .service-card li {
        margin-bottom: 6px;
    }
/* PHILOSOPHY */
.services-philosophy h2 {
    margin-bottom: 40px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

    .philosophy-grid h4 {
        color: var(--brand-red);
        margin-bottom: 10px;
    }
/* MOBILE */
@media(max-width:768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   ULTRA PREMIUM SERVICES V2
   ===================================================== */

.services-positioning h5 {
    color: var(--brand-red);
    letter-spacing: 1px;
    font-weight: 700;
}

.services-positioning h2 {
    font-size: 36px;
    margin: 10px 0 20px;
}

.services-positioning p {
    max-width: 760px;
    font-size: 18px;
}
/* PREMIUM SERVICE CARDS */
.premium-services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}

.premium-service-card {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
    transition: .4s;
    position: relative;
    overflow: hidden;
}

    .premium-service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,.18);
    }

.service-number {
    font-size: 60px;
    font-weight: 800;
    color: rgba(211,47,47,.1);
    position: absolute;
    top: 10px;
    right: 20px;
}
/* TIMELINE */
.services-timeline h2 {
    margin-bottom: 40px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.timeline-item {
    padding: 25px;
    border-left: 4px solid var(--brand-red);
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

    .timeline-item span {
        font-weight: 700;
        color: var(--brand-red);
    }
/* WHY GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
}

    .why-grid h4 {
        color: var(--brand-red);
    }
/* CTA */
.services-cta {
    text-align: center;
}

.premium-btn {
    display: inline-block;
    background: var(--brand-red);
    color: #fff;
    padding: 16px 34px;
    border-radius: 40px;
    text-decoration: none;
    margin-top: 0px;
    font-weight: 600;
    transition: .3s;
}

    .premium-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(211,47,47,.35);
    }
/* MOBILE */
@media(max-width:768px) {

    .premium-services-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}
/* =================================================
   INFRASTRUCTURE & MACHINERY – ULTRA PREMIUM
   ================================================= */

.infra-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, #f6f8fb);
}
/* HEADER */
.infra-header {
    max-width: 820px;
    margin-bottom: 60px;
}

    .infra-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: var(--brand-red);
        margin-bottom: 18px;
    }

    .infra-header p {
        font-size: 18px;
        line-height: 1.7;
        color: #555;
    }
/* GRID */
.infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}
/* CARDS */
.infra-card {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    border: 1px solid #eee;
    box-shadow: 0 25px 50px rgba(0,0,0,.06);
    transition: all .35s ease;
}

    .infra-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 35px 70px rgba(0,0,0,.12);
    }

    .infra-card h3 {
        font-size: 22px;
        margin-bottom: 20px;
        color: var(--dark-gray);
    }
    /* LIST */
    .infra-card ul {
        padding-left: 18px;
    }

    .infra-card li {
        margin-bottom: 12px;
        line-height: 1.6;
    }
    /* HIGHLIGHT CARD (LAB) */
    .infra-card.highlight {
        border-top: 4px solid var(--brand-red);
        background: linear-gradient(180deg, #fff, #fff5f5);
    }
/* ================= MOBILE ================= */

@media (max-width: 992px) {
    .infra-grid {
        grid-template-columns: 1fr;
    }

    .infra-header h2 {
        font-size: 32px;
    }
}
/* =========================================
   GLOBAL SECTION SPACING OPTIMIZATION
   ========================================= */

.section {
    padding: 20px 0;
}
/* Reduce infra section spacing */
.infra-section {
    padding: 70px 0;
}
/* Remove double spacing when sections touch */
.section + .section {
    padding-top: 40px;
}
/* Reduce spacing after hero */
.page-hero + .section {
    padding-top: 50px;
}
/* Reduce spacing before CTA */
.services-cta {
    padding: 70px 0;
}
/* =====================================================
   PROJECTS — PREMIUM EPC STYLE
===================================================== */

.projects-header {
    max-width: 900px;
    margin-bottom: 40px;
}

    .projects-header h2 {
        color: var(--brand-red);
        font-size: 32px;
        margin-bottom: 15px;
    }

    .projects-header p {
        line-height: 1.7;
        color: #444;
    }
/* GRID */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
/* CARD */

.project-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: transform .35s ease, box-shadow .35s ease;
}

    .project-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        display: block;
    }
/* RED STRIP */

.project-strip {
    background: var(--brand-red);
    color: #fff;
    padding: 14px 16px;
}

    .project-strip h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .project-strip span {
        font-size: 13px;
        opacity: .95;
    }
/* HOVER */

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
/* MOBILE */

@media (max-width: 768px) {

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card img {
        height: 220px;
    }
}
/* =====================================================
   PROJECTS — ULTRA PREMIUM V2 (BUILDER GRADE UI)
===================================================== */

.projects-ultra {
    background: linear-gradient(180deg,#fff 0%, #f7f8fa 100%);
}
/* HEADER */

.projects-ultra-header {
    max-width: 850px;
    margin-bottom: 50px;
}

    .projects-ultra-header h2 {
        font-size: 35px;
        color: var(--brand-red);
        margin-bottom: 15px;
        letter-spacing: .5px;
    }

    .projects-ultra-header p {
        font-size: 20px !important;
        line-height: 1.7;
        color: #444;
    }
/* GRID */

.projects-ultra-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 32px;
}
/* CARD */

.project-ultra-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
    transition: transform .5s ease, box-shadow .5s ease;
}
    /* IMAGE */

    .project-ultra-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        transition: transform 1.2s ease;
    }
    /* HOVER ZOOM */

    .project-ultra-card:hover img {
        transform: scale(1.12);
    }
/* GLASS + RED STRIP OVERLAY */

.project-ultra-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 18px 20px;
    background: linear-gradient( to top, rgba(211,47,47,.95) 0%, rgba(211,47,47,.85) 45%, rgba(0,0,0,.4) 100% );
    color: white;
    backdrop-filter: blur(4px);
}
    /* TEXT */

    .project-ultra-overlay h4 {
        margin: 0 0 6px;
        font-size: 18px;
        font-weight: 600;
    }

    .project-ultra-overlay span {
        font-size: 14px;
        opacity: .95;
    }
/* CARD HOVER LIFT */

.project-ultra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0,0,0,.25);
}
/* MOBILE */

@media(max-width:768px) {

    .projects-ultra-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .project-ultra-card img {
        height: 230px;
    }

    .projects-ultra-header h2 {
        font-size: 26px;
    }
}
/* =========================================
   PROJECT PAGE — SPACE OPTIMIZATION FIX
   ========================================= */
/* Reduce first content block space */
.page-content {
    padding: 20px 0 25px; /* was 40 / 60 */
}
/* Reduce global section spacing ONLY for projects page */
.projects-ultra.section {
    padding: 40px 0 50px; /* was 80 */
}
/* Tighten header spacing */
.projects-ultra-header {
    margin-bottom: 25px; /* was 50 */
}
    /* Reduce paragraph spacing */
    .projects-ultra-header p {
        margin-bottom: 0;
    }
/* Grid spacing tighter */
.projects-ultra-grid {
    gap: 22px; /* was 32 */
}
/* Reduce first section paragraph gap */
.page-content p {
    margin-bottom: 18px;
}
/* Projects page top offset fix */
.page-content {
    padding-top: 140px;
}
/* ========================= */
/* PROJECTS PAGE RESPONSIVE */
/* ========================= */

.projects-ultra-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

    .projects-ultra-header h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .projects-ultra-header p {
        font-size: 20 px;
        line-height: 1.7;
    }
/* -------- FIRST GRID -------- */

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
/* -------- SECOND GRID -------- */

.projects-ultra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-ultra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .project-grid,
    .projects-ultra-grid {
        grid-template-columns: 1fr;
    }

    .projects-ultra-header h2 {
        font-size: 26px;
    }

    .projects-ultra-header p {
        font-size: 15px;
    }
}

.project-ultra-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

    .project-ultra-card img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
    }

.project-ultra-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
/* ========================= */
/* ARCHITECTURAL PREMIUM STYLE */
/* ========================= */

.architectural-projects {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 80px 0;
}


.arch-project {
    box-shadow: rgba(0, 0, 0, 1.15) 0px 30px 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}
    /* Reverse layout */
    .arch-project.reverse {
        flex-direction: row-reverse;
    }
/* IMAGE */
.arch-image {
    flex: 1;
    overflow: hidden;
    border: 8px solid #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

    .arch-image img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        transition: transform 0.8s ease;
    }
/* CONTENT */
.arch-content {
    flex: 1;
    padding: 40px;
    background: #111;
    color: #fff;
    position: relative;
}
    /* Red Accent Line */
    .arch-content::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: #c00000;
    }

    .arch-content h3 {
        font-size: 32px;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .arch-content p {
        font-size: 18px;
        margin-bottom: 10px;
        opacity: 0.85;
    }

    .arch-content span {
        font-size: 14px;
        letter-spacing: 1px;
        opacity: 0.7;
    }
/* Hover Effect */
.arch-project:hover img {
    transform: scale(1.08);
}

.arch-project:hover .arch-content {
    background: #1a1a1a;
}

@media (max-width: 992px) {

    .arch-project,
    .arch-project.reverse {
        flex-direction: column;
    }

    .arch-image img {
        height: 300px;
    }

    .arch-content {
        padding: 25px;
    }

        .arch-content h3 {
            font-size: 24px;
        }
}
/*                  Gallery Page               */
/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    .gallery-item:hover {
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }
/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

#caption {
    margin: 15px auto;
    text-align: center;
    color: #ccc;
    font-size: 1rem;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
