﻿/*=========================================
PAGE BANNER
=========================================*/

.page-banner {
    padding: 140px 0 80px;
    background: linear-gradient(135deg,#0A3D62,#00A86B);
    text-align: center;
    color: white;
}

    .page-banner h1 {
        color: white;
        font-size: 52px;
        margin-bottom: 20px;
    }

    .page-banner p {
        color: #F5F5F5;
        max-width: 700px;
        margin: auto;
        font-size: 18px;
        line-height: 1.8;
    }
/*=========================================
PAGE BANNER
=========================================*/

.page-banner {
    padding: 170px 0 100px;
    background: linear-gradient(135deg,#0A3D62,#00A86B);
    color: #fff;
    text-align: center;
}

    .page-banner h1 {
        color: white;
        font-size: 58px;
        margin-bottom: 20px;
    }

    .page-banner p {
        max-width: 800px;
        margin: auto;
        color: #E9F5F2;
        font-size: 20px;
        line-height: 1.8;
    }

/*=========================================
ABOUT
=========================================*/

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
}

.about-content h2 {
    margin: 20px 0;
}

.about-content p {
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 40px;
}

    .about-highlights div {
        background: #F8FBFD;
        padding: 25px;
        border-radius: 18px;
        text-align: center;
        box-shadow: var(--shadow-sm);
    }

    .about-highlights strong {
        display: block;
        margin-bottom: 10px;
        color: #0A3D62;
    }
/*==========================================
VISION
==========================================*/

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    margin-top: 60px;
}

.value-card {
    background: white;
    border-radius: 24px;
    padding: 45px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    text-align: center;
}

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
    }

.value-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg,#00A86B,#0A3D62);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
}

.value-card h3 {
    margin: 20px 0;
}

.value-card p {
    line-height: 1.9;
}
/*=========================================
JOURNEY
=========================================*/

.journey-section {
    background: #F8FBFD;
}

.timeline-wrapper {
    position: relative;
    margin-top: 70px;
    max-width: 1000px;
    margin-inline: auto;
}

