﻿/*=========================================================
                    ABOUT PAGE
=========================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins',sans-serif;
    background: #fff;
    color: #333;
}


/*=========================================================
                    HERO
=========================================================*/

.page-banner {
    height: 450px;
    background: linear-gradient(rgba(13,71,161,.85), rgba(13,71,161,.85)), url("../images/banner.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-overlay {
    width: 90%;
    max-width: 900px;
}

    .banner-overlay h1 {
        color: #fff;
        font-size: 64px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .banner-overlay p {
        color: #f2f2f2;
        font-size: 22px;
        line-height: 1.8;
    }


/*=========================================================
                ABOUT COMPANY
=========================================================*/

.about-company {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    overflow: hidden;
    border-radius: 22px;
}

    .about-image img {
        width: 100%;
        display: block;
        border-radius: 22px;
        transition: .5s;
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

    .about-image:hover img {
        transform: scale(1.05);
    }

.about-content span {
    display: inline-block;
    color: #ff9800;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-content h2 {
    color: #0d47a1;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

.about-content p {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
}


/*=========================================================
            MANAGING DIRECTOR
=========================================================*/

.director-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.director-card {
    display: flex;
    align-items: center;
    gap: 70px;
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

.director-image {
    width: 360px;
    flex-shrink: 0;
}

    .director-image img {
        width: 100%;
        border-radius: 20px;
        display: block;
        box-shadow: 0 15px 35px rgba(0,0,0,.18);
    }

.director-content {
    flex: 1;
}

.director-tag {
    display: inline-block;
    color: #ff9800;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.director-content h2 {
    color: #0d47a1;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.director-line {
    width: 90px;
    height: 4px;
    background: #ff9800;
    border-radius: 20px;
    margin-bottom: 25px;
}

.director-content p {
    color: #666;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
    text-align: justify;
}

.director-content blockquote {
    border-left: 5px solid #ff9800;
    padding-left: 25px;
    color: #0d47a1;
    font-size: 22px;
    font-style: italic;
    margin: 30px 0;
}

.director-signature {
    margin-bottom: 30px;
}

    .director-signature h3 {
        color: #0d47a1;
        margin-bottom: 5px;
    }

    .director-signature span {
        color: #777;
    }
/*=========================================================
            MISSION • VISION • VALUES
=========================================================*/

.mission-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title span {
        display: inline-block;
        color: #ff9800;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .section-title h2 {
        color: #0d47a1;
        font-size: 46px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .section-title p {
        color: #666;
        font-size: 18px;
        line-height: 1.8;
        max-width: 850px;
        margin: auto;
    }

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}

.mission-card {
    background: #fff;
    border-radius: 22px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .mission-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.mission-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    color: #fff;
    font-size: 42px;
}

.mission-card h3 {
    color: #0d47a1;
    font-size: 28px;
    margin-bottom: 18px;
}

.mission-card p {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
}


/*=========================================================
                COMPANY STATS
=========================================================*/

.stats-section {
    padding: 90px 0;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 25px;
}

    .stat-card i {
        font-size: 42px;
        color: #fff;
        margin-bottom: 18px;
    }

    .stat-card h2 {
        color: #fff;
        font-size: 58px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .stat-card p {
        color: #dfe8ff;
        font-size: 18px;
    }


/*=========================================================
                WHY CHOOSE US
=========================================================*/

.why-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.why-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
    color: #fff;
    font-size: 34px;
}

.why-card h3 {
    color: #0d47a1;
    font-size: 24px;
    margin-bottom: 15px;
}

.why-card p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}


/*=========================================================
                RESPONSIVE
=========================================================*/

@media(max-width:992px) {

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 34px;
    }

    .section-title p {
        font-size: 16px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .mission-card {
        padding: 35px 25px;
    }

    .why-card {
        padding: 35px 25px;
    }

    .stat-card h2 {
        font-size: 42px;
    }
}
/*=========================================================
                    CALL TO ACTION
=========================================================*/

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg,#0d47a1,#1565c0);
}

.cta-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: #fff;
}

    .cta-box h2 {
        font-size: 52px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .cta-box p {
        font-size: 18px;
        color: #dfe8ff;
        line-height: 1.9;
        margin-bottom: 35px;
    }

    .cta-box .btn {
        display: inline-block;
        padding: 16px 42px;
        background: #ff9800;
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        font-size: 18px;
        font-weight: 600;
        transition: .35s;
        box-shadow: 0 15px 35px rgba(255,152,0,.35);
    }

        .cta-box .btn:hover {
            background: #ff7a00;
            transform: translateY(-5px);
        }




/*=========================================================
                    BUTTONS
=========================================================*/

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: #ff9800;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

    .btn:hover {
        background: #ff7a00;
        transform: translateY(-4px);
    }


/*=========================================================
                    ANIMATIONS
=========================================================*/

.about-company,
.director-section,
.mission-section,
.stats-section,
.why-section,
.cta-section {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-image img,
.director-image img {
    transition: .45s;
}

.about-image:hover img,
.director-image:hover img {
    transform: scale(1.05);
}


/*=========================================================
                    RESPONSIVE
=========================================================*/

@media(max-width:992px) {

    .footer-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .director-card {
        flex-direction: column;
        text-align: center;
    }

    .director-image {
        width: 280px;
    }

    .director-line {
        margin: 20px auto;
    }

    .director-content p {
        text-align: center;
    }

    .cta-box h2 {
        font-size: 40px;
    }
}

@media(max-width:768px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .page-banner {
        height: 320px;
    }

    .banner-overlay h1 {
        font-size: 38px;
    }

    .banner-overlay p {
        font-size: 16px;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .director-content h2 {
        font-size: 32px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .cta-box p {
        font-size: 16px;
    }
}

@media(max-width:480px) {

    .banner-overlay h1 {
        font-size: 30px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .director-content h2 {
        font-size: 26px;
    }

    .stat-card h2 {
        font-size: 40px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .footer-logo h2 {
        font-size: 20px;
    }
}
/* Learn More Button */

.learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: #0d47a1;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .learn-btn:hover {
        color: #ff9800;
        transform: translateX(5px);
    }

    .learn-btn i {
        transition: .3s;
    }

    .learn-btn:hover i {
        transform: translateX(4px);
    }