﻿/*========================
 HERO
==========================*/

.hero-section {
    position: relative;
    height: 95vh;
    min-height: 720px;
    background: url('/images/about/hero.webp') center center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5,26,55,.82), rgba(7,53,110,.72), rgba(11,77,162,.45));
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    backdrop-filter: blur(8px);
}

.hero-title {
    color: #fff;
    font-size: 68px;
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 35px;
}

.hero-desc {
    color: #fff;
    opacity: .9;
    font-size: 20px;
    line-height: 1.9;
    max-width: 700px;
    margin-bottom: 45px;
}

.hero-button {
    display: flex;
    gap: 20px;
}

.btn-main {
    padding: 18px 40px;
    background: #F7B500;
    color: #111;
    border-radius: 60px;
    font-weight: 700;
    transition: .35s;
}

    .btn-main:hover {
        background: #fff;
        color: #0B4DA2;
        text-decoration: none;
    }

.btn-outline {
    padding: 18px 40px;
    border: 2px solid rgba(255,255,255,.7);
    color: #fff;
    border-radius: 60px;
    transition: .35s;
}

    .btn-outline:hover {
        background: #fff;
        color: #0B4DA2;
        text-decoration: none;
    }

.scroll-down {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
}

    .scroll-down span {
        width: 28px;
        height: 48px;
        border: 2px solid #fff;
        border-radius: 30px;
        display: block;
        position: relative;
    }

        .scroll-down span:before {
            content: '';
            width: 6px;
            height: 6px;
            background: #fff;
            border-radius: 50%;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 10px;
            animation: mouse 1.8s infinite;
        }

@keyframes mouse {

    0% {
        opacity: 0;
        top: 8px;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        top: 28px;
    }
}

@media(max-width:991px) {

    .hero-section {
        min-height: 650px;
        height: auto;
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .hero-button {
        flex-direction: column;
    }

    .btn-main,
    .btn-outline {
        width: 100%;
        text-align: center;
    }
}
/*==========================
WHY
===========================*/

.why-section {
    padding: 40px 0;
    background: #fff;
}

.section-title span {
    color: #0B4DA2;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
}

.section-title h2 {
    margin-top: 15px;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 25px;
}

.section-desc {
    font-size: 18px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 45px;
}

.why-image {
    position: relative;
}

    .why-image img {
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
    }

.experience-box {
    position: absolute;
    right: -20px;
    bottom: 40px;
    background: #0B4DA2;
    color: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
}

    .experience-box span {
        display: block;
        font-size: 42px;
        font-weight: 800;
    }

    .experience-box small {
        font-size: 16px;
    }

.why-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #F3F8FF;
    color: #0B4DA2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-right: 25px;
    transition: .35s;
}

.why-item:hover .why-icon {
    background: #0B4DA2;
    color: #fff;
    transform: translateY(-5px);
}

.why-item h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.why-item p {
    margin: 0;
    color: #777;
    line-height: 1.8;
}

/*==========================================
PROCESS
===========================================*/

.process-section {
    padding: 40px 0;
    background: #F8FAFD;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

    .timeline:before {
        content: "";
        position: absolute;
        left: 22px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #D9E4F5;
    }

.timeline-item {
    position: relative;
    display: flex;
    margin-bottom: 45px;
}

.timeline-dot {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #0B4DA2;
    color: #0B4DA2;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    z-index: 2;
    transition: .35s;
}

.timeline-content {
    flex: 1;
}

    .timeline-content h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .timeline-content p {
        color: #777;
        line-height: 1.9;
    }

.timeline-item:hover .timeline-dot {
    background: #0B4DA2;
    color: #fff;
    transform: scale(1.1);
}

.process-image {
    height: 100%;
}

    .process-image img {
        width: 100%;
        height: 100%;
        min-height: 760px;
        object-fit: cover;
        border-radius: 25px;
        box-shadow: 0 25px 60px rgba(0,0,0,.12);
    }

.timeline-item {
    opacity: .5;
    transform: translateY(40px);
    transition: .5s;
}

    .timeline-item.active {
        opacity: 1;
        transform: translateY(0);
    }

        .timeline-item.active .timeline-dot {
            background: #0B4DA2;
            color: #fff;
        }

/*==========================================
RESIDENT
===========================================*/

.resident-section {
    padding: 40px 0;
    background: #fff;
}

.resident-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #fff;
    width: 260px;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(0,0,0,.12);
}

    .resident-card h5 {
        font-size: 16px;
        color: #666;
    }

    .resident-card strong {
        display: block;
        font-size: 42px;
        color: #0B4DA2;
        margin: 10px 0;
    }

    .resident-card p {
        margin: 0;
        line-height: 1.8;
    }
