.projects-section {
    background: #f8fafc;
}

.projects-subtitle {
    color: #0071c1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.project-stat-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 18px;
    transition: .3s;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

.project-stat-card:hover {
    transform: translateY(-5px);
}

.project-stat-card h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0071c1;
    margin-bottom: 10px;
}

.project-stat-card p {
    margin: 0;
    color: #6c757d;
}

.project-filters li {
    display: inline-block;
    margin: 10px;
    padding: 12px 22px;
    border-radius: 50px;
    background: #fff;
    cursor: pointer;
    transition: .3s;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
}

.project-filters li.active,
.project-filters li:hover {
    background: #0071c1;
    color: #fff !important;
}

.modern-project-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: .4s;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0,0,0,.06);
}

.modern-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .6s;
}

.modern-project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.15)
    );
    opacity: 0;
    transition: .4s;
}

.modern-project-card:hover .project-overlay {
    opacity: 1;
}

.project-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-badges span {
    background: rgba(255,255,255,.18);
    color: #fff;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.project-category-badge{
    position:absolute;
    left:20px;
    bottom:20px;
    background:#0071c1;
    color:#fff;
    padding:10px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    z-index:2;
}

.project-view-btn:hover {
    background: #fff;
    color: #0071c1;
}

.project-content {
    padding: 30px;
}

.project-year-small{
    color:#0071c1;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.project-content h4 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #111;
}

.project-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.project-meta span {
    color: #6c757d;
    font-size: 14px;
}

.project-meta i {
    color: #0071c1;
    margin-right: 5px;
}

.project-content p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 0;
}

@media(max-width:768px){

    .project-content {
        padding: 22px;
    }

    .project-content h4 {
        font-size: 22px;
    }

    .project-image img {
        height: 260px;
    }

}
/* =========================
   VIDEO SECTION
========================= */

.video-showcase-section{
    background:#f8fafc;
}

.video-box{
    position:relative;
    overflow:hidden;
    border-radius:28px;
    height:520px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
    background:#000;
}

.showcase-video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    position:relative;
    z-index:1;
}

.video-content{
    position:absolute;
    inset:0;

    z-index:5;

    cursor:pointer;
    transition:.3s;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.35),
        rgba(0,0,0,.05)
    );

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    padding:40px;
    color:#fff;
}

.video-play-btn{
    position:absolute;
    top:50%;
    left:50%;

    transform:translate(-50%, -50%);

    width:90px;
    height:90px;

    border-radius:50%;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    display:flex;
    align-items:center;
    justify-content:center;

    border:2px solid rgba(255,255,255,.4);

    transition:.3s;
}

.video-play-btn i{
    color:#fff;
    font-size:28px;
    margin-left:5px;
}

.video-box:hover .video-play-btn{
    transform:translate(-50%, -50%) scale(1.08);
    background:rgba(0,113,193,.85);
}

.video-content span{
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
    opacity:.9;
}

.video-content h3{
    font-size:34px;
    font-weight:800;
    line-height:1.2;
    margin:0;
    color:#fff;
}

@media(max-width:768px){

    .video-box{
        height:340px;
    }

    .video-content{
        padding:25px;
    }

    .video-content h3{
        font-size:24px;
    }

    .video-play-btn{
        width:70px;
        height:70px;
    }

    .video-play-btn i{
        font-size:22px;
    }

}

.project-buttons{
    position:absolute;
    right:20px;
    bottom:20px;

    display:flex;
    gap:12px;

    z-index:5;
}

.project-view-btn,
.project-video-btn{

    width:58px;
    height:58px;

    border-radius:50%;

    background:#0071c1;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    transition:.3s;
}

.project-view-btn:hover,
.project-video-btn:hover{

    background:#fff;
    color:#0071c1;

    transform:scale(1.08);
}
.modal-backdrop{
    z-index:1040 !important;
}

.modal{
    z-index:1055 !important;
}
.btn-outline-light:hover{
    background:#fff;
    color:#0071c1 !important;
}