﻿:root {
    --primary-dark: #0d3b2c;
    --primary-green: #27ae60;
    --accent-gold: #f39c12;
    --accent-blue: #258ddc;
    --bg-white: #ffffff;
    --bg-light: #f8fafb;
    --text-dark: #1e1e1e;
    --text-gray: #555555;
    --text-light: #6b7280;
    --border-light: #e5e7eb;
    --shadow-sm: 0 2px 8px rgba(13, 59, 44, 0.08);
    --shadow-md: 0 4px 16px rgba(13, 59, 44, 0.12);
    --shadow-lg: 0 8px 32px rgba(13, 59, 44, 0.16);
}

/* Page-specific resets */
.bod-page {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
}

    .bod-page h1,
    .bod-page h2,
    .bod-page h3,
    .bod-page h4 {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        line-height: 1.3;
    }

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Particles Background */
.bod-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bod-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 50%;
    opacity: 0.15;
    animation: bod-float 20s infinite linear;
}

@keyframes bod-float {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-100px) translateX(80px) rotate(360deg);
        opacity: 0;
    }
}

/* Hero Section */
.bod-hero {
    background: linear-gradient(135deg, #1a4537 0%, #0d3b2c 100%);
    color: var(--bg-white);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.bod-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.bod-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--bg-white);
    letter-spacing: -0.5px;
}

.bod-hero-subtitle {
    font-size: 1.25rem !important;
    opacity: 0.92 !important;
    font-weight: 400 !important;
    color: var(--bg-white) !important;
    max-width: 700px !important;
    margin: 0 auto !important;
}

/* Chairman/Founder Section */
.bod-founder-section {
    padding: 80px 20px;
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.bod-founder-container {
    max-width: 1200px;
    margin: 0 auto;
}

.bod-founder-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 0;
}

.bod-founder-image {
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

    .bod-founder-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }

.bod-founder-card:hover .bod-founder-image img {
    transform: scale(1.05);
}

.bod-founder-details {
    padding: 60px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bod-founder-name {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.bod-founder-title {
    font-size: 1.25rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.bod-founder-message {
    font-family: 'Noto Nastaliq Urdu', serif;
    direction: rtl;
    text-align: right;
    font-size: 1.6rem;
    line-height: 2.4;
    color: #2b2b2b;
    margin-bottom: 30px;
    word-spacing: 3px;
    letter-spacing: 0;
}


.bod-founder-signature {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
}

/* Team Section */
.bod-team-section {
    padding: 80px 20px;
    background: var(--bg-white);
    position: relative;
    z-index: 1;
}

.bod-team-container {
    max-width: 1300px;
    margin: 0 auto;
}

.bod-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.bod-section-title {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

    .bod-section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-dark), var(--primary-green));
        border-radius: 2px;
    }

.bod-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.bod-team-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    border: 1px solid var(--border-light);
}

    .bod-team-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--primary-green);
    }

.bod-member-image-wrapper {
    position: relative;
    padding: 30px 30px 0;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
}

.bod-member-photo {
    width: 100%;
    max-width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.bod-team-card:hover .bod-member-photo {
    box-shadow: var(--shadow-md);
}

.bod-member-info {
    padding: 30px 30px 35px;
    text-align: center;
}

.bod-member-name {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.bod-member-role {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bod-member-bio {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.bod-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f4a38 100%);
    color: var(--bg-white);
    text-align: center;
    position: relative;
    z-index: 1;
}

.bod-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.bod-cta-title {
    font-size: 2.75rem;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.bod-cta-text {
    font-size: 1.1rem !important;
    opacity: 0.9 !important;
    color: var(--bg-white) !important;
    margin-bottom: 35px !important;
}

.bod-btn-enroll {
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-blue));
    color: var(--bg-white);
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.4);
    transition: all 0.4s ease;
    border: none;
}

    .bod-btn-enroll:hover {
        background: var(--bg-white);
        color: var(--primary-dark);
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
        text-decoration: none;
    }

/* Tablet Responsive */
@media (max-width: 1024px) {
    .bod-founder-card {
        grid-template-columns: 1fr;
    }

    .bod-founder-image {
        height: 400px;
    }

    .bod-founder-details {
        padding: 50px 40px;
    }

    .bod-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bod-hero {
        padding: 80px 20px 60px;
    }

        .bod-hero h1 {
            font-size: 2.5rem;
        }

    .bod-hero-subtitle {
        font-size: 1.1rem !important;
    }

    .bod-founder-section {
        padding: 60px 16px;
    }

    .bod-founder-image {
        height: 350px;
    }

    .bod-founder-details {
        padding: 40px 28px;
    }

    .bod-founder-name {
        font-size: 2rem;
    }

    .bod-founder-title {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .bod-founder-message {
        font-size: 1rem;
        line-height: 1.7;
    }

    .bod-founder-signature {
        font-size: 1.5rem;
    }

    .bod-team-section {
        padding: 60px 16px;
    }

    .bod-section-title {
        font-size: 2.25rem;
    }

        .bod-section-title::after {
            width: 60px;
            height: 3px;
        }

    .bod-team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bod-team-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .bod-member-image-wrapper {
        padding: 25px 25px 0;
    }

    .bod-member-photo {
        height: 280px;
    }

    .bod-member-info {
        padding: 25px 25px 30px;
    }

    .bod-member-name {
        font-size: 1.35rem;
    }

    .bod-member-role {
        font-size: 0.95rem;
    }

    .bod-member-bio {
        font-size: 0.9rem;
    }

    .bod-cta-section {
        padding: 60px 20px;
    }

    .bod-cta-title {
        font-size: 2rem;
    }

    .bod-cta-text {
        font-size: 1.15rem;
    }

    .bod-btn-enroll {
        padding: 16px 40px;
        font-size: 1.1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .bod-hero h1 {
        font-size: 2rem;
    }

    .bod-hero-subtitle {
        font-size: 1rem !important;
    }

    .bod-founder-details {
        padding: 35px 24px;
    }

    .bod-founder-name {
        font-size: 1.75rem;
    }

    .bod-founder-title {
        font-size: 1rem;
    }

    .bod-founder-message {
        font-size: 0.95rem;
    }

    .bod-founder-signature {
        font-size: 1.35rem;
    }

    .bod-section-title {
        font-size: 2rem;
    }

    .bod-member-photo {
        height: 260px;
    }

    .bod-member-name {
        font-size: 1.25rem;
    }

    .bod-cta-title {
        font-size: 1.75rem;
    }

    .bod-cta-text {
        font-size: 1.05rem;
    }

    .bod-btn-enroll {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .bod-hero h1 {
        font-size: 1.85rem;
    }

    .bod-founder-name {
        font-size: 1.6rem;
    }

    .bod-section-title {
        font-size: 1.85rem;
    }

    .bod-member-photo {
        height: 240px;
    }
}
