/* =========================================
   PROJECT MANAGEMENT
========================================= */


/* ---------- HERO ---------- */

.project-hero {
    width: 100%;
    padding: 75px 6%;
    background: #f5f9fc;
}

.project-hero-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 60px;
}

.project-hero-content {
    max-width: 600px;
}

.project-label {
    display: inline-block;
    margin-bottom: 18px;

    color: #126eb5;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.project-hero-content h1 {
    margin-bottom: 22px;

    color: #222;

    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
}

.project-hero-content > p {
    margin-bottom: 30px;

    color: #666;

    font-size: 17px;
    line-height: 1.7;
}

.project-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 26px;

    color: #fff;
    background: #126eb5;

    border-radius: 6px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.project-hero-btn:hover {
    background: #0d5d99;
    transform: translateY(-2px);
}

.project-hero-btn span {
    font-size: 20px;
}

.project-hero-image {
    width: 100%;

    overflow: hidden;

    border-radius: 14px;
}

.project-hero-image img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: cover;
}


/* ---------- SECTION HEADING ---------- */

.project-section-heading {
    max-width: 750px;

    margin: 0 auto 50px;

    text-align: center;
}

.project-section-heading > span {
    display: block;

    margin-bottom: 10px;

    color: #126eb5;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.project-section-heading h2 {
    margin-bottom: 15px;

    color: #222;

    font-size: 34px;
    line-height: 1.25;
}

.project-section-heading p {
    color: #666;

    font-size: 15px;
    line-height: 1.7;
}


/* ---------- FEATURES ---------- */

.project-features-section {
    padding: 90px 6%;

    background: #fff;
}

.project-features-grid {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


/* ---------- FLIP CARDS ---------- */

.project-flip-card {
    width: 100%;
    height: 290px;

    perspective: 1000px;
}

.project-flip-inner {
    position: relative;

    width: 100%;
    height: 100%;

    transform-style: preserve-3d;

    transition: transform 0.7s ease;
}

.project-flip-card:hover .project-flip-inner {
    transform: rotateY(180deg);
}

.project-flip-front,
.project-flip-back {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 12px;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


/* ---------- FRONT ---------- */

.project-flip-front {
    background: #eee;
}

.project-flip-front img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.project-front-title {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 28px 22px 22px;

    color: #fff;

    font-size: 19px;
    font-weight: 700;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82),
        rgba(0, 0, 0, 0)
    );
}


/* ---------- BACK ---------- */

.project-flip-back {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 30px;

    text-align: center;

    color: #fff;

    background: #302f2f;

    transform: rotateY(180deg);
}

.project-back-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 15px;

    color: #302f2f;

    background: #fff;

    border-radius: 50%;

    font-size: 20px;
}

.project-flip-back h3 {
    margin-bottom: 14px;

    color: #fff;

    font-size: 21px;
}

.project-flip-back p {
    margin: 0;

    color: #fff;

    font-size: 13px;
    line-height: 1.65;
}


/* ---------- BENEFITS ---------- */

.project-benefits-section {
    padding: 90px 6%;

    background: #f5f9fc;
}

.project-benefits-grid {
    width: 100%;
    max-width: 950px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


/* ---------- BENEFIT CARDS ---------- */

.project-benefit-card {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 30px;

    background: #fff;

    border: 1px solid #e1e9ef;

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.project-benefit-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

.project-benefit-icon {
    flex-shrink: 0;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #126eb5;

    background: #eaf4fb;

    border-radius: 12px;

    font-size: 21px;
}

.project-benefit-card h3 {
    margin: 2px 0 10px;

    color: #222;

    font-size: 19px;
}

.project-benefit-card p {
    margin: 0;

    color: #666;

    font-size: 14px;
    line-height: 1.7;
}


/* ---------- CONTACT ---------- */

.project-contact-section {
    padding: 90px 6%;

    background: #126eb5;
}

.project-contact-container {
    max-width: 1000px;

    margin: 0 auto;
}

.project-contact-content {
    max-width: 750px;

    margin: 0 auto;

    text-align: center;
}

.project-contact-content > span {
    display: block;

    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.project-contact-content h2 {
    margin-bottom: 20px;

    color: #fff;

    font-size: 36px;
    line-height: 1.25;
}

.project-contact-content p {
    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.9);

    font-size: 15px;
    line-height: 1.7;
}

.project-contact-btn {
    display: inline-block;

    margin-top: 18px;

    padding: 14px 30px;

    color: #126eb5;

    background: #fff;

    border-radius: 6px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.project-contact-btn:hover {
    transform: translateY(-2px);

    background: #f2f2f2;
}


/* ---------- TABLET ---------- */

@media (max-width: 900px) {

    .project-hero-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .project-hero-content {
        max-width: 100%;

        text-align: center;
    }

    .project-hero-image {
        max-width: 800px;

        margin: 0 auto;
    }

    .project-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 600px) {

    .project-hero {
        padding: 55px 5%;
    }

    .project-hero-content h1 {
        font-size: 34px;
    }

    .project-hero-content > p {
        font-size: 15px;
    }

    .project-features-section,
    .project-benefits-section,
    .project-contact-section {
        padding: 65px 5%;
    }

    .project-section-heading {
        margin-bottom: 35px;
    }

    .project-section-heading h2 {
        font-size: 28px;
    }

    .project-features-grid,
    .project-benefits-grid {
        grid-template-columns: 1fr;
    }

    .project-flip-card {
        height: 280px;
    }

    .project-benefit-card {
        padding: 24px;
    }

    .project-contact-content h2 {
        font-size: 29px;
    }
}