﻿@font-face {
    font-family: 'helvetica';
    src: url('../font/helvetica-255/helvetica.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'helvetica-bold';
    src: url('../font/helvetica-255/helvetica-bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --theme-color: #3498db;
    --secondary-color: #2ecc71;
    --theme-family: 'helvetica';
    --theme-family-bold: 'helvetica-bold';
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    overflow-x: hidden;
    background: #FFFFFF;
}

#page0 {
    padding: 40px 60px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
}

.left-section {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 25px;
}

.brand-title, .brand-subtitle, .brand-credit {
    font-size: 12px;
}
    .brand-title a {
        text-decoration: none;
        color: inherit;
    }

.main-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .main-menu a {
        text-decoration: none;
        color: black;
        font-size: 12px;        
    }

.sub-menu {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    opacity: 0;
    margin-top: 78px;
    margin-right: 850px;
    transform: translateX(-20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

    .sub-menu.active {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
        margin-top: 78px;
        margin-right: 850px;
    }

    .sub-menu a {
        text-decoration: none;
        color: black;
        font-size: 12px;
        letter-spacing: 1px;
        position: relative;
    }


#page1 {
    padding: 40px 60px;
}

/* Center Title Container */
.page1-center {
    position: absolute;
    top: 20%;
    text-align: center;
    width: 100%;
    color: white;
}

.page1-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 3px;
}

.page1-subtitle {
    font-size: 72px;
    margin-top: 10px;
    letter-spacing: 4px;
}

/* Bottom Left Navigation */
.page1-nav {
    position: absolute;
    bottom: 8%;
    left: 5%;
    color: white;
}

    .page1-nav a {
        display: block;
        font-size: 2.5vw;
        text-decoration: none;
        color: white;
        margin-top: 10px;
        letter-spacing: 2px;
    }

        .page1-nav a:hover {
            opacity: 0.7;
        }

/* Top right Navigation */
.page1-login {
    position: absolute;
    top: 4%;
    right: 4%;
    color: white;
}

    .page1-login a {
        display: block;
        font-size: 1.3vw;
        text-decoration: none;
        color: white;
        margin-top: 10px;
        letter-spacing: 2px;
    }

        .page1-login a:hover {
            opacity: 0.7;
        }


/* ===== PAGE 2: HERO ===== */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #FFFFFF;
}

    .hero img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.text-overlay {
    position: absolute;
    bottom: 80px;
    left: 80px;
    color: #FFFFFF;
    z-index: 10;
}

.main-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 40px;
}

