/* ========== PAGE HEADER STYLES - REFERENCE DESIGN ========== */
.page-header {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 120px 0 100px;
}

/* Gradient Overlay - Dark left to transparent right */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 25%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 100%
    );
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 100%;
    text-align: left;
}

/* Section Label */
.page-header .section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f39c12;
}

/* Main Heading with Mixed Colors */
.page-header .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--font-primary);
}

.page-header .page-title .white-text {
    color: white;
    display: block;
}

.page-header .page-title .orange-text {
    color: #f39c12;
    display: block;
    font-weight: 700;
}

/* Description Text */
.page-header .page-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    font-weight: 400;
}

/* Legacy h1 support */
.page-header h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

/* Legacy p support */
.page-header > .container > .page-header-content > p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Breadcrumb - Left Aligned */
.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    list-style: none;
}

.breadcrumb-custom .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.breadcrumb-custom .breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.6);
    padding: 0 10px;
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: #f39c12;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #f39c12;
}

/* Responsive Design */
@media (max-width: 991px) {
    .page-header {
        min-height: 450px;
        padding: 100px 0 80px;
    }

    .page-header .page-title,
    .page-header h1 {
        font-size: 2.75rem;
    }

    .page-header .page-description {
        font-size: 1.05rem;
    }
}

@media (max-width: 767px) {
    .page-header {
        min-height: 400px;
        padding: 80px 0 60px;
        background-position: 70% center;
    }
    
    .page-header::before {
        background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.8) 60%,
            rgba(0, 0, 0, 0.6) 100%
        );
    }

    .page-header .page-title,
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header .page-description,
    .page-header > .container > .page-header-content > p {
        font-size: 1rem;
    }
    
    .page-header .section-label {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

/* ========== EXISTING STYLES ========== */
.director-image-box {
    position: relative;
}

.director-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    font-size: 2rem;
    color: white;
}

.credential-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.credential-item:last-child {
    border-bottom: none;
}

.credential-item i {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
}

.message-box {
    position: relative;
}

.quote-icon {
    opacity: 0.1;
}

.message-content p {
    line-height: 1.8;
    color: #495057;
}

.signature {
    border-top: 2px solid #e9ecef;
    padding-top: 20px;
}

.achievement-card {
    transition: all 0.3s ease;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-10px);
    background: var(--primary-color) !important;
    color: white;
}

.achievement-card:hover h5,
.achievement-card:hover p,
.achievement-card:hover i {
    color: white !important;
}

.quote-section {
    max-width: 900px;
    margin: 0 auto;
}