﻿/*=========================================================
                    GALLERY PAGE BANNER
=========================================================*/



   

/*=========================================================
                    INTRO
=========================================================*/

.gallery-intro {
    padding: 90px 0 60px;
    text-align: center;
}

    .gallery-intro h2 {
        color: #0d47a1;
        font-size: 46px;
        margin-bottom: 20px;
    }

    .gallery-intro p {
        max-width: 850px;
        margin: auto;
        color: #666;
        line-height: 1.9;
        font-size: 18px;
    }

/*=========================================================
                    FILTER BUTTONS
=========================================================*/

.gallery-filter {
    padding-bottom: 60px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

    .filter-buttons button {
        border: none;
        cursor: pointer;
        background: #edf2ff;
        color: #0d47a1;
        padding: 15px 35px;
        border-radius: 50px;
        font-size: 16px;
        font-weight: 600;
        transition: .35s;
    }

        .filter-buttons button:hover,
        .filter-buttons .active {
            background: #0d47a1;
            color: white;
        }

/*=========================================================
                    GALLERY GRID
=========================================================*/

.gallery-section {
    padding-bottom: 100px;
}

.gallery-grid {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.gallery-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .35s;
}

    .gallery-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

    .gallery-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        transition: .4s;
    }

    .gallery-card:hover img {
        transform: scale(1.08);
    }

.gallery-content {
    padding: 28px;
}

    .gallery-content h3 {
        color: #0d47a1;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .gallery-content p {
        color: #666;
        line-height: 1.8;
    }

/*=========================================================
                    PROJECT TAG
=========================================================*/

.project-tag {
    display: inline-block;
    background: #0d47a1;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 15px;
}
/*=========================================================
                    GALLERY STATISTICS
=========================================================*/

.gallery-stats {
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    color: #fff;
    padding: 90px 0;
}

.stats-grid {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    text-align: center;
}

.stat-box {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,.25);
}

    .stat-box:last-child {
        border-right: none;
    }

    .stat-box h2 {
        font-size: 60px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .stat-box p {
        color: #dfe8ff;
        font-size: 18px;
    }

/*=========================================================
                    FEATURED PROJECTS
=========================================================*/

.featured-projects {
    padding: 100px 0;
    background: #ffffff;
}

.featured-grid {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.featured-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.featured-content span {
    color: #ff9800;
    font-weight: 700;
    letter-spacing: 1px;
}

.featured-content h2 {
    color: #0d47a1;
    font-size: 46px;
    margin: 18px 0 20px;
}

.featured-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.project-features {
    margin-top: 20px;
}

    .project-features li {
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 12px;
        color: #444;
    }

        .project-features li::before {
            content: "✔";
            color: #0d47a1;
            font-weight: bold;
        }

/*=========================================================
                    WHY CHOOSE US
=========================================================*/

.why-section {
    background: #f8f9fc;
    padding: 100px 0;
}

.why-grid {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .35s;
}

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.why-icon {
    width: 85px;
    height: 85px;
    margin: auto auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 36px;
}

.why-card h3 {
    color: #0d47a1;
    font-size: 24px;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.8;
}

/*=========================================================
                    AWARDS
=========================================================*/

.awards {
    padding: 100px 0;
    background: #ffffff;
}

.awards-grid {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.award-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    transition: .35s;
}

    .award-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.award-icon {
    width: 85px;
    height: 85px;
    margin: auto auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff9800,#ffb74d);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 38px;
}

.award-card h3 {
    color: #0d47a1;
    margin-bottom: 15px;
    font-size: 24px;
}

.award-card p {
    color: #666;
    line-height: 1.8;
}
/*=========================================================
                    GALLERY CTA
=========================================================*/

.gallery-cta {
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

    .gallery-cta h2 {
        font-size: 52px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .gallery-cta p {
        max-width: 850px;
        margin: 0 auto 35px;
        color: #dfe8ff;
        font-size: 18px;
        line-height: 1.8;
    }

    .gallery-cta .btn {
        margin-top: 10px;
    }

/*=========================================================
                    CLIENT LOGOS
=========================================================*/

.gallery-clients {
    background: #ffffff;
    padding: 90px 0;
}

.client-grid {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 30px;
}

.client-box {
    background: #fff;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .35s;
}

    .client-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(0,0,0,.15);
    }

    .client-box img {
        width: 120px;
        margin: auto;
    }

/*=========================================================
                    IMAGE LIGHTBOX
=========================================================*/

.gallery-card {
    cursor: pointer;
}

    .gallery-card img {
        transition: .45s;
    }

    .gallery-card:hover img {
        transform: scale(1.08);
    }

    .gallery-card:hover .gallery-content {
        background: #f8f9fc;
    }

/*=========================================================
                    RESPONSIVE
=========================================================*/

@media(max-width:992px) {

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .awards-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .client-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .featured-content {
        text-align: center;
    }

    .project-features {
        display: inline-block;
        text-align: left;
    }
}

/*=========================================================
                    MOBILE
=========================================================*/

@media(max-width:768px) {

    .page-banner h1 {
        font-size: 40px;
    }

    .page-banner p {
        font-size: 16px;
    }

    .gallery-intro h2 {
        font-size: 34px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

        .stats-grid .stat-box {
            border-right: none;
            border-bottom: 1px solid rgba(255,255,255,.25);
            padding: 30px 15px;
        }

            .stats-grid .stat-box:last-child {
                border-bottom: none;
            }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .client-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .filter-buttons {
        gap: 12px;
    }

        .filter-buttons button {
            width: 100%;
        }

    .gallery-card img {
        height: 230px;
    }

    .gallery-cta h2 {
        font-size: 34px;
    }
}

/*=========================================================
                    SMALL MOBILE
=========================================================*/

@media(max-width:480px) {

    .client-grid {
        grid-template-columns: 1fr;
    }

    .gallery-content {
        padding: 22px;
    }

        .gallery-content h3 {
            font-size: 22px;
        }

    .gallery-cta {
        padding: 70px 20px;
    }

        .gallery-cta h2 {
            font-size: 30px;
        }

        .gallery-cta p {
            font-size: 16px;
        }
}