.page-wrapper h2,
.page-wrapper h3,
.page-wrapper h4 {
    font-family: var(--bd-ff-title, inherit);
    color: var(--bd-primary, #051525);
    font-weight: var(--bd-fw-bold, 700);
}
.btn-primary-custom:hover {
    border: 2px solid white;
}

.page-wrapper p {
    font-family: var(--bd-ff-p, inherit);
    color: var(--bd-body-text, #4b5563);
    font-size: var(--bd-fs-p, 16px);
    line-height: 1.7;
}

/* Fluid Typography for better responsiveness */
.fluid-title-lg {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.fluid-title-md {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.3;
}

.modern-hero-section {
    position: relative;
    margin-top: 140px;
    /* Adjust this based on your header height */
    padding: 100px 0 80px;
    overflow: hidden;
    background-color: #051525;
    min-height: 400px;
    display: flex;
    align-items: center;
}

@keyframes cinematicZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(5, 21, 37, 0.95) 0%,
        rgba(5, 21, 37, 0.8) 50%,
        rgba(5, 21, 37, 0.3) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fadeUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumbs */

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 8px;
}

.breadcrumb-item a,
.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-item a i {
    color: var(--pma-primary, #ffb800);
}

.breadcrumb-item a:hover {
    color: var(--pma-secondary, #fff);
}

.breadcrumb-item.separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

/* Text Utilities */
.text-gradient-gold {
    background: linear-gradient(135deg, #ffb800 0%, #ffa000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* =========================================
                                                                   GLOBAL SECTIONS
                                                                ========================================= */
.section-space {
    padding: 80px 0;
}

.section-space-bottom {
    padding-bottom: 80px;
}

.bd-section-subtitle {
    display: inline-block;
    color: var(--bd-secondary, #ffb800);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.highlight-text {
    color: var(--bd-secondary, #ffb800);
}

/* =========================================
                                                                   ABOUT IMAGE & BADGE
                                                                ========================================= */
.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    z-index: 1;
    margin-bottom: 40px;
}

.about-image-wrapper img {
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: clamp(350px, 50vw, 550px);
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bd-secondary, #051525);
    color: #fff;
    padding: clamp(20px, 4vw, 35px) clamp(25px, 5vw, 40px);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 8px solid #fff;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.experience-badge h3 {
    font-size: clamp(40px, 6vw, 60px);
    color: #fff;
    margin: 0;
    line-height: 1;
}

.experience-badge p {
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0 0 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* =========================================
                                                                   FEATURES & BUTTONS
                                                                ========================================= */
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: var(--bd-bg-primary, #f8f9fa);
    border-radius: 12px;
    border-left: 4px solid var(--bd-secondary, #ffb800);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 184, 0, 0.1);
    color: var(--bd-secondary, #ffb800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-text {
    margin: 0;
    font-weight: 600;
    color: var(--bd-primary, #051525);
    line-height: 1.3;
}

.btn-modern {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
}

.btn-primary-custom {
    background-color: var(--bd-secondary, #ffb800);
    color: #ffffff;
    border: none;
}

.btn-primary-custom:hover {
    background-color: var(--bd-primary, #051525);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* =========================================
                                                                   MISSION & VISION
                                                                ========================================= */
.mission-area-bg {
    background-color: var(--bd-bg-primary, #f8f9fa);
}

.mv-card-modern {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mv-card-modern::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--bd-bg-primary, #f8f9fa);
    border-radius: 50%;
    transform: translate(50%, -50%);
    z-index: -1;
    transition: all 0.5s ease;
}

.mv-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mv-card-modern:hover::after {
    transform: translate(50%, -50%) scale(3);
    background: var(--bd-secondary, #ffb800);
    opacity: 0.05;
}

.mv-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.mv-card-modern:hover .mv-icon-wrapper {
    border-color: var(--bd-secondary, #ffb800);
    background: var(--bd-secondary, #ffb800);
}

.mv-icon-wrapper i {
    font-size: 30px;
    color: var(--bd-secondary, #ffb800);
    transition: all 0.3s ease;
}

.mv-card-modern:hover .mv-icon-wrapper i {
    color: #fff;
}

.mv-card-modern h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* =========================================
                                                                   DIRECTOR MESSAGE
                                                                ========================================= */
.director-box {
    background: #fff;
    border-radius: 24px;
    padding: clamp(30px, 5vw, 60px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-mark {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: clamp(60px, 8vw, 100px);
    color: var(--bd-bg-primary, #f8f9fa);
    line-height: 1;
    opacity: 0.6;
    z-index: 0;
}

.director-img {
    border-radius: 20px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: block;
}

.director-info h5 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.director-info span {
    color: var(--bd-secondary, #ffb800);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director-quote {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    color: var(--bd-primary, #051525);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    font-style: italic;
}

/* =========================================
                                                                   CTA SECTION
                                                                ========================================= */
.cta-modern {
    background: var(--bd-primary, #051525);
    border-radius: 24px;
    padding: clamp(50px, 6vw, 80px) 20px;
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 100%
    );
    transform: rotate(15deg);
}

.cta-title {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 35px;
}

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

.btn-outline-white:hover {
    background: #fff;
    color: var(--bd-primary, #051525);
}

/* =========================================
                                                                   RESPONSIVE MEDIA QUERIES
                                                                ========================================= */
@media (max-width: 991px) {
    .modern-hero-section {
        margin-top: 100px;
        /* Adjusted for mobile header */
        padding: 60px 0;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(5, 21, 37, 0.85) 0%,
            rgba(5, 21, 37, 0.95) 100%
        );
    }

    .hero-content {
        text-align: center;
    }

    .premium-breadcrumb-wrapper {
        margin: 0 auto 24px auto;
    }

    .hero-subtitle {
        margin: 0 auto;
    }

    .about-image-wrapper {
        margin-right: 0 !important;
        margin-bottom: 60px;
    }

    .experience-badge {
        right: 10px;
        bottom: -25px;
    }

    .text-lg-start {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .section-space {
        padding: 60px 0;
    }

    .section-space-bottom {
        padding-bottom: 60px;
    }

    .modern-hero-section {
        margin-top: 80px;
        min-height: 350px;
    }

    .quote-mark {
        right: 20px;
        top: 20px;
    }

    .director-quote {
        text-align: center;
    }

    .cta-modern .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .cta-modern .btn-modern {
        width: 100%;
        max-width: 300px;
    }
}
