/* HOME PAGE */

/* ===========================
   BANNER
=========================== */
#hero3d {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
}

#hero3d canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.banner-btn {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    #hero3d {
        height: 50vh;
    }
}

/* ===========================
   AWARDS
=========================== */
#home-awards {
    padding:60px 8%;
margin-top:-70px;
position:relative;
z-index:5;
}

.awards-container {
display:grid;
grid-template-columns:repeat(4,1fr);
text-align:center;
gap:0;

/* better glass */
background:rgba(255,255,255,0.18);
backdrop-filter:blur(25px);
-webkit-backdrop-filter:blur(25px);

border:1px solid rgba(255,255,255,0.35);
border-radius:30px;

box-shadow:0 20px 50px rgba(0,0,0,0.12);

overflow:hidden;
}

/* Dividers between award items */
.award-item {
    padding: 40px 20px;
    border-right:1px solid rgba(0,0,0,0.08);
}

.award-item:last-child {
    border-right: none;
}

.award-item h2 {
    color: #14532D;
    margin-bottom: 8px;
}

.award-item p {
    color: #4B5563;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .awards-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Dividers for 2-column layout */
    .award-item {
        border-right: 1px solid rgba(0, 0, 0, 0.07);
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    }

    .award-item:nth-child(2n) {
        border-right: none;
    }

    .award-item:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    #home-awards {
        padding: 30px 5%;
    }

    .awards-container {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 20px;
    }

    .award-item {
        padding: 24px 12px;
    }

    .award-item h2 {
        font-size: 22px;
    }

    .award-item p {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
}

/* ===========================
   INFO / INFRASTRUCTURE
=========================== */
#infrastructure-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 100px 8%;
    background: #f5f7f6;
}

.info-img-section img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
}

.info-content-section {
    max-width: 600px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(22, 101, 52, 0.1);
    color: #166534;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-content-section h2 {
    font-size: 48px;
    color: #14532d;
    margin-bottom: 20px;
}

.info-content-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 40px;
}

.info-category-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.info-button {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 30px;
    background: white;
    border: 1px solid #e5e7eb;
    font-size: 14px;
    font-weight: 600;
    color: #14532d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-button:hover {
    background: #166534;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .inf-img {
        height: 320px !important;
    }
}

@media (max-width: 992px) {
    #infrastructure-services {
        flex-direction: column;
        text-align: center;
    }

    .info-content-section h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .inf-img {
        height: 320px !important;
    }

    .info-img-section img {
        max-width: 400px;
    }
}

/* ===========================
   HOME VERTICALS / CARDS
=========================== */
#home-verticals {
    padding: 100px 8%;
    background: #f3f6f4;
    text-align: center;
}

#home-verticals h2 {
    margin-bottom: 10px;
}

#home-verticals p {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.vertical-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.vertical-img {
    position: relative;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.vertical-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.vertical-img::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(
        to top,
        rgba(22, 101, 52, 0.65),
        rgba(22, 101, 52, 0.35),
        rgba(22, 101, 52, 0)
    );
    pointer-events: none;
}

.category-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 30px;
    background: #21C45D;
    color: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.vertical-content {
    padding: 30px;
    text-align: left;
}

.vertical-content h3 {
    margin-bottom: 12px;
}

.vertical-content p {
    margin-bottom: 20px;
    font-size: 15px;
}

.explore-link {
    font-weight: 600;
    color: #21C45D;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.explore-link:hover {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    #home-verticals {
        padding: 80px 6%;
    }

    .verticals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .vertical-img img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    #home-verticals {
        padding: 60px 5%;
    }

    .container {
        padding: 30px !important;
        border-radius: 20px;
    }

    .verticals-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vertical-img img {
        height: 200px;
    }

    .vertical-content {
        padding: 20px;
    }

    #home-verticals p {
        margin-bottom: 40px;
    }
}

/* ===========================
   HOME CTA
=========================== */
#home-cta {
    background: #17663F;
    padding: 100px 20px;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

#home-cta h2 {
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-highlight {
    color: #32D07D;
}

#home-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 30px;
    background: #E5E7E6;
    color: #17663F;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
}