/*==================================================
        PROJECT HERO
        ==================================================*/

.projects-hero {

    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;

    background:

        linear-gradient(rgba(7, 24, 39, .72),
            rgba(7, 24, 39, .82)),

        url(images/projects/projects-hero.jpg) center center/cover no-repeat;

    overflow: hidden;

}

.projects-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(circle at top right,
            rgba(1, 112, 143, .28),
            transparent 45%);

}

.projects-hero .container {

    position: relative;
    z-index: 2;

}

.projects-hero h1 {

    font-size: 4.2rem;
    line-height: 1.1;
    max-width: 900px;
    color: #fff;
    margin: 25px 0;

    font-family: 'Poppins', sans-serif;

}

.projects-hero p {

    max-width: 760px;
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, .90);

    margin-bottom: 45px;

}

.project-badge {

    display: inline-flex;

    align-items: center;

    padding: 10px 22px;

    border-radius: 40px;

    background: rgba(255, 255, 255, .10);

    backdrop-filter: blur(12px);

    font-weight: 600;

    letter-spacing: .5px;

    color: #fff;

}

.hero-buttons {

    display: flex;
    gap: 18px;
    flex-wrap: wrap;

    margin-bottom: 70px;

}

/*==================================================
HERO STATS
==================================================*/

.project-stats {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.project-stat {

    padding: 35px;

    border-radius: 22px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .10);

    transition: .35s;

}

.project-stat:hover {

    transform: translateY(-8px);

    background: rgba(255, 255, 255, .12);

}

.project-stat h2 {

    font-size: 2.9rem;

    color: #fff;

    margin-bottom: 10px;

    font-family: 'Poppins', sans-serif;

}

.project-stat span {

    color: rgba(255, 255, 255, .82);

    line-height: 1.6;

    display: block;

}

/*==================================================
SCROLL INDICATOR
==================================================*/

.scroll-down {

    position: absolute;

    bottom: 45px;

    left: 50%;

    transform: translateX(-50%);

    font-size: .85rem;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #fff;

    opacity: .8;

}

.scroll-down::after {

    content: "";

    display: block;

    width: 2px;

    height: 70px;

    margin: 15px auto 0;

    background: #c7a24b;

    animation: scrollLine 2s infinite;

}

@keyframes scrollLine {

    0% {

        transform: scaleY(0);

        transform-origin: top;

    }

    50% {

        transform: scaleY(1);

        transform-origin: top;

    }

    100% {

        transform: scaleY(0);

        transform-origin: bottom;

    }

}

@media(max-width:1100px) {

    .project-stats {

        grid-template-columns: repeat(2, 1fr);

    }

    .projects-hero h1 {

        font-size: 3rem;

    }

}

@media(max-width:768px) {

    .project-stats {

        grid-template-columns: 1fr;

    }

    .projects-hero {

        text-align: center;

    }

    .projects-hero h1 {

        font-size: 2.4rem;

    }

    .hero-buttons {

        justify-content: center;

    }

}


/*==================================================
        PROJECT CATEGORIES
        ==================================================*/

.project-categories {

    padding: 130px 0;
    background: #ffffff;

}

.category-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;

}

.category-card {

    padding: 45px;
    background: #f8fafc;
    border-radius: 22px;

    transition: .35s;

    border: 1px solid rgba(0, 0, 0, .05);

}

.category-card:hover {

    transform: translateY(-8px);

    background: #071827;

}

.category-card:hover h3,
.category-card:hover p,
.category-card:hover .category-icon {

    color: #fff;

}

.category-icon {

    font-size: 2.7rem;
    margin-bottom: 20px;
    transition: .3s;

}

.category-card h3 {

    font-size: 1.5rem;
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    color: var(--navy);

}

.category-card p {

    line-height: 1.8;
    color: #64748b;

}

/*==================================================
        PROJECT GALLERY
        ==================================================*/

.portfolio-gallery {

    padding: 140px 0;
    background: #f7fafc;

}

.gallery-header {

    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;

}

.gallery-header span {

    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--brand);

}

.gallery-header h2 {

    font-size: 3rem;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    color: var(--navy);

}

.gallery-header p {

    line-height: 1.9;
    color: #64748b;

}

.gallery-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;

}

.gallery-item {

    position: relative;
    overflow: hidden;

    border-radius: 20px;

    background: #000;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);

}

.gallery-item img {

    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
    transition: .6s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .88));
    color: #fff;
}

.gallery-overlay h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.gallery-overlay p {
    opacity: .9;
    font-size: .95rem;
    color: #fff;

}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-projects {
    padding: 140px 0;
    background: #071827;
    color: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 70px;
}

.why-card {

    padding: 40px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .3s;
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .08);
}

.why-card h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.why-card p {

    line-height: 1.9;
    color: rgba(255, 255, 255, .85);

}

@media(max-width:1100px) {

    .category-grid,
    .gallery-grid,
    .why-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .category-grid,
    .gallery-grid,
    .why-grid {

        grid-template-columns: 1fr;

    }

    .gallery-item img {

        height: 260px;

    }

    .gallery-header h2 {

        font-size: 2.2rem;

    }

}


