/* --- Variables & Reset --- */
:root {
    --deep-green: #006400;
    --gold: #FFD700;
    --white: #ffffff;
    --black: #111111;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--text-color); line-height: 1.7; background-color: var(--white); }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Utility Classes */
.section { padding: 80px 0; }
.section-title { font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--deep-green); margin-bottom: 20px; }
.section-subtitle { color: var(--gold); text-transform: uppercase; font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 5px; }
.text-center { text-align: center; }

/* --- SECTION 1: Top Contact Bar --- */
.top-info-bar {
    background-color: var(--black);
    color: #fff;
    padding: 10px 0;
    font-size: 0.85rem;
    font-family: var(--font-body);
    border-bottom: 1px solid #333;
}
.top-bar-flex { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.contact-group { display: flex; gap: 20px; align-items: center; }
.contact-item { display: flex; gap: 8px; align-items: center; }
.contact-item a, .contact-item span { color: #ccc; font-weight: 500; }
.gold-icon { color: #c5a059; }
.action-group { display: flex; gap: 15px; align-items: center; }
.top-social-icons { display: flex; gap: 8px;  }
.social-btn { display: flex; justify-content: center; align-items: center; width: 28px; height: 28px; border-radius: 4px; color: white; font-size: 13px; transition: transform 0.2s; }
.social-btn:hover { transform: translateY(-2px); }
.fb { background-color: #3b5998; }
.x-twitter { background-color: #000; border: 1px solid #333; }
.yt { background-color: #CD201F; }
.insta { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.wa { background-color: #25D366; }
.top-donate-btn { background: linear-gradient(90deg, #d4af37 0%, #a67c00 100%); color: white; padding: 6px 15px; font-weight: 700; font-size: 0.8rem; border-radius: 2px; }
.top-donate-btn:hover { background: linear-gradient(90deg, #a67c00 0%, #d4af37 100%); }

/* --- SECTION 2: Banner Slider --- */
.main-banner-header { position: relative; width: 100%; height: 280px; background: #000; overflow: hidden; }
.banner-slider-wrapper { position: relative; width: 100%; height: 100%; }
.banner-slides img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 1s ease-in-out; }
.banner-slides img.active { opacity: 0.5; }
.banner-overlay-content { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; z-index: 10; }
.brand-flex { display: flex; align-items: center; gap: 20px; width: 100%; }
.banner-logo { height: 130px; width: auto; filter: drop-shadow(2px 4px 6px black); }
.banner-text h1 { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; text-transform: uppercase; color: #2E8B57; line-height: 1; -webkit-text-stroke: 1px white; text-shadow: 2px 2px 0px #000; }
.banner-text .reg-text { color: var(--gold); font-weight: 700; font-size: 1rem; text-shadow: 1px 1px 2px black; display: block; margin-top: 5px; }

/* --- SECTION 3: Navbar --- */
.navbar { background: #111; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 6px rgba(0,0,0,0.3); border-top: 1px solid #333; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-links { display: flex; justify-content: space-between; align-items: center; width: 100%; margin: 0; padding: 0; }
.nav-links > li { list-style: none; position: relative; }
.nav-links > li > a { display: block; padding: 18px 12px; color: var(--white); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; border-bottom: 4px solid transparent; }
.nav-links > li:not(.donate-item) > a:hover, .nav-links > li:not(.donate-item) > a.active { background: var(--deep-green); color: var(--gold); border-bottom: 4px solid var(--gold); }
.arrow-icon { font-size: 0.7em; margin-left: 5px; color: #888; }
.dropdown-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 260px; box-shadow: 0 5px 15px rgba(0,0,0,0.2); display: none; border-top: 3px solid var(--gold); z-index: 1100; border-radius: 0 0 4px 4px; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a { display: block; color: var(--text-color); padding: 12px 20px; border-bottom: 1px solid #eee; text-transform: capitalize; font-size: 0.9rem; font-weight: 500; white-space: nowrap; }
.dropdown-menu li a:hover { background: #f4f4f4; color: var(--deep-green); padding-left: 25px; border-bottom: 1px solid #eee; }
.donate-btn { background: var(--gold); color: var(--deep-green) !important; font-weight: 800 !important; border-radius: 4px; padding: 8px 18px !important; margin-left: 10px; border-bottom: none !important; }
.donate-btn:hover { background: white; color: black !important; }

/* --- SECTION 4: Hero Video --- */
.hero-video-section { position: relative; width: 100%; height: 60vh; background: black; overflow: hidden; }
.video-container { width: 100%; height: 100%; }
.bg-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.video-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; color: white; width: 100%; }
.video-overlay h2 { font-size: 3rem; font-family: var(--font-head); font-weight: 700; text-shadow: 2px 2px 10px black; color: var(--gold); margin-bottom: 10px; }
.video-overlay p { font-size: 1.5rem; margin-bottom: 30px; text-shadow: 1px 1px 5px black; }
.btn-main { background: var(--deep-green); color: white; padding: 12px 30px; font-weight: 600; border-radius: 30px; text-transform: uppercase; border: 2px solid var(--deep-green); }
.btn-main:hover { background: white; color: rgb(2, 101, 36); border: 2px solid rgb(255, 255, 255); }

/* --- SECTION 5: About Section --- */
.about-section { background-color: var(--white); }
.row { display: flex; gap: 50px; align-items: center; }
.reverse-row { flex-direction: row-reverse; }
.col-text { flex: 1; }
.col-img { flex: 1; position: relative; }

.lead-text { font-size: 1.1rem; color: #555; margin-bottom: 20px; }
.awards-badge { display: inline-flex; align-items: center; gap: 10px; background: #fffbe6; padding: 15px; border-left: 4px solid var(--gold); margin-top: 20px; font-weight: 600; color: #856404; }

.image-frame img { border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); width: 100%; }
.founder-label { position: absolute; bottom: 20px; left: 20px; background: rgba(255,255,255,0.9); padding: 15px 25px; border-radius: 5px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.founder-label h4 { color: var(--deep-green); font-family: var(--font-head); margin-bottom: 0; }
.founder-label p { font-size: 0.9rem; margin-bottom: 0; color: #666; }

/* --- SECTION 6: Mission Cards --- */
.mission-section { background-color: var(--light-bg); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; padding: 40px 30px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s; }
.card:hover { transform: translateY(-10px); }
.icon-circle { width: 70px; height: 70px; background: var(--deep-green); color: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 20px; }
.card h3 { color: var(--deep-green); margin-bottom: 15px; font-family: var(--font-head); }

/* --- SECTION 7: Impact Counter --- */
.impact-section { background: linear-gradient(rgba(0,100,0,0.9), rgba(0,100,0,0.9)), url('assets/images/banner (1).png'); background-attachment: fixed; background-size: cover; padding: 80px 0; color: white; text-align: center; }
.impact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.impact-item h2 { font-size: 3.5rem; color: var(--gold); font-weight: 800; font-family: var(--font-head); margin-bottom: 5px; }
.impact-item p { font-size: 1.1rem; font-weight: 600; text-transform: uppercase; }

/* --- SECTION 8: Focus Areas --- */
.focus-section { background-color: white; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.focus-card { background: white; padding: 30px; border: 1px solid #eee; border-radius: 8px; text-align: center; transition: 0.3s; }
.focus-card:hover { border-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.focus-card i { font-size: 2.5rem; color: var(--deep-green); margin-bottom: 20px; }
.focus-card h4 { margin-bottom: 10px; color: #222; }

/* --- SECTION 9: School --- */
.school-section { background-color: var(--light-bg); }
.feature-list { margin: 20px 0 30px; }
.feature-list li { margin-bottom: 10px; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.feature-list i { color: var(--deep-green); }
.school-img { border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* --- SECTION 10: CTA --- */
.cta-section { background: var(--deep-green); color: white; text-align: center; padding: 80px 0; }
.cta-section h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 15px; }
.cta-buttons { margin-top: 30px; display: flex; justify-content: center; gap: 20px; }
.btn-white { background: white; color: var(--deep-green); padding: 12px 30px; font-weight: 700; border-radius: 30px; }
.btn-gold { background: var(--gold); color: var(--black); padding: 12px 30px; font-weight: 700; border-radius: 30px; }

/* --- Footer --- */
.main-footer { background: var(--black); color: white; padding: 60px 0 20px; }
.main-footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 40px; }
.footer-logo { background: white; padding: 5px; width: 80px; margin-bottom: 15px; border-radius: 5px; }
.footer-col h2 { color: var(--gold); font-family: var(--font-head); margin-bottom: 20px; border-bottom: 2px solid rgba(255,255,255,0.2); display: inline-block; padding-bottom: 5px; }
.links ul li a { display: block; padding: 5px 0; color: #ddd; }
.links ul li a:hover { color: var(--gold); padding-left: 5px; }
.contact-row { display: flex; gap: 15px; margin-bottom: 15px; }
.contact-row i { color: var(--gold); margin-top: 5px; }
.social-icons a { display: inline-flex; justify-content: center; align-items: center; width: 35px; height: 35px; background: rgba(255,255,255,0.2); border-radius: 50%; margin-right: 10px; color: white; margin-top: 10px; }
.social-icons a:hover { background: var(--gold); color: var(--deep-green); }

/* --- Responsive --- */
.mobile-header { display: none; }

@media (max-width: 992px) {
    .main-banner-header { height: 200px; }
    .banner-text h1 { font-size: 1.5rem; }
    .banner-logo { height: 80px; }
    .top-bar-flex { flex-direction: column; text-align: center; }

    .nav-container { flex-direction: column; align-items: flex-start; }
    .mobile-header { display: flex; width: 100%; justify-content: space-between; padding: 10px 0; }
    .mobile-brand { color: var(--gold); font-weight: 800; font-size: 1.5rem; }
    .mobile-menu-btn { background: none; border: none; color: white; font-size: 1.8rem; }
    
    .nav-links { display: none; flex-direction: column; background: #222; width: 100%; }
    .nav-links.active { display: flex; }
    .nav-links > li { width: 100%; border-bottom: 1px solid #333; }
    .nav-links > li > a { padding: 15px; }
    
    .dropdown-menu { position: static; width: 100%; background: #333; border: none; padding-left: 20px; }
    
    .row { flex-direction: column; }
    .reverse-row { flex-direction: column; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
    .main-footer .container { grid-template-columns: 1fr; }
    .video-overlay h2 { font-size: 2rem; }
}

/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-green: #0f5f34; /* Deep Green */
    --accent-yellow: #f4c430; /* Golden Yellow */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; color: var(--primary-green); margin-bottom: 15px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 60px 0; }
.text-center { text-align: center; }

/* --- HEADER --- */
.page-header {
     background: #006400; /*linear-gradient(rgba(15, 95, 52, 0.9), rgba(15, 95, 52, 0.8)), url('images/header-bg.jpg');  Ensure you have an image here */
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}
.page-header h1 { color: var(--white); font-size: 3rem; }
.page-header p { font-size: 1.2rem; margin-top: 10px; color: var(--accent-yellow); font-weight: 600; }

/* --- VISION & MISSION --- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px; margin-bottom: -30px; position: relative; z-index: 10; }
.vm-card {
    background: var(--white);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-bottom: 5px solid var(--accent-yellow);
    border-radius: 8px;
    text-align: center;
}
.vm-card i { font-size: 3rem; color: var(--primary-green); margin-bottom: 20px; }


/* --- WHAT WE DO --- */
.focus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 40px; }
.focus-item {
    background: var(--white);
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    transition: 0.3s;
}
.focus-item:hover { background: var(--primary-green); color: var(--white); transform: translateY(-5px); }
.focus-item:hover h3 { color: var(--accent-yellow); }
.focus-item i { font-size: 2rem; color: var(--accent-yellow); margin-bottom: 15px; }

/* --- ANNUAL REPORT TABS --- */
.ar-container { background: var(--white); border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); overflow: hidden; margin-top: 30px; }
.ar-tabs { display: flex; flex-wrap: wrap; background: var(--primary-green); gap: 1px; }
.ar-tab-btn {
    background: var(--primary-green);
    border: none;
    color: var(--white);
    padding: 15px 20px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    flex-grow: 1;
    transition: 0.3s;
}
.ar-tab-btn:hover { background: rgba(255,255,255,0.1); }
.ar-tab-btn.active { background: var(--accent-yellow); color: var(--primary-green); font-weight: bold; }

.ar-content { padding: 40px; text-align: center; display: none; animation: fadeIn 0.5s; }
.ar-content.active { display: block; }
.ar-poster { max-width: 100%; height: auto; border: 1px solid #ddd; margin-bottom: 20px; max-height: 500px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.btn-download {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}
.btn-download:hover { background: var(--accent-yellow); color: var(--primary-green); }
/* Add this to your styles */
.ar-poster-link {
    display: inline-block;
    transition: transform 0.3s ease;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ar-poster-link:hover {
    transform: scale(1.02); /* Slight zoom effect */
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    cursor: pointer;
}

.ar-poster {
    /* Reset existing border/margin on img since the link handles it now */
    border: none; 
    margin-bottom: 0;
    display: block;
    width: 100%;
    max-height: 500px;
}

/* --- FOUNDER --- */
.founder-section { background: var(--bg-light); }
.founder-wrapper { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; }
.founder-img { flex: 1; min-width: 300px; text-align: center; }
.founder-img img { width: 100%; max-width: 400px; border-radius: 15px; border: 5px solid var(--white); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.founder-text { flex: 2; min-width: 300px; }
.award-badge { display: inline-block; background: var(--accent-yellow); color: var(--primary-green); padding: 5px 15px; border-radius: 20px; font-size: 0.85rem; font-weight: bold; margin-bottom: 10px; }

/* --- MILESTONES --- */
.milestone-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; text-align: center; }
.milestone-card { background: var(--white); padding: 20px; border-radius: 8px; border-top: 4px solid var(--primary-green); box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.milestone-card h2 { color: var(--accent-yellow); font-size: 2.5rem; margin-bottom: 5px; }

/* --- /* --- SIMPLE TEAM SECTION --- */
.team-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    margin-top: 40px; 
}

/* Base Card Style (Missing in your snippet) */
.team-card {
    background: var(--white);
    padding: 35px 20px;
    border-radius: 15px; /* Smooth rounded corners */
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); /* Soft shadow */
    transition: all 0.3s ease; /* Smooth animation */
    border-bottom: 4px solid transparent; /* Invisible border for hover effect */
}

/* Hover Effect */
.team-card:hover { 
    border-bottom-color: var(--primary-green); 
    transform: translateY(-10px); /* Moves up slightly */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* Shadow grows */
}

/* Image Styling (Crucial for 500x500 images) */
.team-photo {
    width: 160px;          /* Fixed width for display */
    height: 160px;         /* Fixed height for display */
    object-fit: cover;     /* Prevents stretching/distortion */
    border-radius: 50%;    /* Makes it a perfect circle */
    border: 5px solid var(--white); /* White ring around image */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Shadow for image */
    margin: 0 auto 20px auto; /* Centers the image */
    display: block;
}

/* Typography for Team */
.team-card h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.team-card p {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
}


/* --- TEAM IMAGES CSS --- */
.team-photo {
    width: 150px;       /* Display size on screen */
    height: 150px;      /* Display size on screen */
    object-fit: cover;  /* Ensures image doesn't stretch */
    border-radius: 50%; /* Makes it a circle */
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    background-color: var(--primary-green);
}

.team-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border-bottom: 3px solid transparent;
    transition: 0.3s;
}

.team-card:hover {
    border-bottom: 3px solid var(--primary-green);
    transform: translateY(-5px);
}
/* --- AWARDS GRID SECTION --- */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.award-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden; /* Ensures image stays inside rounded corners */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid var(--accent-yellow); /* Gold accent at bottom */
    display: flex;
    flex-direction: column;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.award-img {
    width: 100%;
    /* This setting ensures the 2048x1365 aspect ratio (3:2) is maintained */
    aspect-ratio: 3 / 2; 
    height: auto; 
    object-fit: cover; /* Ensures image fills the space cleanly */
    border-bottom: 1px solid #eee;
}

.award-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1; /* Pushes content to fill height */
}

.award-content h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.4;
}

.award-content p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Helper for placeholders if images are missing */
.award-img[src=""] {
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Responsive */
@media (max-width: 768px) {
    .vm-grid, .founder-wrapper { grid-template-columns: 1fr; display: block; }
    .vm-card { margin-bottom: 20px; }
    .founder-img { margin-bottom: 30px; }
    .ar-tab-btn { width: 50%; } /* 2 tabs per row on mobile */
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* --- CONTACT PAGE STYLES --- */
.contact-grid { display: grid; grid-template-columns: 2fr 2fr; gap: 40px; margin-top: 30px;}
.contact-info-card { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); height: 100%; }
.info-item { display: flex; align-items: flex-start; margin-bottom: 25px; }
.info-item i { font-size: 1.5rem; color: var(--primary-green); margin-right: 15px; margin-top: 5px; }
.info-item h4 { margin-bottom: 5px; color: var(--text-dark); }
.map-container { background: var(--white); padding: 26px; border-radius: 10px; box-shadow: 0 10px 15px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 20px; }
.form-control { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; font-family: 'Open Sans', sans-serif; }
.form-control:focus { border-color: var(--primary-green); outline: none; }
.btn-submit { background: var(--primary-green); color: var(--white); padding: 12px 30px; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; transition: 0.3s; width: 100%; }
.btn-submit:hover { background: var(--accent-yellow); color: var(--primary-green); }
.map-container iframe { width: 600px; height: 500px; border-radius: 10px; border: none; }

/* --- SCHOOL PAGE STYLES --- */
.admission-box { 
    background: var(--bg-light); 
    border: 2px dashed var(--primary-green); 
    padding: 40px; 
    border-radius: 15px; 
    text-align: center; 
    margin-bottom: 50px;
}

.staff-group-img { 
    width: 100%; 
    border-radius: 10px; 
    margin-bottom: 40px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}

/* Fixed Grid Layout */
.staff-grid { 
    display: grid; 
    /* Adjusts columns automatically: 4 on desktop, 2 on tablet, 1 on mobile */
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 30px; 
    margin-top: 20px;
}

/* Improved Card Design */
.staff-card { 
    text-align: center; 
    background: var(--white); 
    padding: 30px 20px; 
    border-radius: 12px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.staff-card:hover {
    transform: translateY(-5px); /* Moves up on hover */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-bottom-color: var(--primary-green); /* Adds green underline on hover */
}

/* Centered & Styled Image */
.staff-card img { 
    width: 170px; 
    height: 170px; 
    border-radius: 50%; 
    object-fit: cover; 
    /* border: 4px solid var(--primary-green);  */
    padding: 3px; /* Creates a small white gap between image and border */
    background: var(--white);
    margin: 0 auto 15px auto; /* Ensures perfect centering */
    display: block;
}

/* Typography Fixes */
.staff-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.staff-card p {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}
/* --- MEDIA PAGE STYLES --- */
.media-tabs { display: flex; justify-content: center; margin-bottom: 30px; gap: 10px; flex-wrap: wrap; }
.media-tab-btn { padding: 10px 30px; border: 2px solid var(--primary-green); background: transparent; color: var(--primary-green); border-radius: 30px; cursor: pointer; font-weight: bold; transition: 0.3s; }
.media-tab-btn.active, .media-tab-btn:hover { background: var(--primary-green); color: var(--white); }
/* --- VIEW ALL BUTTON --- */
.btn-view-all {
    display: inline-block;
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(15, 95, 52, 0.3);
}

.btn-view-all i {
    margin-right: 10px;
}
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gallery-item img { width: 100%; height: 250px; object-fit: cover; border-radius: 8px; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.03); }
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }
.video-wrapper iframe { width: 100%; height: 250px; border-radius: 10px; }

/* --- SERVICES PAGE STYLES --- */
.service-card-large { background: var(--white); padding: 30px; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: 0.3s; border-left: 5px solid var(--accent-yellow); height: 100%; }
.service-card-large:hover { transform: translateY(-5px); border-left-color: var(--primary-green); }
.service-icon { font-size: 2.5rem; color: var(--primary-green); margin-bottom: 20px; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}