/*==================================================
ABOUT HERO
==================================================*/

.about-hero {
    position: relative;
    padding: 140px 0 90px;
    background:
        linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -150px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(11, 30, 60, .05);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin: 18px 0 25px;
}

.about-content h1 span {
    color: var(--accent-color);
}

.about-content p {
    margin-bottom: 18px;
    color: #6B7280;
    font-size: 1.05rem;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.image-wrapper img {
    display: block;
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.experience-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    width: 270px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .15);
}

.experience-box h3 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.experience-box p {
    margin: 0;
    color: #6B7280;
    line-height: 1.6;
}


/*==================================================
WHO WE ARE
==================================================*/

.who-we-are {
    padding: 110px 0;
    background: #fff;
}

.who-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: start;
    margin-top: 60px;
}

.who-left .lead {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 28px;
    line-height: 1.7;
}

.who-left p {
    color: #6B7280;
    margin-bottom: 22px;
    line-height: 1.9;
}

.who-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 28px;
    border: 1px solid #edf2f7;
    transition: .35s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.feature-card i {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #0B1E3C;
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 22px;
}

.feature-card h3 {
    margin-bottom: 14px;
    color: var(--primary-color);
}

.feature-card p {
    color: #6B7280;
    line-height: 1.8;
}

.section-tag {
    display: inline-block;
    font-size: .85rem;
    letter-spacing: 2px;
    font-weight: 700;
    color: #B87333;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-heading {
    max-width: 760px;
}

.section-heading.center {
    text-align: center;
    margin: 0 auto;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading p {
    color: #6B7280;
    line-height: 1.8;
}


@media(max-width:992px) {

    .about-hero-grid,
    .who-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .about-content h1 {
        font-size: 2.8rem;
    }

    .image-wrapper img {
        height: 500px;
    }

    .who-right {
        margin-top: 20px;
    }

}

@media(max-width:768px) {

    .about-hero {
        padding: 110px 0 70px;
    }

    .about-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .image-wrapper img {
        height: 380px;
    }

    .experience-box {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

    .who-right {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 28px;
    }

}


/*==================================================
OUR PHILOSOPHY
==================================================*/

.our-philosophy {
    padding: 110px 0;
    background: #f8fbff;
}

.philosophy-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.philosophy-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    transition: .4s ease;
    border: 1px solid #edf2f7;
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #B87333;
    transform: scaleX(0);
    transition: .4s;
    transform-origin: left;
}

.philosophy-card:hover::before {
    transform: scaleX(1);
}

.philosophy-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.icon-box {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #0B1E3C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.philosophy-card h3 {
    margin-bottom: 15px;
    color: #0B1E3C;
}

.philosophy-card p {
    color: #6B7280;
    line-height: 1.9;
}


/*==================================================
BUSINESS IMPACT
==================================================*/

.growth-impact {
    padding: 110px 0;
    background: #fff;
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.impact-text h2 {
    margin: 18px 0;
}

.impact-text p {
    color: #6B7280;
    line-height: 1.9;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-card {
    background: #0B1E3C;
    color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: .4s;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #B87333;
}

.stat-card span {
    font-size: 15px;
    letter-spacing: .5px;
}


/*==================================================
TIMELINE
==================================================*/

.growth-process {
    padding: 110px 0;
    background: #f8fbff;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 70px auto 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #B87333;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 35px;
    margin-bottom: 45px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item span {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0B1E3C;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.timeline-item div {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    flex: 1;
    border: 1px solid #edf2f7;
    transition: .35s;
}

.timeline-item div:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    transform: translateX(10px);
}

.timeline-item h3 {
    color: #0B1E3C;
    margin-bottom: 10px;
}

.timeline-item p {
    color: #6B7280;
    line-height: 1.8;
}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width:992px) {

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .timeline {
        margin-top: 50px;
    }

}


@media(max-width:768px) {

    .our-philosophy,
    .growth-impact,
    .growth-process {
        padding: 80px 0;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-item span {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }

    .timeline-item div {
        padding: 22px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .stat-card h3 {
        font-size: 2.4rem;
    }

}


/*==================================================
MISSION & VISION
==================================================*/

.mission-vision {
    padding: 110px 0;
    background: #ffffff;
}

.mission-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.mission-card {
    background: #fff;
    padding: 45px 40px;
    border-radius: 20px;
    border: 1px solid #edf2f7;
    transition: .35s ease;
    text-align: left;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.mission-card .icon-box {
    margin-bottom: 25px;
}

.mission-card h3 {
    margin-bottom: 15px;
    color: #0B1E3C;
}

.mission-card p {
    color: #6B7280;
    line-height: 1.9;
}


/*==================================================
WHY WORD OF AD
==================================================*/

.why-wordofad {
    padding: 110px 0;
    background: #f8fbff;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-image {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.why-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: .5s;
}

.why-image:hover img {
    transform: scale(1.05);
}

.why-content h2 {
    margin: 18px 0;
}

.why-content p {
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 35px;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.check-list div {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #0B1E3C;
    font-weight: 600;
}

.check-list i {
    color: #B87333;
    font-size: 20px;
}


/*==================================================
CORE VALUES
==================================================*/

.core-values {
    padding: 110px 0;
    background: #ffffff;
}

.values-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 30px;
    border: 1px solid #edf2f7;
    transition: .35s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.value-card i {
    font-size: 42px;
    color: #B87333;
    margin-bottom: 22px;
}

.value-card h3 {
    margin-bottom: 15px;
    color: #0B1E3C;
}

.value-card p {
    color: #6B7280;
    line-height: 1.8;
}


/*==================================================
FINAL CTA
==================================================*/

.about-cta {
    padding: 110px 0;
    background: #0B1E3C;
}

.cta-box {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.about-cta .section-tag {
    color: #B87333;
}

.cta-box h2 {
    color: #fff;
    margin: 20px 0;
}

.cta-box p {
    color: rgba(255, 255, 255, .82);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.9;
}

.cta-box .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
}


/*==================================================
ANIMATIONS
==================================================*/

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width:992px) {

    .mission-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: 1;
    }

    .why-content {
        order: 2;
    }

    .why-image img {
        height: 450px;
    }

}


@media(max-width:768px) {

    .mission-vision,
    .why-wordofad,
    .core-values,
    .about-cta {
        padding: 80px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .mission-card,
    .value-card {
        padding: 30px 24px;
    }

    .why-image img {
        height: 320px;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .check-list div {
        font-size: 15px;
    }

}