/* ==================================================
                    ABOUT HERO
================================================== */

.about-hero {

    padding: 180px 0 120px;

    background: linear-gradient(180deg, #F8FBFE, #EEF6FC);

    position: relative;

}

.hero-grid {

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(rgba(18, 78, 120, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 78, 120, .05) 1px, transparent 1px);

    background-size: 60px 60px;

}

.hero-circle {

    position: absolute;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .25;

}

.hero-circle-1 {

    width: 380px;

    height: 380px;

    background: #124E78;

    top: -120px;

    right: -100px;

}

.hero-circle-2 {

    width: 260px;

    height: 260px;

    background: #D9A404;

    bottom: -80px;

    left: -80px;

}

.about-title {

    font-size: clamp(3rem, 6vw, 4.8rem);

    font-weight: 800;

    line-height: 1.1;

    margin: 30px 0;

}

.about-description {

    color: #64748B;

    line-height: 1.9;

    font-size: 18px;

}

.custom-breadcrumb {

    background: none;

    padding: 0;

}

.custom-breadcrumb a {

    color: #124E78;

}

.about-hero-image {

    position: relative;

}

.image-placeholder {

    height: 560px;

    border-radius: 30px;

    border: 2px dashed #C8D9E7;

    background: #EAF4FB;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

}

.image-placeholder i {

    font-size: 90px;

    color: #124E78;

}

.floating-card {

    position: absolute;

    background: #fff;

    border-radius: 18px;

    padding: 18px 22px;

    display: flex;

    gap: 15px;

    align-items: center;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);

}

.floating-card i {

    width: 55px;

    height: 55px;

    background: #124E78;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

}

.floating-card-1 {

    top: 40px;

    left: -35px;

}

.floating-card-2 {

    bottom: 20px;

    right: -35px;

}

/* ==================================================
                    OUR STORY
================================================== */

.our-story {

    padding: 120px 0;

    background: #fff;

}

.story-image .image-placeholder {

    height: 600px;

}

.story-item {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    font-weight: 600;

}

.story-item i {

    color: #D9A404;

}

@media(max-width:991px) {

    .about-hero {

        padding: 150px 0 90px;

        text-align: center;

    }

    .floating-card {

        position: relative;

        left: 0;

        right: 0;

        top: 0;

        bottom: 0;

        margin: 20px auto;

        width: 100%;

        max-width: 420px;

    }

    .story-image {

        margin-bottom: 40px;

    }

}

/*==================================================
            MISSION
==================================================*/

.mission-section {

    padding: 120px 0;

    background: #F8FBFE;

}

.value-card {

    background: #fff;

    padding: 45px;

    border-radius: 24px;

    height: 100%;

    transition: .35s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    position: relative;

    overflow: hidden;

}

.value-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 4px;

    background: linear-gradient(90deg, #124E78, #D9A404);

}

.value-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 30px 70px rgba(18, 78, 120, .12);

}

.value-icon {

    width: 80px;

    height: 80px;

    border-radius: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #EEF6FC;

    color: #124E78;

    font-size: 32px;

    margin-bottom: 30px;

}

.value-card h3 {

    font-weight: 700;

    margin-bottom: 20px;

}

.value-card p {

    color: #64748B;

    line-height: 1.9;

}

/*==================================================
                TIMELINE
==================================================*/

.timeline-section {

    padding: 120px 0;

    background: #fff;

}

.timeline {

    position: relative;

    max-width: 1100px;

    margin: auto;

}

.timeline::before {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    transform: translateX(-50%);

    width: 4px;

    height: 100%;

    background: #D9A404;

}

.timeline-item {

    width: 50%;

    position: relative;

    margin-bottom: 60px;

}

.timeline-item.left {

    padding-right: 60px;

}

.timeline-item.right {

    margin-left: auto;

    padding-left: 60px;

}

.timeline-content {

    background: #fff;

    padding: 35px;

    border-radius: 22px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: .35s;

}

.timeline-content:hover {

    transform: translateY(-8px);

}

.timeline-content span {

    display: inline-block;

    margin-bottom: 15px;

    color: #124E78;

    font-weight: 700;

}

.timeline-content h4 {

    font-weight: 700;

    margin-bottom: 15px;

}

.timeline-content p {

    color: #64748B;

    line-height: 1.8;

}

.timeline-item::before {

    content: "";

    position: absolute;

    top: 35px;

    width: 18px;

    height: 18px;

    background: #124E78;

    border: 5px solid #D9A404;

    border-radius: 50%;

}

.timeline-item.left::before {

    right: -11px;

}

.timeline-item.right::before {

    left: -11px;

}

@media(max-width:991px) {

    .timeline::before {

        left: 25px;

    }

    .timeline-item {

        width: 100%;

        padding-left: 70px !important;

        padding-right: 0 !important;

    }

    .timeline-item::before {

        left: 16px !important;

    }

}

/*==================================================
            LEADERSHIP
==================================================*/

.leadership-section {

    padding: 120px 0;

    background: #F8FBFE;

}

.leadership-image .image-placeholder {

    height: 520px;

}

.leader-info {

    margin-top: 40px;

    border-left: 4px solid #D9A404;

    padding-left: 20px;

}

.leader-info h5 {

    font-weight: 700;

    margin-bottom: 8px;

}

.leader-info span {

    color: #64748B;

}

/*==================================================
            TRUST
==================================================*/

.trust-section {

    padding: 120px 0;

    background: #fff;

}

.trust-card {

    background: #fff;

    border-radius: 24px;

    padding: 40px 30px;

    text-align: center;

    transition: .35s;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);

    height: 100%;

}

.trust-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(18, 78, 120, .10);

}

.trust-card i {

    width: 80px;

    height: 80px;

    margin: auto;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 20px;

    background: #EEF6FC;

    color: #124E78;

    font-size: 34px;

    margin-bottom: 25px;

}

.trust-card h4 {

    font-weight: 700;

    margin-bottom: 15px;

}

.trust-card p {

    color: #64748B;

    line-height: 1.8;

}