﻿/* ==========================================================
   ABOUT PAGE
========================================================== */


/* ==========================================================
   INNER PAGE BANNER
========================================================== */

.inner-page-banner {

    position: relative;

    padding: 75px 0;

    background:
        linear-gradient(
            100deg,
            #092f61 0%,
            #12488a 65%,
            #1c5da3 100%
        );

    overflow: hidden;
}


.inner-page-banner::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    border-radius: 50%;

    background: rgba(255,255,255,.04);

    right: -100px;

    top: -150px;
}


.inner-page-banner::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    background: rgba(245,180,0,.08);

    left: -100px;

    bottom: -150px;
}


.inner-banner-content {

    position: relative;

    z-index: 2;

}


.inner-banner-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--yellow);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.inner-banner-label::before {

    content: "";

    width: 32px;

    height: 3px;

    background: var(--yellow);

    border-radius: 5px;
}


.inner-banner-content h1 {

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(40px, 5vw, 60px);

    line-height: 1.1;

    font-weight: 800;

    margin: 0 0 18px;
}


.inner-breadcrumb {

    display: flex;

    align-items: center;

    gap: 10px;

    color: rgba(255,255,255,.72);

    font-size: 13px;

    font-weight: 600;
}


.inner-breadcrumb a {

    color: #ffffff;

    text-decoration: none;

    transition: .3s;
}


.inner-breadcrumb a:hover {

    color: var(--yellow);
}


.inner-breadcrumb i {

    font-size: 10px;

    color: var(--yellow);
}


/* ==========================================================
   WELCOME SECTION
========================================================== */

.about-welcome-section {

    padding: 100px 0;

    background: #ffffff;
}


/* ==========================================================
   SECTION LABEL
========================================================== */

.about-section-label {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--primary);

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 15px;
}


.about-section-label span {

    width: 32px;

    height: 3px;

    background: var(--yellow);

    border-radius: 5px;
}


/* ==========================================================
   MAIN TITLE
========================================================== */

.about-main-title {

    color: var(--primary-dark);

    font-family: "Playfair Display", serif;

    font-size: clamp(36px, 4vw, 52px);

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 25px;
}


.about-main-title span {

    color: var(--primary);
}


/* ==========================================================
   TEXT
========================================================== */

.about-welcome-section p {

    color: #5f6d7b;

    font-size: 16px;

    line-height: 1.85;

    margin-bottom: 17px;
}


.about-welcome-section .about-lead {

    color: #263d58;

    font-size: 18px;

    line-height: 1.75;

    font-weight: 500;
}


/* ==========================================================
   HIGHLIGHT
========================================================== */

.about-highlight {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 28px;

    padding: 18px 20px;

    background: #f4f8fc;

    border-left: 4px solid var(--yellow);

    border-radius: 5px;
}


.about-highlight-icon {

    width: 48px;

    height: 48px;

    min-width: 48px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--primary);

    color: #ffffff;

    font-size: 20px;
}


.about-highlight strong {

    color: var(--primary-dark);

    font-size: 15px;
}


.about-highlight p {

    margin: 4px 0 0;

    font-size: 13px;

    line-height: 1.5;
}


/* ==========================================================
   HISTORY CARD
========================================================== */

.about-history-card {

    position: relative;

    padding: 40px;

    background:
        linear-gradient(
            145deg,
            #f1f7fb,
            #fffdf3
        );

    border-radius: 10px;

    border: 1px solid #e3eaf1;

    box-shadow:
        0 12px 35px rgba(18,63,140,.08);

    overflow: hidden;
}


.history-number {

    position: absolute;

    right: -10px;

    top: -25px;

    color: rgba(18,63,140,.05);

    font-size: 130px;

    font-weight: 900;

    line-height: 1;
}


.history-icon {

    position: relative;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--yellow);

    color: var(--dark);

    border-radius: 8px;

    font-size: 25px;

    margin-bottom: 25px;
}


.about-history-card h3 {

    position: relative;

    color: var(--primary-dark);

    font-family: "Playfair Display", serif;

    font-size: 31px;

    line-height: 1.2;

    font-weight: 800;

    margin-bottom: 15px;
}


.about-history-card h3 span {

    color: var(--primary);
}


.about-history-card > p {

    position: relative;

    font-size: 14px;

    line-height: 1.75;

    color: #657386;

    margin-bottom: 25px;
}


.history-line {

    height: 1px;

    background: #dce5ed;

    margin-bottom: 18px;
}


.history-item {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 10px 0;
}


.history-item strong {

    min-width: 52px;

    color: var(--primary);

    font-size: 15px;
}


.history-item span {

    color: #667586;

    font-size: 13px;

    line-height: 1.5;
}


/* ==========================================================
   PILLARS SECTION
========================================================== */

