/* ==========================
   Discover Projects Section
========================== */


.project-section{
    opacity: 0.8;
    position: relative;
    min-height: 100vh;
    background: url('../images/HomePageSection/ProjectPageBannerCopy.jpg') center center/cover no-repeat;
}

.discover-projects{
    background: #F7F5F1;
    padding: 100px 0;
}

/* Subtitle */

.section-subtitle{
    display:inline-block;
    padding:8px 22px;
    background:#D4AF37;
    color:#fff;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* Heading */

.section-title{
    margin-top:20px;
    font-size:48px;
    font-weight:700;
    color:#0B4843;
}

/* Gold Line */

.title-line{
    width:80px;
    height:4px;
    background:#D4AF37;
    border-radius:20px;
    margin:20px auto 30px;
}

/* Description */

.section-description{
    max-width:820px;
    margin:0 auto 60px;
    color:#6B7280;
    font-size:18px;
    line-height:1.9;
}


/* ==========================
      Filter Tabs
========================== */

.project-tabs{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:60px;
}

.tab-btn{
    background:#fff;
    border:2px solid #D4AF37;
    color:#1C1C1C;
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;
    letter-spacing:1px;
    transition:.35s ease;
    cursor:pointer;
}

.tab-btn:hover{
    background:#D4AF37;
    color:#fff;
    transform:translateY(-3px);
}

.tab-btn.active{
    background:#1F4B43;
    color:#fff;
    border-color:#1F4B43;
}


/* ==========================
       Project Card
========================== */

.project-card{
    background:#fff;
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:.4s ease;
}

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* Image */

.project-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}

.project-card:hover img{
    transform:scale(1.08);
}


/* ==========================
      Status Badge
========================== */

.status-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#1F4B43;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}


/* ==========================
      Card Content
========================== */

.project-title{
    color:#0B4843;
    font-weight:700;
    margin-bottom:10px;
}

.project-location{
    color:#777;
    font-size:15px;
}

.project-info{
    margin-top:20px;
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
}

.info-item{
    display:flex;
    justify-content:space-between;
    padding:14px 0;
    border-bottom:1px dashed #ddd;
}

.info-item:last-child{
    border-bottom:none;
}

.info-item span{
    color:#777;
    font-size:14px;
}

.info-item strong{
    color:#1C1C1C;
    font-size:15px;
}


/* ==========================
      Explore Button
========================== */

/* .btn-project{
    width:100%;
    padding:14px;
    border-radius:50px;
    background:#1F4B43;
    color:#fff;
    font-weight:600;
    transition:.35s;
    border:none;
}

.btn-project:hover{
    background:#D4AF37;
    color:#fff;
} */


/* ==========================
      Responsive
========================== */

@media (max-width:768px){

    .discover-projects{
        padding:70px 0;
    }

    .section-title{
        font-size:34px;
    }

    .section-description{
        font-size:16px;
        padding:0 15px;
    }

    .project-tabs{
        gap:12px;
    }

    .tab-btn{
        width:100%;
        max-width:260px;
    }

}

/* Project card  */

/* Card */

.project-card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    background:#fff;
}

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* Image */

.project-card img{
    height:220px;
    width:100%;
    object-fit:cover;
    transition:.5s;
}

.project-card:hover img{
    transform:scale(1.05);
}

/* Badge */

.status-badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#1F4B43;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/* Category */

.project-category{
    display:inline-block;
    background:#F5E6BE;
    color:#8A6500;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
    margin-bottom:15px;
}

/* Title */

.project-title{
    font-size:24px;
    font-weight:700;
    color:#0B4843;
}

/* Location */

.project-location{
    color:#6B7280;
    margin-bottom:25px;
}

.project-location i{
    color:#1F4B43;
}

/* Details */

.project-details{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

/* Detail Box */

.detail-box{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px;
    background:#F8F8F8;
    border-radius:12px;
}

.detail-box i{
    font-size:22px;
    color:#1F4B43;
}

.detail-box small{
    display:block;
    color:#888;
    font-size:12px;
}

.detail-box h6{
    margin:0;
    font-size:15px;
    font-weight:700;
    color:#1F2937;
}

/* Button */

.btn-project{
    width:100%;
    margin-top:25px;
    background:#1F4B43;
    color:#fff;
    border-radius:50px;
    padding:12px;
    font-weight:600;
    transition:.3s;
}

.btn-project:hover{
    background:#D4AF37;
    color:#fff;
}