/* =========================================================
   ABOUT.CSS — About Page Full Styling
   Sixmoons Corporate Theme
========================================================= */


/* ---------------------------------------------------------
   ABOUT HERO SECTION
--------------------------------------------------------- */

.about-hero {
    height: 60vh;
    min-height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/industrial-tech-bg.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.22);
    filter: brightness(0.9);
    z-index: -2;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(0,30,96,0.85), rgba(0,86,209,0.7)),
        linear-gradient(180deg, rgba(0,0,0,0.45), transparent 40%);
    z-index: -1;
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.about-hero-content p {
    font-size: 18px;
    color: #e6ecff;
    max-width: 750px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .about-hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .about-hero-content h1 {
        font-size: 30px;
    }
}


/* ---------------------------------------------------------
   ABOUT – IMAGE + TEXT SPLIT
--------------------------------------------------------- */

.about-split {
    padding: 100px 0;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-image-box {
    flex: 1 1 450px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
}

.about-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1 1 450px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: #003c99;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .about-split {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding: 0 15px;
    }
}


/* ---------------------------------------------------------
   ABOUT HIGHLIGHT CARDS
--------------------------------------------------------- */

.about-highlights {
    padding: 90px 0;
    background: #f7f9fc;
}

.about-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.about-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 26px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    position: relative;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    border-color: #cbd5f5;
}

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #003c99;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

@media (max-width: 991px) {
    .about-highlights-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .about-highlights-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------------------------------------------------------
   IDENTITY SECTION (MISSION / VISION / VALUES)
--------------------------------------------------------- */

.identity-section {
    padding: 100px 0;
    background: #ffffff;
}

.identity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.identity-card {
    background: #ffffff;
    padding: 32px 26px;
    border-radius: 16px;
    border-left: 5px solid #0056d1;
    border-right: 5px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    position: relative;
}

.identity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.14);
    border-right-color: #f2b41b;
}

.identity-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #003c99;
    margin-bottom: 12px;
}

.identity-card p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .identity-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


/* ---------------------------------------------------------
   TIMELINE SECTION
--------------------------------------------------------- */

.timeline-section {
    padding: 100px 0;
    background: #f7f9fc;
}

.timeline {
    border-left: 3px solid #0056d1;
    padding-left: 30px;
    position: relative;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -36px;
    top: 5px;
    width: 18px;
    height: 18px;
    background: #0056d1;
    border-radius: 50%;
    box-shadow: 0 0 0 6px #e4edff;
}

.timeline-item .year {
    font-size: 20px;
    font-weight: 700;
    color: #003c99;
}

.timeline-item p {
    margin-top: 6px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   LEADERSHIP / TEAM SECTION
--------------------------------------------------------- */

.team-section {
    padding: 110px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.team-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 34px 26px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.15);
    border-color: #cbd5f5;
}

.team-photo img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #0056d1;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: #003c99;
}

.team-role {
    font-size: 14px;
    font-weight: 600;
    color: #f2b41b;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.team-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #4a4a4a;
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------------------------------------------------------
   GSAP ANIMATION SUPPORT
--------------------------------------------------------- */

[data-anim] {
    opacity: 0;
    transform: translateY(60px);
}

[data-anim*="fade-left"] { transform: translateX(-50px); }
[data-anim*="fade-right"] { transform: translateX(50px); }
[data-anim*="fade-scale"] { transform: scale(0.92); }

.floating-card {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}
