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

.about-hero-section {
    padding: 40px 0;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(25, 118, 210, .08);
}

.shape-1 {
    width: 380px;
    height: 380px;
    left: -180px;
    top: -120px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    right: -100px;
    bottom: -120px;
}

.about-hero-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #16213e;
    margin: 20px 0;
}

.about-hero-content h1 span {
    color: #1e88e5;
}

.about-hero-content p {
    color: #6c757d;
    line-height: 30px;
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin: 35px 0;
    flex-wrap: wrap;
}

.btn-primary-about {
    background: #1e88e5;
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.btn-primary-about:hover {
    background: #1565c0;
    color: #fff;
}

.btn-outline-about {
    border: 2px solid #1e88e5;
    color: #1e88e5;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.feature-item i {
    color: #1e88e5;
}

.about-hero-image {
    position: relative;
}

.about-hero-image img {
    border-radius: 30px;
}

.floating-box {
    position: absolute;
    background: #fff;
    padding: 18px 22px;
    border-radius: 18px;
    display: flex;
    gap: 15px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.box-1 {
    left: -20px;
    top: 60px;
}

.box-2 {
    right: -20px;
    bottom: 60px;
}

.floating-box i {
    width: 60px;
    height: 60px;
    background: #1e88e5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*=========================================
BREADCRUMB
=========================================*/

.about-breadcrumb {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.about-breadcrumb ul {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

.company-image {
    position: relative;
}

.experience-box {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #1e88e5;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
}

.company-content h2 {
    font-size: 2.25rem;
    font-weight: 600;
    margin: 20px 0;
}

.company-content h2 span {
    color: #1e88e5;
}

.company-content p {
    color: #6c757d;
    line-height: 30px;
}

.about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.about-list-item {
    display: flex;
    gap: 10px;
    font-weight: 600;
}

.about-list-item i {
    color: #1e88e5;
}

/*=========================================
COUNTER
=========================================*/

.about-counter-section {
    padding: 80px 0;
    background: #f8fbff;
}

.counter-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
    transition: .3s;
}

.counter-box:hover {
    transform: translateY(-10px);
}

.counter-box i {
    font-size: 42px;
    color: #1e88e5;
    margin-bottom: 20px;
}

.counter-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.counter-box p {
    margin: 0;
    color: #6c757d;
}

@media(max-width:991px) {

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

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

    .box-1,
    .box-2 {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 20px;
    }

}

@media(max-width:767px) {

    .about-hero-section,
    .about-company-section,
    .about-counter-section {
        padding: 70px 0;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

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

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

}

/*==================================
MISSION & VISION
==================================*/

.mission-vision-section {
    padding: 40px 0;
    background: #f8fbff;
}

.mission-card,
.vision-card {
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .06);
    height: 100%;
    transition: .35s;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #1e88e5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.mission-card h3,
.vision-card h3 {
    font-size: 25px;
    font-weight: 600;
    margin: 20px 0;
}

.mission-card p,
.vision-card p {
    color: #6c757d;
}

.mission-card ul,
.vision-card ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.mission-card li,
.vision-card li {
    margin-bottom: 15px;
}

.mission-card li i,
.vision-card li i {
    color: #1e88e5;
    margin-right: 10px;
}

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

.why-us-section {
    padding: 40px 0;
}

.why-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
    transition: .35s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-card i {
    font-size: 45px;
    color: #1e88e5;
    margin-bottom: 20px;
}

.why-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: #6c757d;
    line-height: 28px;
}

/*==================================
PROCESS
==================================*/

.process-section {
    padding: 40px 0;
    background: #f8fbff;
}

.process-box {
    background: #fff;
    border-radius: 25px;
    padding: 35px 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
    transition: .35s;
}

.process-box:hover {
    transform: translateY(-10px);
}

.process-box span {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e88e5;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.process-box i {
    font-size: 42px;
    color: #1e88e5;
    margin: 30px 0 20px;
}

.process-box h5 {
    font-weight: 700;
}

@media(max-width:991px) {

    .mission-vision-section,
    .why-us-section,
    .process-section {
        padding: 80px 0;
    }

}

@media(max-width:767px) {

    .mission-card,
    .vision-card {
        padding: 30px;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 26px;
    }

}

/*====================================
ACHIEVEMENTS
====================================*/

.achievement-section {
    padding: 40px 0;
    background: #fff;
}

.achievement-box {
    background: #f8fbff;
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    transition: .35s;
}

.achievement-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.achievement-box i {
    font-size: 45px;
    color: #1e88e5;
    margin-bottom: 20px;
}

.achievement-box h2 {
    font-size: 42px;
    font-weight: 800;
}

.achievement-box p {
    color: #6c757d;
}

/*====================================
CORE VALUES
====================================*/

.core-values-section {
    padding: 40px 0;
    background: #f8fbff;
}

.value-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    transition: .35s;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card i {
    width: 80px;
    height: 80px;
    background: #1e88e5;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: auto auto 20px;
}

.value-card h4 {
    font-weight: 700;
}

.value-card p {
    color: #6c757d;
}

/*====================================
CTA
====================================*/

.about-cta-section {
    padding: 40px 0;
}

.about-cta-box {
    background: linear-gradient(135deg, #1976d2, #1565c0);
    border-radius: 30px;
    padding: 60px;
    color: #fff;
}

.about-cta-box h2 {
    font-size: 42px;
    font-weight: 800;
}

.btn-white {
    background: #fff;
    color: #1976d2;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-right: 10px;
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

/*====================================
FAQ
====================================*/

.about-faq-section {
    padding: 40px 0;
    background: #f8fbff;
}

.accordion-item {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.accordion-button {
    font-weight: 700;
    padding: 22px 25px;
}

.accordion-button:not(.collapsed) {
    background: #1e88e5;
    color: #fff;
}

.accordion-body {
    padding: 25px;
    color: #6c757d;
    line-height: 30px;
}

@media(max-width:991px) {

    .achievement-section,
    .core-values-section,
    .about-cta-section,
    .about-faq-section {
        padding: 80px 0;
    }

    .about-cta-box {
        padding: 40px;
        text-align: center;
    }

}

@media(max-width:767px) {

    .about-cta-box h2 {
        font-size: 30px;
    }

    .btn-white,
    .btn-outline-white {
        display: block;
        margin: 10px auto;
        text-align: center;
    }

}