/* aboutus.css - page specific styles for aboutus.html */

.about-hero {
    position: relative; width: 100%; min-height: 100vh;
    background: url('../images/bg.webp') no-repeat center/cover;
    display: flex; align-items: center; justify-content: center;
    padding: 100px 0;
}
.about-hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.about-glass-card {
    position: relative; z-index: 10;
    width: 100%; max-width: 960px;
    padding: 50px;
    background: rgba(255, 255, 255, 0.12); 
    backdrop-filter: blur(25px); 
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    color: #fff;
    margin: 0 20px;
    text-align: center;
}

.about-glass-card h1 { font-size: 42px; font-weight: 800; margin-bottom: 20px; }
.about-glass-card .divider { width: 60px; height: 4px; background: var(--primary-color); margin: 0 auto 30px; border-radius: 2px; }
.about-glass-card p { font-size: 18px; line-height: 1.8; opacity: 0.9; margin-bottom: 25px; text-align: justify; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.value-item i { font-size: 32px; color: var(--primary-color); margin-bottom: 15px; display: block; }
.value-item h3 { font-size: 18px; margin-bottom: 10px; }
.value-item p { font-size: 14px; opacity: 0.7; margin-bottom: 0; text-align: center; }



.site-footer { background: #111827; color: #d1d5db; padding: 80px 0 30px; }
.footer-top { display: flex; flex-wrap: wrap; margin-bottom: 50px; border-bottom: 1px solid #374151; padding-bottom: 50px; gap: 40px; }
.f-col { flex: 1; min-width: 200px; }
.f-logo { font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 25px; }
.f-col h4 { color: #fff; font-size: 18px; font-weight: 600; margin-bottom: 25px; }
.f-col ul li { margin-bottom: 12px; font-size: 15px; }
.footer-bottom { text-align: center; font-size: 14px; color: #6b7280; }

@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
    .about-glass-card { padding: 30px 20px; }
    .about-glass-card h1 { font-size: 32px; }
}