/*==================================================
    COUNTER SECTION
==================================================*/

.counter-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: linear-gradient(135deg,#0B4DA2 0%,#083A79 100%);
}

    /* Background Decoration */

    .counter-section:before {
        content: '';
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
        top: -180px;
        right: -120px;
    }

    .counter-section:after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.03);
        bottom: -180px;
        left: -120px;
    }

    .counter-section .container {
        position: relative;
        z-index: 2;
    }

/* Title */

.counter-title {
    text-align: center;
    margin-bottom: 70px;
}

    .counter-title span {
        color: #F7B500;
        font-size: 14px;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 700;
    }

    .counter-title h2 {
        color: #fff;
        font-size: 48px;
        font-weight: 800;
        margin: 18px 0;
    }

    .counter-title p {
        color: rgba(255,255,255,.8);
        font-size: 18px;
        max-width: 720px;
        margin: auto;
        line-height: 1.8;
    }

/* Item */

.counter-box {
    text-align: center;
    padding: 20px 25px;
    position: relative;
    transition: .35s;
}

    /* Divider */

    .counter-box:after {
        content: "";
        position: absolute;
        top: 30px;
        right: 0;
        width: 1px;
        height: 170px;
        background: rgba(255,255,255,.15);
    }

    .counter-box:last-child:after {
        display: none;
    }

    /* Icon */

    .counter-box i {
        display: block;
        font-size: 48px;
        color: #F7B500;
        margin-bottom: 25px;
        transition: .35s;
    }

    /* Number */

    .counter-box h2 {
        font-size: 72px;
        font-weight: 800;
        color: #fff;
        line-height: 1;
        margin-bottom: 20px;
    }

    /* Title */

    .counter-box h5 {
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 18px;
    }

    /* Description */

    .counter-box p {
        color: rgba(255,255,255,.75);
        font-size: 15px;
        line-height: 1.8;
        margin: 0;
    }

    /* Hover */

    .counter-box:hover {
        transform: translateY(-12px);
    }

        .counter-box:hover i {
            transform: scale(1.15);
            color: #FFD45A;
        }

        .counter-box:hover h2 {
            color: #FFD45A;
        }

/* Counter */

.counter {
    display: inline-block;
}

/* Tablet */

@media(max-width:991px) {

    .counter-section {
        padding: 70px 0;
    }

    .counter-title {
        margin-bottom: 50px;
    }

        .counter-title h2 {
            font-size: 38px;
        }

    .counter-box {
        margin-bottom: 45px;
    }

        .counter-box:after {
            display: none;
        }

        .counter-box h2 {
            font-size: 56px;
        }
}

/* Mobile */

@media(max-width:767px) {

    .counter-section {
        padding: 60px 0;
    }

    .counter-title h2 {
        font-size: 30px;
    }

    .counter-title p {
        font-size: 16px;
    }

    .counter-box {
        padding: 15px;
    }

        .counter-box i {
            font-size: 40px;
        }

        .counter-box h2 {
            font-size: 48px;
        }

        .counter-box h5 {
            font-size: 18px;
        }
}

/*====================================================
    ABOUT COMPANY
====================================================*/

.about-company {
    padding: 40px 0;
    background: #F8FAFD;
    position: relative;
    overflow: hidden;
}

    .about-company::before {
        content: "";
        position: absolute;
        top: -150px;
        right: -150px;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(11,77,162,.05);
    }

    .about-company::after {
        content: "";
        position: absolute;
        left: -180px;
        bottom: -180px;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: rgba(247,181,0,.06);
    }

    .about-company .container {
        position: relative;
        z-index: 2;
    }

/*=========================
IMAGE
=========================*/

.about-image {
    position: relative;
    height: 720px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0,0,0,.12);
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .8s;
    }

    .about-image:hover img {
        transform: scale(1.06);
    }