.timeline-line {
    position: absolute;
    left: 135px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(#00A86B,#0A3D62);
}

.timeline-row {
    display: grid;
    grid-template-columns: 110px 50px 1fr;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-year {
    text-align: right;
    font-size: 26px;
    font-weight: 700;
    color: #0A3D62;
    padding-top: 12px;
}

.timeline-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #00A86B;
    border: 5px solid white;
    box-shadow: 0 0 0 3px #00A86B;
    margin-top: 18px;
    z-index: 2;
}

.timeline-card {
    background: white;
    padding: 35px;
    border-radius: 22px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .timeline-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .timeline-card h4 {
        color: #0A3D62;
        margin-bottom: 18px;
    }

    .timeline-card ul {
        margin: 0;
        padding-left: 20px;
    }

    .timeline-card li {
        margin-bottom: 10px;
        line-height: 1.7;
    }
/*=========================================
WHY RHAPSODY
=========================================*/

.why-rhapsody-section {
    background: #ffffff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: #F8FBFD;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: .35s;
    box-shadow: var(--shadow-sm);
}

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg,#00A86B,#0A3D62);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    margin: auto;
    margin-bottom: 25px;
}

.why-card h3 {
    margin-bottom: 18px;
    color: #0A3D62;
}

.why-card p {
    line-height: 1.8;
}
/*=========================================
IT & SERVICES
=========================================*/

.services-section {
    background: #F8FBFD;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 35px;
    margin-top: 60px;
}

.service-box {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .service-box:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.service-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}

    .service-header i {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: linear-gradient(135deg,#00A86B,#0A3D62);
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 30px;
    }

    .service-header h3 {
        margin: 0;
        color: #0A3D62;
    }

.service-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-box li {
    position: relative;
    padding-left: 34px;
    margin-bottom: 22px;
    line-height: 1.9;
}

    .service-box li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        font-size: 18px;
        color: #00A86B;
        font-weight: 700;
    }
/*=========================================
ADVANTAGES
=========================================*/

.advantages-section {
    background: #ffffff;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.advantage-card {
    background: #F8FBFD;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .advantage-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: linear-gradient(135deg,#00A86B,#0A3D62);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 32px;
}

.advantage-card h3 {
    margin-bottom: 18px;
    color: #0A3D62;
}

.advantage-card p {
    line-height: 1.8;
}
/*==========================================
SUCCESS STORIES
==========================================*/

.success-statistics {
    background: #F8FBFD;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: white;
    padding: 45px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .stat-card h2 {
        font-size: 54px;
        color: #00A86B;
        margin-bottom: 10px;
    }

    .stat-card span {
        font-size: 18px;
        font-weight: 600;
        color: #444;
    }
/*=========================================
FEATURED CASE STUDIES
=========================================*/

.featured-case-section {
    background: #ffffff;
}

.case-study-card {
    background: #F8FBFD;
    border-radius: 24px;
    padding: 45px;
    margin-top: 50px;
    box-shadow: var(--shadow-sm);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
}

    .case-header h2 {
        color: #0A3D62;
        margin-bottom: 10px;
    }

.industry-badge {
    background: #00A86B;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
}

.company-logo img {
    max-height: 60px;
    max-width: 180px;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

    .case-grid h4 {
        color: #0A3D62;
        margin-bottom: 18px;
    }

    .case-grid ul {
        padding-left: 20px;
    }

    .case-grid li {
        margin-bottom: 12px;
        line-height: 1.8;
    }
/*==========================================
IMPLEMENTATION PORTFOLIO
==========================================*/

.implementation-section {
    background: #F8FBFD;
}

.implementation-search {
    margin: 50px auto;
    max-width: 450px;
}

    .implementation-search input {
        width: 100%;
        padding: 16px 20px;
        border-radius: 40px;
        border: 1px solid #ddd;
        font-size: 16px;
    }

.implementation-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.implementation-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .implementation-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .implementation-card h3 {
        color: #0A3D62;
        margin: 20px 0;
    }

    .implementation-card p {
        margin-bottom: 10px;
        line-height: 1.7;
    }

.status {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 30px;
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.completed {
    background: #00A86B;
}
/*==========================================
IMPLEMENTATION PIPELINE
==========================================*/

.pipeline-section {
    background: #ffffff;
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 60px;
}

.pipeline-card {
    background: #F8FBFD;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    transition: .35s;
    box-shadow: var(--shadow-sm);
}

    .pipeline-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.pipeline-status {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #0A3D62;
    color: white;
    font-size: 13px;
    margin-bottom: 20px;
}

.pipeline-card h3 {
    margin-bottom: 15px;
    color: #0A3D62;
}

.pipeline-card strong {
    color: #00A86B;
}
/*=========================================
CONTACT PAGE
=========================================*/

.quick-contact-section {
    background: #F8FBFD;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.quick-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}

    .quick-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .quick-card i {
        font-size: 42px;
        color: var(--primary-green);
        margin-bottom: 20px;
    }

    .quick-card h3 {
        margin-bottom: 15px;
    }

    .quick-card a {
        color: var(--primary-green);
        font-weight: 600;
        text-decoration: none;
    }

.contact-section {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-card {
    background: #F8FBFD;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 15px 18px;
        border: 1px solid #ddd;
        border-radius: 12px;
        outline: none;
    }

.contact-info {
    margin-top: 35px;
}

    .contact-info div {
        display: flex;
        gap: 15px;
        margin-bottom: 18px;
        align-items: flex-start;
    }

    .contact-info i {
        color: var(--primary-green);
        font-size: 22px;
    }

.map-wrapper {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

    .map-wrapper iframe {
        width: 100%;
        height: 500px;
        border: none;
    }
/*=========================================
LEADERSHIP
=========================================*/

.leadership-section {
    background: #F8FBFD;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
    margin-top: 60px;
}

.team-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

    .team-card img {
        width: 170px;
        height: 170px;
        object-fit: cover;
        border-radius: 18px;
        margin: auto;
        margin-bottom: 25px;
        border: 5px solid white;
        box-shadow: 0 0 15px rgba(0,0,0,.15);
    }

    .team-card h3 {
        margin-bottom: 8px;
        color: #0A3D62;
    }

    .team-card h5 {
        color: #00A86B;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .team-card p {
        line-height: 2;
        flex: 1;
    }

.team-modal-image {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 20px;
}
.team-card hr {
    margin: 25px 0;
}

.team-card .btn {
    width: 180px;
    margin: auto;
}

.modal-content {
    border-radius: 24px;
}

.modal-header {
    border-bottom: none;
}

.modal-body {
    padding: 40px;
}