/*==========================================================
PROJECT PROCESS
==========================================================*/

.project-process {

    padding: 140px 0;
    background: #ffffff;

}

.process-header {

    max-width: 820px;
    margin: 0 auto 90px;
    text-align: center;

}

.process-header span {

    display: inline-block;
    margin-bottom: 18px;
    color: var(--brand);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;

}

.process-header h2 {

    font-size: 3rem;
    color: var(--navy);
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;

}

.process-header p {

    color: #64748b;
    line-height: 1.9;

}

.process-grid {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;

}

.process-card {

    position: relative;

    padding: 45px 35px;

    background: #fff;

    border-radius: 22px;

    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);

    transition: .35s;

    overflow: hidden;

}

.process-card:hover {

    transform: translateY(-10px);

}

.process-number {

    position: absolute;

    top: 18px;
    right: 25px;

    font-size: 3.8rem;

    font-weight: 800;

    color: #eef3f8;

    font-family: 'Poppins', sans-serif;

}

.process-icon {

    width: 72px;
    height: 72px;

    border-radius: 50%;

    background: var(--brand);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    color: #fff;

    margin-bottom: 30px;

}

.process-card h3 {

    font-size: 1.4rem;

    margin-bottom: 20px;

    color: var(--navy);

    font-family: 'Poppins', sans-serif;

}

.process-card p {

    line-height: 1.8;

    color: #64748b;

}




/*==========================================================
COUNTERS
==========================================================*/

.achievement-section {

    padding: 140px 0;

    background:

        linear-gradient(rgba(7, 24, 39, .92),
            rgba(7, 24, 39, .92)),

        url(images/projects/projects-counter.jpg) center/cover;

    color: #fff;

}

.achievement-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 35px;

    text-align: center;

}

.achievement-box {

    padding: 45px 30px;

}

.achievement-box h2 {

    font-size: 4rem;

    color: #fff;

    margin-bottom: 15px;

    font-family: 'Poppins', sans-serif;

}

.achievement-box p {

    opacity: .85;

    line-height: 1.7;

}

@media(max-width:1100px) {

    .process-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .achievement-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .process-grid,
    .achievement-grid {

        grid-template-columns: 1fr;

    }

    .process-header h2 {

        font-size: 2.2rem;

    }

}


/*==========================================================
TESTIMONIALS
==========================================================*/

.testimonials {

    padding: 140px 0;
    background: #ffffff;

}

.testimonial-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 70px;

}

.testimonial-card {

    background: #fff;

    padding: 45px;

    border-radius: 22px;

    border: 1px solid rgba(0, 0, 0, .06);

    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);

    transition: .35s;

}

.testimonial-card:hover {

    transform: translateY(-8px);

}

.quote-icon {

    font-size: 3rem;

    color: var(--brand);

    margin-bottom: 25px;

}

.testimonial-card p {

    color: #64748b;

    line-height: 1.9;

    margin-bottom: 30px;

}

.testimonial-author {

    font-weight: 700;

    color: var(--navy);

}

.testimonial-role {

    color: #94a3b8;

    font-size: .95rem;

}

/*==========================================================
FAQ
==========================================================*/

.faq-section {

    padding: 140px 0;

    background: #f7fafc;

}

.faq-wrapper {

    max-width: 950px;

    margin: 70px auto 0;

}

.faq-item {

    background: #fff;

    border-radius: 18px;

    margin-bottom: 22px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);

}

.faq-question {

    padding: 28px 35px;

    font-size: 1.15rem;

    font-weight: 700;

    color: var(--navy);

    background: #fff;

}

.faq-answer {

    padding: 0 35px 30px;

    color: #64748b;

    line-height: 1.9;

}

@media(max-width:1100px) {

    .testimonial-grid {

        grid-template-columns: 1fr;

    }

}



/*==================================================
FINAL CTA
==================================================*/

.final-cta {

    padding: 140px 0;

    position: relative;

    overflow: hidden;

    background:

        linear-gradient(rgba(7, 24, 39, .86),
            rgba(7, 24, 39, .92)),

        url(images/projects/cta-background.jpg) center center/cover no-repeat;

}

.final-cta::before {

    content: "";

    position: absolute;

    inset: 0;

    background:

        radial-gradient(circle at top right,
            rgba(1, 112, 143, .35),
            transparent 45%);

}

.cta-wrapper {

    position: relative;
    z-index: 2;

    max-width: 900px;

    margin: auto;

    text-align: center;

}

.cta-wrapper span {

    display: inline-block;

    margin-bottom: 20px;

    padding: 10px 24px;

    border-radius: 40px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(12px);

    color: #7dd3fc;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.cta-wrapper h2 {

    font-size: 3.3rem;

    line-height: 1.15;

    margin-bottom: 30px;

    color: #fff;

    font-family: 'Poppins', sans-serif;

}

.cta-wrapper p {

    font-size: 1.15rem;

    line-height: 1.9;

    color: rgba(255, 255, 255, .88);

    margin-bottom: 45px;

}

.cta-buttons {

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;

}

/*==================================================
FOOTER
==================================================*/

