/* HERO SECTION */
.hero {
    position: relative;
    height: 40vh;
    background-image: url("../images/chairman-hero.jpg"); /* library image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:#000;
    opacity: 70%;
}

/* Hero text */
.hero-content {
    position: relative;
    color: #DAC0A3;
    z-index: 2;
}

.hero-title {
  margin: 0 0 20px 0;
  direction: rtl;
  font-family: 'Noto Nastaliq Urdu', 'AlQalam Taj Nastaleeq', 'Noto Naskh Arabic', serif;
  font-weight: 700;
  color: #DAC0A3;
}


/* Wave */
.hero-wave {
    position: absolute;
    bottom: -1px;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 22px;
        padding-bottom: 60px;
    }

    .hero {
        height: 30vh;
    }
}


/* ================= INTRO SECTION ================= */
.about-intro {
    padding: 80px 20px;
    background: #fff;
}

.intro-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.intro-text h2 {
    font-size: 32px;
    color: #000;
    margin-bottom: 15px;
}

.intro-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.intro-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ================= MISSION & VISION ================= */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 70px 8%;
    gap: 30px;
    background: #F9F7F4;
}

.mv-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(218, 192, 163, 0.25);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.mv-box i {
    font-size: 40px;
    color: #DAC0A3;
    margin-bottom: 15px;
}

.mv-box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* ================= VALUES SECTION ================= */
.our-values {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.section-title {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 12px;
    background: rgba(218, 192, 163, 0.05);
    border: 2px solid rgba(218, 192, 163, 0.3);
    margin-bottom: 40px;
    font-size: 30px;
    box-shadow: 0 6px 12px rgba(218,192,163,0.15);
}

.values-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.value-card {
    background: #F9F9F9;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(218,192,163,0.3);
}

.value-card i {
    font-size: 40px;
    color: #DAC0A3;
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

/* ================= LEADER MESSAGE ================= */
.leader-message {
    padding: 80px 20px;
    background: #F9F7F4;
}

.leader-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.leader-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ================= TIMELINE ================= */
.timeline {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
}

.timeline-container {
    display: grid;
    max-width: 1000px;
    margin: auto;
    gap: 20px;
}

.timeline-item {
    background: #F9F9F9;
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #DAC0A3;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.timeline-item span {
    font-weight: 700;
    font-size: 20px;
    color: #DAC0A3;
}

/* ================= RESPONSIVE ================= */
@media(max-width: 900px){
    .intro-container,
    .mission-vision {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width: 600px){
    .values-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 28px; }
}





/* =========================================================
   FADE ANIMATIONS — SMOOTHER
========================================================= */
.fade-left,
.fade-right {
    opacity: 0;
    transition: all 0.9s ease-out;
}

.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }

.fade-left.active,
.fade-right.active {
    opacity: 1;
    transform: translateX(0);
}




