  .lightbox {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 56%);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
    }

    .lightbox img {
        max-width: 85%;
        max-height: 80%;
        border-radius: 10px;
    }

    .close {
        position: absolute;
        top: 80px;
        right: 40px;
        font-size: 40px;
        color: white;
        background: none;
        border: none;
        cursor: pointer;
    }

    .prev,
    .next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-size: 50px;
        color: white;
        background: none;
        border: none;
        cursor: pointer;
        padding: 10px;
    }

    .prev {
        left: 40px;
    }

    .next {
        right: 40px;
    }







    /* image section */
    .gallery-container-3-up {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 14px;
        cursor: pointer;
    }

    .gallery-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        transition: transform .4s ease;
    }

    /* large first image */

    .gallery-item:first-child {
        grid-column: 1 / span 2;
    }

    .gallery-item:first-child img {
        height: 270px;
    }

    /* overlay */

    .gallery-item .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(11, 60, 93, 0.75), transparent 60%);
        opacity: 0;
        transition: all .35s ease;
    }

    /* plus icon */
    .overlay-icon {
        position: absolute;
        bottom: 15px;
        right: 15px;

        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.55);

        display: flex;
        align-items: center;
        justify-content: center;

        color: #fff;
        font-size: 32px;
        line-height: 1;

        transform: scale(.6);
        transition: all .35s ease;
    }

    /* hover effects */

    .gallery-item:hover img {
        transform: scale(1.05);
    }

    .gallery-item:hover .overlay {
        opacity: 1;
    }

    .gallery-item:hover .overlay-icon {
        transform: scale(1);
    }

    /* 3rd section */
    .features {
        text-align: center;
        padding: 80px 10%;
        background: #f5f7fa;
    }

    .features h2 {
        font-size: 42px;
        color: #212529;
        margin-bottom: 15px;
    }

    .subtitle {
        color: #212529;
        font-size: 17px;
        text-align: center;
        margin-bottom: 60px;
    }

    .feature-container {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
        .feature-card {
        background: white;
        padding: 17px 35px;
        border-radius: 16px;
        width: 385px;
        border: 1px solid #e3e8ee;
        transition: all .35s ease;
        cursor: pointer;
    }

    .feature-card:hover {
        border: 2px solid #E8BD39;
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .icon {
        width: 70px;
        height: 70px;
        background: #39418a;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: all .35s ease;
    }

    .icon i {
        color: white;
        font-size: 26px;
    }

    .feature-card:hover .icon {
        background: #E8BD39;
        transform: rotate(10deg) scale(1.1);
    }

    .feature-card h3 {
        font-size: 22px;
        color: #212529;
        margin-bottom: 15px;
    }

    .feature-card p {
        font-size: 17px;
        color: #212529;
        line-height: 1.7;
    }


    /* 2ndsection */
    ol,
    ul {
        padding-left: 0px;
    }

    .section {
        max-width: 1200px;
        margin: auto;
        padding: 80px 20px;
        display: flex;
        gap: 60px;
        align-items: flex-start;
    }

    .left {
        flex: 1;
    }

    .right {
        flex: 1;
    }



    .desc {
        color: #212529;
        font-size: 17px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .list {
        list-style: none;
    }

    .list li {
        margin-bottom: 4px;
        font-size: 17px;
        color: #212529;
        display: flex;
        gap: 12px;
    }

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.check-icon {
    color: #E2B72B;
    font-size: 17px;
    margin-top: 4px;
}
    .image-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .image-grid img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 12px;
    }

    .image-grid .large {
        grid-column: 1 / span 2;
        height: 260px;
    }

    /* Remove the mobile grid change */
    @media (max-width:900px) {

        .section {
            flex-direction: column;
            gap: 40px;
        }

    }


    /* Mobile */

    @media (max-width:600px) {

        .section {
            padding: 50px 18px;
        }

        h1 {
            font-size: 30px;
        }

        .desc {
            font-size: 17px;
        }

        .list li {
            font-size: 17px;
        }


    }
    
    
    
    
/* banner */
.project-hero {
    position: relative;
    min-height: 74vh !important;
    background: url("bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    padding: 80px 20px;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 60, 90, 0.75);
}

/* hero content */
.hero-contentp {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 1000px;
    width: 100%;
    margin: auto;
    padding-top: 100px;
}

/* heading */
.hero-contentp h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    word-break: break-word;
}

/* info box */
.info-box {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 12px;
    padding: 25px 40px;
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

/* info item */
.info-item span {
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.info-item strong {
    display: block;
    font-size: 20px;
    margin-top: 6px;
}

.status1 {
    color: orange;
}

/* tablet */
@media (max-width: 992px) {

    .hero-contentp h1 {
        font-size: 42px !important;
    }

    .info-box {
        gap: 30px;
        padding: 20px;
    }
}

/* mobile */
@media (max-width: 768px) {

    .project-hero {
        min-height: 74vh;
        padding: 100px 20px 60px;
    }

    .hero-contentp h1 {
        font-size: 28px !important;
        margin-bottom: 25px;
    }

    .info-box {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px;
        width: 100%;
    }

    .info-item strong {
        font-size: 17px;
    }
}

/* extra small devices */
@media (max-width: 480px) {

    .hero-contentp h1 {
        font-size: 37px !important;
    }

    .info-item span {
        font-size: 13px;
    }

    .info-item strong {
        font-size: 16px;
    }
}


/*/imgsection*/
  .image-counter {
        position: absolute;
        top: 20px;
        left: 20px;
        color: #fff;
        font-size: 16px;
        background: rgba(0, 0, 0, 0.5);
        padding: 6px 12px;
        border-radius: 6px;
    }
