/* about-us.css */

.subpage-hero {
    background: url('../images/img-banner.webp') no-repeat center center;
    background-size: cover;
}

/* Intro & Foundation Sections */
.img-wrapper-styled,
.img-wrapper-styled-2 {
    position: relative;
    z-index: 1;
}

.img-wrapper-styled::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.img-wrapper-styled-2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary-green);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
}

/* Philosophy Section */
.philosophy-section {
    background-color: #010B09;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    transition: var(--transition);
}

.philosophy-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: var(--accent-gold);
}

.phi-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
}

/* Director's Message */
.message-box {
    background-color: #F9FBFB;
    border-radius: 40px;
    padding: 80px;
    position: relative;
    overflow: hidden;
}

.message-box::after {
    content: '\F6B0';
    /* Bootstrap Quote Icon */
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 40px;
    right: 60px;
    font-size: 8rem;
    color: rgba(6, 40, 34, 0.03);
    line-height: 1;
}

.director-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .message-box {
        padding: 50px 30px;
    }

    .message-box::after {
        font-size: 5rem;
        top: 20px;
        right: 30px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding-top: 140px;
        text-align: center;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .hero-image-accent {
        max-height: 300px;
        margin-top: 30px;
    }
}