.click-option {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

    .click-option:hover {
        opacity: 0.8;
    }

.click-label {
    font-size: 12px;
    font-weight: normal;
    margin-left: 10px;
}

/* ===== PAGE 3: THE SPACES ===== */
.spaces-section {
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
}

.spaces-row {
    display: flex;
    min-height: 70vh;
}

.spaces-left {
    /*   background: #D3D3D3; */
    width: 50%;
    display: flex;
    align-items: center;
    padding: 100px 80px;
}

.spaces-title {
    font-size: 48px;
    font-weight: bold;
    /*  color: #FFFFFF; */
    margin-bottom: 50px;
}

.spaces-list {
    font-size: 16px;
    font-weight: normal;
    /* color: #FFFFFF; */
}

    .spaces-list div {
        margin-bottom: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .spaces-list div:hover {
            opacity: 0.7;
        }

.spaces-right {
    width: 50%;
    position: relative;
}

    .spaces-right img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.spaces-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #FFFFFF;
    font-size: 13px;
    line-height: 1.8;
}

    .spaces-overlay div {
        margin-bottom: 3px;
    }

/* ===== DETAIL PAGES (WHITE PLATEAU, KITCHEN, etc.) ===== */
.detail-section {
    width: 100vw;
    min-height: 70vh;
    display: flex;
}

.detail-left {
    width: 50%;
    position: relative;
}

    .detail-left img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.detail-right {
    width: 40%;
    background: #FFFFFF;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.detail-subtitle {
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #666;
}

.detail-text {
    font-size: 12px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.detail-thumbs {
    display: flex;
    gap: 6px;
}

    .detail-thumbs img {
        width: 240px;
        height: 240px;
        object-fit: cover;
    }

/* ===== PAGE 9: INFRASTRUCTURES ===== */

.infra-section {
    padding: 70px 0 90px;
}

.infra-title {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: 2px;
    /*  color: #ffffff; */
    margin-bottom: 40px;
    text-transform: uppercase;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 38px;
    /* max-width: 1500px; */
    margin: 0 auto;
    padding: 0px 90px;
}

.infra-card {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

    .infra-card:hover {
        transform: none;
    }

.infra-card-top {
    display: flex;
    flex-direction: column;
}

.infra-image-holder {
    background: #e8e8e8;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .infra-image-holder img {
        max-width: 88%;
        max-height: 88%;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.85;
    }

.infra-image-holder-1 {
    background: #e1e1e1;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .infra-image-holder-1 img {
        max-width: 88%;
        max-height: 88%;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.85;
    }

.infra-image-holder-3 {
    background: #e8e8e8;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .infra-image-holder-3 img {
        max-width: 88%;
        max-height: 88%;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.85;
    }

.infra-label {
    margin-top: 14px;
    font-size: 13px;
    /* font-weight: 600; */
    letter-spacing: 1px;
    /*  color: #ffffff; */
    text-transform: uppercase;
    text-align: left;
}


.infra-page-link {
    font-size: 16px;
    font-weight: bold;
    color: #FF0000;
    text-align: center;
}

/* ===== DOME ANIMATION PAGES ===== */
.dome-page {
    width: 100vw;
    height: 100vh;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px;
}

.dome-content {
    max-width: 700px;
    color: #333;
}

.dome-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.dome-subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #666;
}

.dome-text {
    font-size: 12px;
    line-height: 1.8;
    color: #555;
}

/* ===== HISTORICAL BUILDING PAGE ===== */
.historical-page {
    width: 100vw;
    min-height: 100vh;
    background: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.historical-content {
    max-width: 800px;
    text-align: center;
}

.historical-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.historical-subtitle {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 10px;
    color: #666;
}

.historical-building {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 40px;
}

.historical-text {
    font-size: 13px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

/* ===== LOCATION PAGE ===== */
.location-page {
    width: 100vw;
    min-height: 100vh;
    background: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    text-align: center;
}

.location-content {
    color: #333;
}

.location-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
}

.location-address {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.location-transport {
    font-size: 16px;
    color: #666;
}

/* ===== FINAL OVERVIEW PAGE ===== */
.overview-page {
    width: 100vw;
    min-height: 100vh;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.overview-content {
    max-width: 1000px;
    text-align: center;
    color: #333;
}

.overview-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.overview-location {
    font-size: 16px;
    margin-bottom: 60px;
    color: #666;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    text-align: left;
}

.overview-item {
    font-size: 14px;
    color: #555;
}

/* ===== ANIMATION CLASSES ===== */
/* Initial hidden state */
.animate-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

    /* Visible state */
    .animate-section.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Staggered animation delays */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Image zoom animation */
.animate-img {
    opacity: 0;
    transform: scale(1.05);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

    .animate-img.visible {
        opacity: 1;
        transform: scale(1);
    }

/* Fade in from left */
.animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

    .animate-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

/* Fade in from right */
.animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

    .animate-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

/* Grid item animation */
.animate-grid-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

    .animate-grid-item.visible {
        opacity: 1;
        transform: translateY(0);
    }

.two-image-layout {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

    .two-image-layout .image-container {
        flex: 1;
        position: relative;
    }

    .two-image-layout img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

.dimension-text {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
}

.dimension-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dimension-item {
    background: #f5f5f5;
    padding: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.dimension-placeholder {
    font-size: 14px;
    font-weight: bold;
    color: #666;
}

/* Adjust the existing layout for this page */
#page12 .detail-left {
    width: 60%;
    display: flex;
    flex-direction: column;
}

#page12 .detail-right {
    width: 40%;
    padding: 60px;
}

/* ===== INFRA LED SECTION ===== */
.infra-led-section {
    width: 100vw;
    height: 100vh;
    display: flex;
}

/* LEFT COLUMN */
.infra-led-left {
    width: 50%;
    background: #ededed;
    display: flex;
    flex-direction: column;
}

.infra-led-plan,
.infra-led-console {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LEFT COLUMN */
.infra-led-left {
    width: 50%;
    height: 100vh; /* important */
    background: #ededed;
    display: flex;
    flex-direction: column;
}

/* FORCE EXACT HALF */
.infra-led-plan,
.infra-led-console {
    height: 50%; /* 🔥 exact 50% */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image sizing */
.infra-led-left img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}


.infra-led-content {
    padding: 300px 100px;
    max-width: 695px;
}

.infra-led-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.infra-led-subtitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
}

.infra-led-text {
    font-size: 13px;
    line-height: 1.8;
    color: #444;
}

/* RIGHT SIDE ALIGN TOP */
.infra-led-top-align {
    align-self: flex-start;
    padding-top: 234px;
}

/* Highlighted text block */
.infra-led-highlight {
    font-size: 13px;
    line-height: 1.8;
    color: #000;
    /* light blue highlight */
    /* padding: 14px 16px; */
    max-width: 520px;
    margin-bottom: 40px;
}

/* Thumbnails row */
.infra-led-thumbs {
    display: flex;
    gap: 24px;
}

    .infra-led-thumbs img {
        width: 160px;
        height: 160px;
        object-fit: cover;
    }
/* Right side small image */
.detail-side-image {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 180px;
}

    .detail-side-image img {
        position: relative;
        left: 15px;
        top: 4px;
        width: 100%;
        height: auto;
        opacity: 0.9;
    }

/* Make sure parent can position */
.detail-right {
    position: relative;
}
/* ICON SECTION EXACT MATCH */
#page27 .location-icons {
    margin-top: 35px;
    margin-left: 300px;
}

/* EACH ROW */
#page27 .icon-row {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

/* CIRCLES */
#page27 .circle {
    width: 34px;
    height: 34px;
    border: 1.5px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    margin-right: 10px;
}

/* TEXT NEXT TO CIRCLES */
#page27 .icon-text {
    margin-left: 12px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
}

/* MAIN SECTION */
.plan-section {
    display: flex;
    width: 100%;
    min-height: 100vh;
    padding: 70px 90px;
    box-sizing: border-box;
    background: #ffffff;
}

/* LEFT TEXT */
.plan-left {
    width: 35%;
    padding-top: 245px;
}

    .plan-left h2 {
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 1.4px;
        line-height: 1.4;
        margin-bottom: 30px;
        text-transform: uppercase;
    }

    /* BULLET LIST */
    .plan-left ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .plan-left ul li {
            font-size: 12.5px;
            letter-spacing: 1px;
            margin-bottom: 34px;
            position: relative;
            padding-left: 16px;
            text-transform: uppercase;
            color: #000;
        }

            /* DOT */
            .plan-left ul li::before {
                content: "•";
                position: absolute;
                left: 0;
                top: 0;
            }

/* RIGHT IMAGE */
.plan-right {
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

    .plan-right img {
        width: 100%;
        max-width: 820px;
        height: auto;
        opacity: 0.95;
    }


.text {
    margin-top: 70px;
    max-width: 880px;
    font-size: 12px;
    line-height: 1.2;
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


#contact-page {
    padding: 60px 0 0 60px;
    font-size: 13px;
    max-width: 900px;
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-row {
    display: flex;
    gap: 160px;
    margin-bottom: 100px;
}

    .contact-row.three {
        gap: 150px;
        margin-bottom: 20px;
    }

.contact-item {
    max-width: 220px;
}

    .contact-item strong {
        display: block;
    }

    .contact-item br {
        line-height: 1.8;
    }

.grid {
    display: grid;
    gap: 10px;
}

.grid-items-wrapper {
    position: absolute;
    background-color: transparent;
    top: 5px;
    left: 5px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

    .grid-item img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
    }

.image-wrapper .grid-items-wrapper {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-info {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%;
    padding: 9px 0px 10px 0px;
}

    .project-info h5 {
        margin: 5px 0;
        font-size: 11px;
        line-height: 12px;
    }

    .project-info p {
        margin: 0;
        font-size: 11px;
        color: #555;
        line-height: 14px;
    }

.custom-modal-dialog {
    max-width: 100vw !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cusome-modal-content {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    width: 80vw !important;
    pointer-events: auto !important;
    background-color: #fff !important;
    background-clip: padding-box !important;
    border: 1px solid rgba(0, 0, 0, .2) !important;
    border-radius: .3rem !important;
    outline: 0 !important;
}

/* 22 April 2025 */

.divDeleteProjectConfirmContent {
    font-size: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.divDeleteProjectConfirmInfoMessage {
    font-weight: 500;
    -webkit-font-smoothing: antialiased; /* For WebKit (Chrome, Safari) */
    -moz-osx-font-smoothing: grayscale; /* For macOS (Firefox, Safari) */
    text-rendering: optimizeLegibility; /* Hints better kerning & ligatures */
}

.divDeleteProjectCountContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    flex-direction: column;
}

.modal-backdrop {
    background: hsl(0deg 0% 71.02% / 60%);
}

.btn-dark {
    background-color: #666666 !important;
    border: none;
}

.btn-dark2 {
    background-color: #dfdddb !important;
    border: none;
}

.custom-x-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid black;
    background-color: white; /* Always white */
    position: absolute;
    top: 6px;
    right: 5px;
    z-index: 2;
    margin: 0;
    font-size: 20px;
    text-align: center;
    line-height: 18px;
    cursor: pointer;
}

    .custom-x-checkbox:checked::after {
        content: "X";
        color: black;
        font-weight: NORMAL;
        font-size: 16px;
        position: absolute;
        left: 5px;
        top: 0px;
        background-color: white !important;
    }

        .img-preview-box {
            width: 40px;
            height: 40px;
            object-fit: cover;
            border-radius: 4px;
            border: 1px solid #ddd;
            margin-left: 8px;
            float: right;
        }


        .project-container {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 40px;
        }

.image-container {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 11px;
}

    .image-container img {
        width: 90vh;
        height: 90vh;
        object-fit: cover;
    }


.project-description-inventory {
    font-size: 11px;
    color: #626262;
    margin: 10px 0;
    text-align: left;
    max-height: 70vh;
    overflow: auto;
}

        /* ===== RESPONSIVE ===== */

        @media (max-width: 480px) {
            .infra-grid {
                grid-template-columns: 1fr;
            }

            .infra-title {
                font-size: 32px;
            }
        }

        @media (max-width: 576px) {
            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {

            .two-image-layout {
                flex-direction: column;
            }

                .two-image-layout img {
                    height: 200px;
                }

            #page12 .detail-left,
            #page12 .detail-right {
                width: 100%;
            }

            .dimension-grid {
                grid-template-columns: 1fr;
            }

            .spaces-row,
            .detail-section {
                flex-direction: column;
            }

            .spaces-left,
            .spaces-right,
            .detail-left,
            .detail-right {
                width: 100%;
                min-height: 50vh;
            }

            .main-title {
                font-size: 32px;
            }

            .infra-title {
                font-size: 40px;
            }

            .infra-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .text-overlay {
                left: 40px;
                bottom: 40px;
            }

            .spaces-left {
                padding: 60px 40px;
            }

            .detail-right {
                padding: 60px 40px;
            }

            .overview-grid {
                grid-template-columns: 1fr;
            }

            .grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .project-title {
                font-size: 11px;
            }

            .project-description,
            .project-category,
            .family-tree {
                font-size: 11px;
            }

            .project-container {
                flex-direction: column;
                gap: 20px;
            }

            .image-container img {
                max-width: 90%;
                height: 70vh;
            }
        }

        @media (max-width: 992px) {
            .grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .infra-led-section {
                flex-direction: column;
                height: auto;
            }

            .infra-led-left,
            .infra-led-right {
                width: 100%;
            }

            .infra-led-content {
                padding: 60px 40px;
            }
        }

        @media (max-width: 1200px) {
            .infra-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .grid {
                grid-template-columns: repeat(6, 1fr);
            }

            .project-container {
                flex-direction: column;
                padding: 20px;
            }

            .image-container {
                max-width: 100%;
            }

                .image-container img {
                    width: 100%;
                    height: auto;
                }

            .content-container {
                max-width: 100%;
                text-align: center;
            }

            .project-title {
                font-size: 11px;
            }

            .project-description,
            .project-category,
            .family-tree {
                font-size: 11px;
            }
        }
    