.footer {

    background: #071827;

    color: #cbd5e1;

    padding: 90px 0 0;

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.3fr;

    gap: 60px;

    padding-bottom: 70px;

}

.footer-logo {

    font-size: 2rem;

    font-weight: 800;

    font-family: 'Poppins', sans-serif;

    color: #fff;

    margin-bottom: 25px;

}

.footer-logo span {

    color: var(--brand);

}

.footer-about {

    line-height: 1.9;

    margin-bottom: 30px;

    color: #94a3b8;

}

.footer h4 {

    color: #fff;

    margin-bottom: 24px;

    font-size: 1.15rem;

    font-family: 'Poppins', sans-serif;

}

.footer ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer li {

    margin-bottom: 14px;

}

.footer a {

    color: #94a3b8;

    text-decoration: none;

    transition: .3s;

}

.footer a:hover {

    color: #fff;

    padding-left: 6px;

}

.footer-contact div {

    margin-bottom: 18px;

    line-height: 1.8;

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 28px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    font-size: .92rem;

    color: #94a3b8;

}

/*==================================================
BACK TO TOP
==================================================*/

.back-top {

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--brand);

    color: #fff;

    text-decoration: none;

    font-size: 22px;

    opacity: 0;
    visibility: hidden;

    transition: .35s;

    z-index: 999;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .25);

}

.back-top.show {

    opacity: 1;

    visibility: visible;

}

.back-top:hover {

    transform: translateY(-6px);

}

@media(max-width:1100px) {

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .footer-grid {

        grid-template-columns: 1fr;

    }

    .footer-bottom {

        text-align: center;

        justify-content: center;

    }

    .cta-wrapper h2 {

        font-size: 2.4rem;

    }

}



        /*==================================================
        FEATURED PROJECTS
        ==================================================*/

        .featured-projects {

            padding: 140px 0;
            background: #f7fafc;

        }

        .section-intro {

            max-width: 820px;
            margin: 0 auto 90px;
            text-align: center;

        }

        .section-intro span {

            display: inline-block;
            margin-bottom: 18px;

            font-size: .82rem;
            letter-spacing: 2px;
            font-weight: 700;
            text-transform: uppercase;

            color: var(--brand);

        }

        .section-intro h2 {

            font-size: 3rem;
            margin-bottom: 25px;

            font-family: 'Poppins', sans-serif;
            color: var(--navy);

        }

        .section-intro p {

            font-size: 1.08rem;
            line-height: 1.9;
            color: #64748b;

        }

        .project-list {

            display: flex;
            flex-direction: column;
            gap: 90px;

        }

        .project-card {

            display: grid;
            grid-template-columns: 1.15fr .85fr;
            align-items: center;
            gap: 70px;

            background: #fff;

            border-radius: 26px;

            overflow: hidden;

            box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

            transition: .35s;

        }

        .project-card:hover {

            transform: translateY(-8px);

            box-shadow: 0 35px 70px rgba(0, 0, 0, .12);

        }

        .project-card.reverse {

            grid-template-columns: .85fr 1.15fr;

        }

        .project-card.reverse .project-image {

            order: 2;

        }

        .project-card.reverse .project-content {

            order: 1;

        }


        .project-image img {

            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;

            transition: .6s;

        }

        .project-card:hover img {

            transform: scale(1.05);

        }

        .project-content {

            padding: 55px;

        }

        .project-location {

            display: inline-block;

            padding: 8px 18px;

            background: #eef7fb;

            color: var(--brand);

            font-weight: 600;

            border-radius: 40px;

            margin-bottom: 20px;

        }

        .project-content h3 {

            font-size: 2.1rem;
            margin-bottom: 18px;

            font-family: 'Poppins', sans-serif;
            color: var(--navy);

        }

        .project-content p {

            line-height: 1.9;
            margin-bottom: 30px;
            color: #64748b;

        }

        .service-tags {

            display: flex;
            flex-wrap: wrap;
            gap: 12px;

            margin-bottom: 35px;

        }

        .service-tags span {

            padding: 10px 18px;

            background: #f1f5f9;

            border-radius: 30px;

            font-size: .9rem;
            font-weight: 600;

            color: #475569;

        }

        .project-meta {

            display: grid;
            grid-template-columns: repeat(3, 1fr);

            gap: 18px;

            margin-bottom: 35px;

        }

        .project-meta div {

            padding: 18px;

            background: #f8fafc;

            border-radius: 16px;

            text-align: center;

        }

        .project-meta strong {

            display: block;

            font-size: 1.4rem;

            color: var(--brand);

            margin-bottom: 6px;

        }

        .project-meta small {

            color: #64748b;

        }

        @media(max-width:1100px) {

            .project-card,
            .project-card.reverse {

                grid-template-columns: 1fr;

            }

            .project-card.reverse .project-image,
            .project-card.reverse .project-content {

                order: unset;

            }

            .project-image {

                height: 420px;

            }

        }

        @media(max-width:768px) {

            .featured-projects {

                padding: 90px 0;

            }

            .project-content {

                padding: 35px;

            }

            .project-meta {

                grid-template-columns: 1fr;

            }

            .section-intro h2 {

                font-size: 2.2rem;

            }

        }