﻿/* =========================================
   ABOUT HERO SECTION
========================================= */

.about-hero {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #ffffff;
}

/* =========================================
   BACKGROUND IMAGE
========================================= */

.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 58%;
    height: 100%;
    background:
    url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1600&auto=format&fit=crop')
    center center/cover no-repeat;
    clip-path: polygon(14% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* BLUE SHAPE */

.about-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 520px;
    height: 240px;
    background: #0A43B8;
    border-radius: 50%;
    transform: rotate(-8deg);
    border-top: 5px solid #d9a441;
}

/* OVERLAY */

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        90deg,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.96) 38%,
        rgba(255,255,255,0.70) 58%,
        rgba(255,255,255,0.10) 100%
    );
    z-index: 1;
}

/* CONTAINER */

.about-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* WRAPPER */

.about-hero-wrapper {
    width: 100%;
}

/* =========================================
   CONTENT
========================================= */

.about-hero-content {
    max-width: 560px;
    padding-top: 30px;
}

/* SUBTITLE */

.about-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0A43B8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-subtitle::after {
    content: "";
    width: 38px;
    height: 2px;
    background: #d9a441;
}

/* TITLE */

.about-hero-content h1 {
    color: #071c4d;
    font-size: 40px;
    line-height: 1.12;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* TEXT */

.about-hero-content p {
    color: #4c566f;
    font-size: 17px;
    line-height: 1.9;
    max-width: 540px;
    margin-bottom: 32px;
}

/* =========================================
   BUTTONS
========================================= */

.about-hero-btns {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* BUTTON */

.about-btn-primary,
.about-btn-outline {
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.4s ease;
}

/* PRIMARY */

.about-btn-primary {
    background: #d9a441;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(217,164,65,0.25);
}

.about-btn-primary:hover {
    background: #c7922f;
    transform: translateY(-3px);
}

/* OUTLINE */

.about-btn-outline {
    border: 1px solid #ccd5e7;
    color: #0A43B8;
    background: #ffffff;
}

.about-btn-outline:hover {
    background: #0A43B8;
    color: #ffffff;
    border-color: #0A43B8;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-hero {
        height: auto;
        padding: 120px 0 80px;
    }

    .about-hero::before {
        width: 100%;
        opacity: 0.15;
        clip-path: none;
    }

    .about-hero::after {
        display: none;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }

}

@media (max-width: 767px) {

    .about-hero {
        padding: 110px 0 70px;
    }

    .about-hero .container {
        padding: 0 20px;
    }

    .about-hero-content {
        padding-top: 0;
    }

    .about-hero-content h1 {
        font-size: 34px;
    }

    .about-hero-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-hero-btns {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .about-btn-primary,
    .about-btn-outline {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================
   ABOUT COMPANY SECTION
========================================= */

.about-company-section {
    position: relative;
    padding: 55px 0;
    background: #ffffff;
}

.about-company-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* WRAPPER */

.about-company-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* =========================================
   LEFT CONTENT
========================================= */

.about-company-content {
    width: 48%;
}

/* SUBTITLE */

.about-company-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0A43B8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-company-subtitle::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #d9a441;
}

/* TITLE */

.about-company-content h2 {
    color: #071c4d;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

/* LINE */

.about-company-line {
    width: 70px;
    height: 3px;
    background: #d9a441;
    border-radius: 10px;
    margin-bottom: 24px;
}

/* TEXT */

.about-company-content p {
    color: #5c667d;
    font-size: 15px;
    line-height: 2;
    margin-bottom: 22px;
}

/* BUTTON */

.about-company-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0A43B8;
    color: #ffffff;
    padding: 15px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.4s ease;
    margin-top: 8px;
}

.about-company-btn:hover {
    background: #072f85;
    transform: translateY(-3px);
}

/* =========================================
   RIGHT IMAGE
========================================= */

.about-company-image {
    position: relative;
    width: 48%;
}

.about-company-image img {
    width: 100%;
    height: 470px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

/* FLOATING BOX */
/* FLOATING BOX */

.about-company-floating-box {
    position: absolute;
    left: 24px;
    bottom: -22px;
    width: calc(100% - 48px);
    background:
    linear-gradient(
        135deg,
        #05205c 0%,
        #0A43B8 100%
    );
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(10,67,184,0.20);
}

/* ICON */

.about-floating-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.22);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-floating-icon i {
    color: #ffffff;
    font-size: 20px;
}

/* TEXT */

.about-floating-text h4 {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-weight: 600;
}

.about-floating-text p {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-company-wrapper {
        flex-direction: column;
    }

    .about-company-content,
    .about-company-image {
        width: 100%;
    }

    .about-company-image img {
        height: 450px;
    }

}

@media (max-width: 767px) {

    .about-company-section {
        padding: 45px 0;
    }

    .about-company-section .container {
        padding: 0 20px;
    }

    .about-company-content h2 {
        font-size: 30px;
    }

    .about-company-content p {
        font-size: 14px;
        line-height: 1.9;
    }

    .about-company-image img {
        height: 320px;
    }

    .about-company-floating-box {
        position: relative;
        left: 0;
        bottom: 0;
        width: 100%;
        margin-top: 20px;
        padding: 20px;
        border-radius: 12px;
    }

    .about-floating-text h4 {
        font-size: 18px;
    }

    .about-floating-text p {
        font-size: 13px;
    }

}


/* =========================================
   CORE SERVICES SECTION
========================================= */

.about-core-services {
    position: relative;
    padding: 42px 0;
    background: #f8fafc;
}

.about-core-services .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* =========================================
   SECTION TITLE
========================================= */

.about-core-title {
    text-align: center;
    margin-bottom: 24px;
}

/* SUBTITLE */

.about-core-title span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0A43B8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-core-title span::before,
.about-core-title span::after {
    content: "";
    width: 28px;
    height: 2px;
    background: #d9a441;
}

/* TITLE */

.about-core-title h2 {
    color: #071c4d;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* =========================================
   GRID
========================================= */

.about-core-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

/* =========================================
   ITEM
========================================= */

.about-core-item {
    background: #ffffff;
    border: 1px solid #edf1f7;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

/* HOVER */

.about-core-item:hover {
    transform: translateY(-4px);
    border-color: #0A43B8;
    box-shadow: 0 8px 20px rgba(10,67,184,0.08);
}

/* =========================================
   ICON
========================================= */

.about-core-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f4f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 16px;
}

.about-core-icon i {
    color: #0A43B8;
    font-size: 26px;
}

/* =========================================
   TITLE
========================================= */

.about-core-item h3 {
    color: #071c4d;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* =========================================
   TEXT
========================================= */

.about-core-item p {
    color: #5d677e;
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .about-core-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 767px) {

    .about-core-services {
        padding: 38px 0;
    }

    .about-core-services .container {
        padding: 0 20px;
    }

    .about-core-title {
        margin-bottom: 20px;
    }

    .about-core-title h2 {
        font-size: 24px;
    }

    .about-core-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .about-core-item {
        padding: 20px 14px;
    }

    .about-core-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .about-core-icon i {
        font-size: 22px;
    }

    .about-core-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .about-core-item p {
        font-size: 12px;
        line-height: 1.7;
    }

}


/* =========================================
   WHY CHOOSE US SECTION
========================================= */

.about-why-section {
    position: relative;
    padding: 42px 0;
    background: #ffffff;
}

.about-why-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* =========================================
   SECTION TITLE
========================================= */

.about-why-title {
    text-align: center;
    margin-bottom: 26px;
}

/* SUBTITLE */

.about-why-title span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0A43B8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-why-title span::before,
.about-why-title span::after {
    content: "";
    width: 28px;
    height: 2px;
    background: #d9a441;
}

/* TITLE */

.about-why-title h2 {
    color: #071c4d;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* =========================================
   GRID
========================================= */

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border: 1px solid #edf1f7;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

/* =========================================
   ITEM
========================================= */

.about-why-item {
    position: relative;
    padding: 24px 18px;
    text-align: center;
}

/* BORDER */

.about-why-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 22%;
    right: 0;
    width: 1px;
    height: 56%;
    background: #e9edf5;
}

/* =========================================
   ICON
========================================= */

.about-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #f4f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 16px;
}

.about-why-icon i {
    color: #0A43B8;
    font-size: 24px;
}

/* =========================================
   TITLE
========================================= */

.about-why-item h3 {
    color: #071c4d;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* =========================================
   TEXT
========================================= */

.about-why-item p {
    color: #5d677e;
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1199px) {

    .about-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-why-item:nth-child(3)::after {
        display: none;
    }

}

@media (max-width: 767px) {

    .about-why-section {
        padding: 38px 0;
    }

    .about-why-section .container {
        padding: 0 20px;
    }

    .about-why-title {
        margin-bottom: 22px;
    }

    .about-why-title h2 {
        font-size: 24px;
    }

    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-why-item {
        padding: 20px 14px;
    }

    .about-why-item::after {
        display: none;
    }

    .about-why-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .about-why-icon i {
        font-size: 22px;
    }

    .about-why-item h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .about-why-item p {
        font-size: 12px;
        line-height: 1.7;
    }

}
/* =========================================
   VISION & MISSION SECTION
========================================= */

.about-vm-section {
    position: relative;
    padding: 42px 0;
    background: #ffffff;
}

.about-vm-section .container {
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
}

/* WRAPPER */

.about-vm-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* =========================================
   CARD
========================================= */

.about-vm-card {
    position: relative;
    border-radius: 14px;
    padding: 40px 34px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    overflow: hidden;
    min-height: 250px;
}

/* VISION CARD */

.vision-card {
    background:
    linear-gradient(
        135deg,
        #edf4ff 0%,
        #f6f9ff 100%
    );
}

/* MISSION CARD */

.mission-card {
    background:
    linear-gradient(
        135deg,
        #fdf8ed 0%,
        #fffdf8 100%
    );
}

/* BUILDING EFFECT */

.about-vm-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    background:
    linear-gradient(
        to top,
        rgba(10,67,184,0.04),
        transparent
    );
    opacity: 0.7;
}

/* =========================================
   ICON
========================================= */

.about-vm-icon {
    width: 88px;
    height: 88px;
    min-width: 88px;
    border-radius: 50%;
    background: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    position: relative;
    z-index: 2;
}

/* ICON COLORS */

.vision-card .about-vm-icon i {
    color: #0A43B8;
}

.mission-card .about-vm-icon i {
    color: #d9a441;
}

.about-vm-icon i {
    font-size: 38px;
}

/* =========================================
   CONTENT
========================================= */

.about-vm-content {
    position: relative;
    z-index: 2;
}

/* TITLE */

.about-vm-content h3 {
    color: #071c4d;
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* LINE */

.about-vm-line {
    width: 52px;
    height: 3px;
    background: #d9a441;
    border-radius: 10px;
    margin-bottom: 18px;
}

/* TEXT */

.about-vm-content p {
    color: #4f5d78;
    font-size: 15px;
    line-height: 2;
    margin: 0;
    max-width: 480px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-vm-wrapper {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 767px) {

    .about-vm-section {
        padding: 38px 0;
    }

    .about-vm-section .container {
        padding: 0 20px;
    }

    .about-vm-card {
        flex-direction: column;
        padding: 28px 22px;
        gap: 18px;
        min-height: auto;
    }

    .about-vm-icon {
        width: 72px;
        height: 72px;
        min-width: 72px;
    }

    .about-vm-icon i {
        font-size: 30px;
    }

    .about-vm-content h3 {
        font-size: 26px;
    }

    .about-vm-content p {
        font-size: 14px;
        line-height: 1.9;
    }

}