/* ========================================
   HIDS - About Page Additional CSS
   ======================================== */

/* ========= PAGE HEADER ========= */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./assets/images/header22.jpg');
    opacity: 0.5;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 0, 128, 0.3);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-flex;
}

.breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--accent-color);
}

.breadcrumb-item.active {
    color: var(--accent-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "›";
    font-size: 20px;
}

/* ========= ABOUT HIDS SECTION ========= */
.about-hids-section {
    background: var(--white);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper .main-image {
    position: relative;
    z-index: 1;
    border-radius: 15px;
}

.floating-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #c19b2a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

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

.badge-content {
    text-align: center;
    color: var(--primary-color);
}

.badge-content h3 {
    font-size: 48px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.badge-content p {
    font-size: 14px;
    font-weight: 700;
    margin: 5px 0 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Value Cards */
.value-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.value-card:hover {
    background: var(--white);
    border-color: var(--accent-color);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(128, 0, 128, 0.1);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: rotate(360deg) scale(1.1);
}

.value-icon i {
    font-size: 42px;
    color: var(--accent-color);
}

.value-card h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    padding: 10px 0;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.values-list i {
    color: var(--accent-color);
    font-size: 18px;
}

/* ========= FOUNDER SECTION ========= */
.founder-section {
    background: var(--bg-light);
}

.founder-card {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.founder-image-wrapper {
    position: relative;
    display: inline-block;
}

.founder-image-wrapper img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.founder-quote-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.founder-quote-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.founder-content h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.founder-title {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 25px;
}

.founder-bio .lead {
    font-size: 20px;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 4px solid var(--accent-color);
}

.founder-bio p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.founder-credentials h5 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.founder-credentials ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.founder-credentials li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.founder-credentials i {
    color: var(--accent-color);
    font-size: 18px;
}

/* ========= MANAGEMENT TEAM SECTION ========= */
.management-section {
    background: var(--white);
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(128, 0, 128, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(128, 0, 128, 0.95) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--white);
    transform: translateY(-5px);
}

.team-content {
    padding: 30px;
}

.team-content h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-position {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 15px;
}

.team-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.team-credentials {
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.team-credentials small {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 500;
}

/* ========= ACCREDITATION SECTION ========= */
.accreditation-section {
    background: var(--bg-light);
}

.accreditation-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accreditation-benefits li {
    padding: 15px 0;
    color: var(--text-dark);
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    line-height: 1.6;
}

.accreditation-benefits i {
    color: var(--accent-color);
    font-size: 20px;
    margin-top: 3px;
}

.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.accreditation-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.accreditation-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(128, 0, 128, 0.15);
}

.accreditation-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.accreditation-logo img {
    max-height: 80px;
    max-width: 100%;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: var(--transition);
}

.accreditation-item:hover .accreditation-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.accreditation-item h5 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.accreditation-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* Quality Cards */
.quality-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.quality-card:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(128, 0, 128, 0.2);
}

.quality-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.quality-card:hover .quality-icon {
    background: var(--accent-color);
}

.quality-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.quality-card:hover .quality-icon i {
    color: var(--primary-color);
}

.quality-card h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.quality-card:hover h5 {
    color: var(--white);
}

.quality-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.quality-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* ========= FACILITIES SECTION ========= */
.facilities-section {
    background: var(--white);
}

.facility-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(128, 0, 128, 0.15);
}

.facility-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    transform: rotate(360deg) scale(1.1);
}

.facility-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.facility-content {
    padding: 30px;
}

.facility-content h4 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.facility-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

/* Mini Facilities */
.mini-facility {
    background: var(--bg-light);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
}

.mini-facility:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-10px);
}

.mini-facility i {
    font-size: 42px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.mini-facility h5 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.mini-facility:hover h5 {
    color: var(--white);
}

.mini-facility p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.mini-facility:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* ========= CTA ABOUT SECTION ========= */
.cta-about-section {
    background: url('https://via.placeholder.com/1920x500/1a472a/ffffff?text=Join+HIDS') center center/cover;
    padding: 100px 0;
    position: relative;
    color: var(--white);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.9) 0%, rgba(60, 3, 60, 0.85) 100%);
}

.cta-about-section .container {
    position: relative;
    z-index: 1;
}

.cta-about-section h2 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

/* ========= RESPONSIVE STYLES ========= */
@media (max-width: 991px) {
    .page-header h1 {
        font-size: 42px;
    }
    
    .floating-badge {
        width: 150px;
        height: 150px;
        bottom: -20px;
        right: -20px;
    }
    
    .badge-content h3 {
        font-size: 36px;
    }
    
    .badge-content p {
        font-size: 12px;
    }
    
    .founder-card {
        padding: 30px;
    }
    
    .founder-content h3 {
        font-size: 28px;
    }
    
    .accreditation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .breadcrumb {
        padding: 12px 20px;
    }
    
    .floating-badge {
        width: 120px;
        height: 120px;
        bottom: 10px;
        right: 10px;
    }
    
    .badge-content h3 {
        font-size: 28px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .founder-card {
        padding: 25px;
    }
    
    .founder-content h3 {
        font-size: 24px;
        margin-top: 20px;
    }
    
    .team-image {
        height: 350px;
    }
    
    .facility-image {
        height: 250px;
    }
    
    .cta-about-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .floating-badge {
        display: none;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
    }
    
    .value-icon i {
        font-size: 32px;
    }
    
    .founder-quote-icon {
        width: 50px;
        height: 50px;
        top: -15px;
        right: -15px;
    }
    
    .founder-quote-icon i {
        font-size: 22px;
    }
    
    .team-content {
        padding: 20px;
    }
    
    .facility-content {
        padding: 20px;
    }
}
