/* ==========================================
   ABOUT US PAGE SPECIFIC STYLES
   ========================================== */

/* Hero Section */
.about-hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 145px); /* Matches internal hero section height */
    min-height: 600px;
    overflow: hidden;
    background-color: #253038;
    color: #ffffff;
    margin-top: 145px;
    display: flex;
    align-items: center;
}

.about-hero-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 2;
}

.about-hero-section .container {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .about-hero-section {
        margin-top: 112px;
        height: calc(100vh - 112px); /* Matches internal hero height under 1024px */
        min-height: 520px;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        margin-top: 102px;
        height: calc(100vh - 102px); /* Matches internal hero height under 480px */
    }
}

.about-hero-content {
    position: relative;
    z-index: 5;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    text-align: left;
}

.about-hero-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 5px;
}

.about-hero-desc {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 750px;
    margin-bottom: 10px;
}

.about-hero-buttons {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
    flex-wrap: wrap;
}

.about-hero-buttons .btn-cert-submit,
.about-hero-buttons .btn-secondary-outline {
    flex: 0 0 auto;
    max-width: 250px;
    width: 100%;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: "Hind", sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 0 28px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    max-height: none !important;
}

.btn-secondary-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary-outline:hover {
    background-color: #ffffff;
    color: #253038;
}

@media (max-width: 576px) {
    .about-hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .about-hero-buttons .btn-cert-submit,
    .about-hero-buttons .btn-secondary-outline {
        max-width: 100%;
        width: 100%;
    }
}

.section-tagline {
    color: #F47425;
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Founder Leadership Section */
.leadership-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.leadership-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.founder-photo-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
    width: 350px;
    height: 450px;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.founder-photo-box:hover .founder-photo {
    transform: scale(1.03);
}

.founder-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.founder-title-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.founder-title-meta h3 {
    font-family: "Outfit", sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #253139;
    margin: 0;
}

.founder-title-meta .role {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    color: #F47425;
    font-weight: 500;
}

.founder-bio {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.founder-quote {
    font-family: "Outfit", sans-serif;
    font-size: 18px;
    font-style: italic;
    color: #1a202c;
    border-left: 4px solid #F47425;
    padding-left: 20px;
    margin: 25px 0 10px 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .leadership-section {
        padding: 60px 24px;
    }
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .founder-photo-box {
        width: 100%;
        max-width: 300px;
        height: 380px;
        margin: 0 auto;
    }
}
