/* =========================
   PROJECT INFO / DESCRIPTION
========================= */

.page-title-two {
    position: relative;
    width: 100%;
    min-height: 285px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.page-title-two::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}

.page-title-two .container {
    position: relative;
    z-index: 2;
}

.page-title-two h1,
.page-title-two .bread-crumb li,
.page-title-two .bread-crumb li a {
    color: #fff;
}
.page-title-two .content-box {
    position: relative;
    padding: 90px 0px 90px 0px;
}
.page-title-two .content-box h1 {
    position: relative;
    display: block;
    font-size: 45px;
    line-height: 60px;
    font-weight: 700;
    color: #ffffff;
}
.description p {
    font-size: 20px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
}



.project-info {
    max-width: 1100px;
    line-height: 1.7;
    color: #333;
	padding-top:20px;
}

.project-info h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-info p {
    font-size: 20px;
    margin-bottom: 25px;
}

/* =========================
   VIDEO
========================= */
.project-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    overflow: hidden;
}

.project-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.container .project-video{
	padding:0px;
}

/* =========================
   PROJECT GALLERY WRAP
========================= */
.project-flex-wrap {
    padding: 20px 0 60px;
}

/* =========================
   GRID LAYOUT (MAIN PART)
========================= */
.project-slider {
    display: grid !important;
    grid-template-columns: 1.2fr 1.6fr 1.2fr;
    grid-auto-rows: 260px;
    gap: 20px;
    cursor: pointer;
}

/* IMAGE CARD */
.project-slide {
    overflow: hidden;
    border-radius: 6px;
    background: #000;
}

/* IMAGE */
.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* HOVER EFFECT */
.project-slide:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}



/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    user-select: none;
}

.lightbox-arrow.left { left: 30px; }
.lightbox-arrow.right { right: 30px; }

.lightbox-close {
    position: absolute;
    top: 124px;
    right: 25px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
}



/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .project-slider {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
}

@media (max-width: 767px) {
    .project-info p {
        font-size: 18px;
    }

    .project-slider {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
}