/*=========================
BADGE
=========================*/

.about-badge {
    position: absolute;
    left: 35px;
    bottom: 35px;
    min-width: 280px;
    background: #fff;
    border-left: 6px solid #F7B500;
    padding: 28px 32px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0,0,0,.15);
}

    .about-badge strong {
        display: block;
        color: #0B4DA2;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .about-badge span {
        color: #666;
        font-size: 16px;
        line-height: 1.7;
    }

/*=========================
TEXT
=========================*/

.section-subtitle {
    display: inline-block;
    color: #0B4DA2;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-heading {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.25;
    color: #222;
    margin-bottom: 35px;
}

.about-company p {
    font-size: 18px;
    color: #666;
    line-height: 2;
    margin-bottom: 28px;
}

/*=========================
CHECK LIST
=========================*/

.about-check {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px 35px;
    margin: 45px 0;
}

    .about-check div {
        display: flex;
        align-items: center;
        font-size: 17px;
        font-weight: 600;
        color: #333;
    }

    .about-check i {
        width: 36px;
        height: 36px;
        margin-right: 15px;
        border-radius: 50%;
        background: #EDF4FF;
        color: #0B4DA2;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

/*=========================
BUTTON
=========================*/

.about-company .btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    background: #F7B500;
    color: #111;
    font-weight: 700;
    border-radius: 60px;
    transition: .35s;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(247,181,0,.35);
}

    .about-company .btn-main:hover {
        background: #0B4DA2;
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 20px 45px rgba(11,77,162,.35);
    }

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1199px) {

    .about-image {
        height: 620px;
    }

    .section-heading {
        font-size: 44px;
    }
}

@media(max-width:991px) {

    .about-company {
        padding: 80px 0;
    }

    .about-image {
        height: 520px;
        margin-bottom: 50px;
    }

    .about-badge {
        left: 20px;
        right: 20px;
        bottom: 20px;
        min-width: auto;
        padding: 20px 24px;
    }

    .section-heading {
        font-size: 36px;
    }

    .about-check {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {

    .about-image {
        height: 380px;
    }

    .section-heading {
        font-size: 30px;
    }

    .about-company p {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-company .btn-main {
        width: 100%;
    }
}

/*===================================
SERVICE
===================================*/

.service-area {
    padding: 40px 0;
    background: #fff;
}

.section-center {
    text-align: center;
    margin-bottom: 70px;
}

    .section-center span {
        color: #0B4DA2;
        font-weight: 700;
        letter-spacing: 3px;
    }

    .section-center h2 {
        font-size: 48px;
        font-weight: 800;
        margin: 20px 0;
    }

    .section-center p {
        max-width: 700px;
        margin: auto;
        color: #666;
        line-height: 1.8;
    }

.service-box {
    background: #fff;
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
    height: 100%;
}

    .service-box i {
        font-size: 50px;
        color: #0B4DA2;
        margin-bottom: 25px;
    }

    .service-box h4 {
        font-weight: 700;
        margin-bottom: 20px;
    }

    .service-box p {
        color: #666;
        line-height: 1.8;
    }

    .service-box:hover {
        transform: translateY(-12px);
    }
/*==========================================
COMMITMENT
===========================================*/

.commitment-section {
    padding: 40px 0;
    background: #fff;
}

.commit-left span {
    color: #0B4DA2;
    font-weight: 700;
    letter-spacing: 3px;
}

.commit-left h2 {
    font-size: 48px;
    font-weight: 800;
    margin: 25px 0;
    line-height: 1.3;
}

.commit-left p {
    color: #666;
    line-height: 2;
    font-size: 17px;
}

.commit-item {
    display: flex;
    align-items: flex-start;
    padding: 35px 0;
    border-bottom: 1px solid #E6ECF5;
    transition: .35s;
}

    .commit-item:last-child {
        border-bottom: none;
    }

.number {
    min-width: 90px;
    font-size: 42px;
    font-weight: 800;
    color: #D7E3F5;
    transition: .35s;
}

.commit-item h4 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.commit-item p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.commit-item:hover {
    padding-left: 20px;
}

    .commit-item:hover .number {
        color: #F7B500;
    }