.about-pillars-section {

    padding: 100px 0;

    background: #f5f9fc;
}


/* ==========================================================
   HEADING
========================================================== */

.about-heading {

    max-width: 750px;

    margin: 0 auto 60px;

    text-align: center;
}


.about-section-label.center {

    justify-content: center;
}


.about-heading h2 {

    color: var(--primary-dark);

    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 4vw, 52px);

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 17px;
}


.about-heading h2 span {

    color: var(--primary);
}


.about-heading p {

    color: #687687;

    font-size: 16px;

    line-height: 1.8;

    margin: 0;
}


/* ==========================================================
   PILLAR ROW
========================================================== */

.about-pillar-row {

    position: relative;

    display: grid;

    grid-template-columns: 90px 1fr 90px;

    align-items: center;

    gap: 30px;

    background: #ffffff;

    padding: 38px 40px;

    margin-bottom: 20px;

    border: 1px solid #e3eaf0;

    border-radius: 8px;

    box-shadow:
        0 7px 25px rgba(20,45,80,.05);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.about-pillar-row:hover {

    transform: translateY(-4px);

    box-shadow:
        0 14px 35px rgba(20,45,80,.09);
}


/* ==========================================================
   NUMBER
========================================================== */

.pillar-number {

    font-family: "Playfair Display", serif;

    font-size: 50px;

    line-height: 1;

    font-weight: 800;

    color: rgba(18,63,140,.13);
}


/* ==========================================================
   CONTENT
========================================================== */

.pillar-content {

    border-left: 2px solid var(--yellow);

    padding-left: 25px;
}


.pillar-label {

    color: var(--primary);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}


.pillar-content h3 {

    color: var(--primary-dark);

    font-family: "Playfair Display", serif;

    font-size: 29px;

    line-height: 1.25;

    font-weight: 800;

    margin-bottom: 13px;
}


.pillar-content h3 span {

    color: var(--primary);
}


.pillar-content p {

    color: #657384;

    font-size: 14px;

    line-height: 1.75;

    margin-bottom: 8px;
}


/* ==========================================================
   ICON
========================================================== */

.pillar-icon {

    width: 70px;

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf5fb;

    color: var(--primary);

    font-size: 28px;

    border: 1px solid #dce9f3;

    transition: .3s;
}


.about-pillar-row:hover .pillar-icon {

    background: var(--yellow);

    color: var(--dark);

    border-color: var(--yellow);
}


/* ==========================================================
   CLOSING SECTION
========================================================== */

.about-closing-section {

    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #092f61,
            #164f92
        );

    position: relative;

    overflow: hidden;
}


.about-closing-section::before {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    background: rgba(255,255,255,.04);

    right: -100px;

    top: -130px;
}


.about-closing-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;
}


.closing-icon {

    width: 58px;

    height: 58px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--yellow);

    color: var(--dark);

    font-size: 27px;
}


.about-closing-content h2 {

    color: #ffffff;

    font-family: "Playfair Display", serif;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.2;

    font-weight: 800;

    margin-bottom: 20px;
}


.about-closing-content h2 span {

    color: var(--yellow);
}


.about-closing-content p {

    max-width: 720px;

    margin: auto;

    color: rgba(255,255,255,.82);

    font-size: 16px;

    line-height: 1.8;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991px) {

    .inner-page-banner {

        padding: 60px 0;
    }

    .about-welcome-section,
    .about-pillars-section {

        padding: 75px 0;
    }

    .about-pillar-row {

        grid-template-columns: 70px 1fr 70px;

        gap: 20px;

        padding: 30px;
    }

    .pillar-content h3 {

        font-size: 25px;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .inner-page-banner {

        padding: 50px 0;
    }

    .inner-banner-content h1 {

        font-size: 40px;
    }

    .about-welcome-section,
    .about-pillars-section {

        padding: 60px 0;
    }

    .about-main-title {

        font-size: 36px;
    }

    .about-history-card {

        padding: 30px;
    }

    .about-heading {

        margin-bottom: 35px;
    }

    .about-pillar-row {

        grid-template-columns: 1fr;

        gap: 15px;

        padding: 25px 22px;
    }

    .pillar-number {

        font-size: 38px;
    }

    .pillar-content {

        border-left: none;

        border-top: 2px solid var(--yellow);

        padding-left: 0;

        padding-top: 15px;
    }

    .pillar-icon {

        width: 55px;

        height: 55px;

        font-size: 22px;
    }

    .about-closing-section {

        padding: 65px 0;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .about-main-title {

        font-size: 32px;
    }

    .about-welcome-section p {

        font-size: 15px;
    }

    .about-highlight {

        align-items: flex-start;

        padding: 15px;
    }

    .about-history-card h3 {

        font-size: 27px;
    }

    .pillar-content h3 {

        font-size: 24px;
    }

}