/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-color: #e67e22; /* Warm Orange (Sun/Energy) */
    --primary-dark: #d35400;
    --secondary-color: #27ae60; /* Growth Green */
    --accent-color: #f1c40f; /* Soft Yellow */
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.logo{
    text-align: center !important;
    align-items: center !important;
    display: flex;
}

.logo img{
    display: inline;
    height: 50px;
    margin: 0px;
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* --- UTILITIES --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-padding { padding: 60px 0; }
.text-center { text-align: center; }
.bg-light { background-color: var(--light-bg); }

/* --- HEADER & NAVIGATION --- */
header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/gallery/eighteen.jpeg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons { display: flex; gap: 15px; justify-content: center; }

/* --- ABOUT & MISSION --- */
.about-content, .mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.mv-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.mv-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* --- PROGRAMS --- */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.program-card:hover { transform: translateY(-5px); }

.program-icon {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* --- PRESIDENT MESSAGE --- */
.president-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.president-img-box {
    flex: 1;
    text-align: center;
}

.president-img-box img {
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 15px;
    width: 100%;
    object-fit: cover;
}

.president-text {
    flex: 2;
}

.president-text p { margin-bottom: 15px; }

blockquote {
    border-left: 5px solid var(--secondary-color);
    padding-left: 20px;
    font-style: italic;
    color: var(--text-light);
    margin: 20px 0;
}

/* --- CONTACT --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-box {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
}

.contact-info-box h3 { color: var(--white); }
.contact-info-box a { text-decoration: underline; }

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
}

/* --- FOOTER --- */
footer {
    background: #2c3e50;
    color: var(--white);
    padding: 40px 0 20px;
    text-align: center;
    margin-bottom: 0px !important;
}

.footer-content h3 { color: var(--white); }
.social-links { margin: 20px 0; }
.social-links a { margin: 0 10px; font-size: 1.2rem; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        background: var(--white);
        width: 100%;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 5px 5px rgba(0,0,0,0.1);
    }
    
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    
    .hero-content h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    
    .mission-vision-grid, .president-wrapper, .contact-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

/* Default (Desktop) Styles */

/* --- GALLERY PAGE STYLES --- */

/* The Grid Container */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

/* Individual Image Card */
.gallery-item {
    position: relative;
    overflow: hidden; /* Keeps the image inside the rounded corners during zoom */
    border-radius: 8px;
    box-shadow: var(--shadow);
    cursor: pointer;
    height: 250px; /* Fixed height for uniformity */
}

/* The Image Itself */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills the box without stretching */
    transition: transform 0.4s ease;
}

/* Hover Effect: Zoom Image */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Overlay Text (Hidden by default, shows on hover) */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
}

/* --- VIDEO SECTION STYLES --- */
.video-wrapper {
    max-width: 800px;
    margin: 0 auto 40px auto; /* Centers the video and adds bottom space */
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (Standard YouTube size) */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Video Grid Styles */
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* वीडियो को बॉक्स में फिट करेगा */
    display: block;
}

/* --- IMPACT / GRAPHS SECTION --- */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.stat-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-bottom: 5px;
}

.progress-bar-bg {
    background-color: #eee;
    height: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 10px;
    width: 0; /* Default width for animation */
    transition: width 1.5s ease-in-out;
}

/* --- TIMELINE SECTION --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid var(--primary-color);
    padding-left: 30px;
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid white;
}

.timeline-year {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* --- TEAM SECTION --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s;
}

.team-card:hover { transform: translateY(-5px); }

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-card h3 { margin-top: 15px; font-size: 1.2rem; }
.team-card p { color: #777; font-size: 0.9rem; }

/* --- SPLIT LAYOUT (Text + Image) --- */
.split-section {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.split-text { flex: 1; }
.split-image { flex: 1; }
.split-image img { border-radius: 10px; box-shadow: var(--shadow); width: 100%;}


/* --- VALUES SECTION --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

.value-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-bottom: 4px solid var(--primary-color);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* --- OBJECTIVES LIST --- */
.objectives-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--secondary-color);
}

.custom-list {
    list-style: none;
    margin-top: 20px;
}

.custom-list li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.custom-list li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* --- NEWS SECTION STYLES --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.news-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: 0.3s;
    border-left: 5px solid var(--primary-color); /* Orange decorative line */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}

.news-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.4;
}

.news-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.read-more i { margin-left: 5px; transition: 0.3s; }
.read-more:hover i { margin-left: 10px; }


/* --- NEWS SECTION STYLES (Updated with Images) --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.news-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: 0.3s;
    /* border-left हटाया ताकि इमेज अच्छी लगे */
    overflow: hidden; /* ताकि इमेज कोने से बाहर न निकले */
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

/* New Image Box Style */
.news-image-box {
    height: 200px; /* सभी फोटो की ऊंचाई बराबर रखने के लिए */
    width: 100%;
    overflow: hidden;
}

.news-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* फोटो को बिना खींचे बॉक्स में फिट करेगा */
    transition: transform 0.5s ease;
}

/* Hover Effect on Image */
.news-card:hover .news-image-box img {
    transform: scale(1.1); /* माउस ले जाने पर फोटो थोड़ी बड़ी होगी */
}

/* Content Box Style */
.news-content-box {
    padding: 25px;
    flex-grow: 1; /* ताकि Read More बटन हमेशा नीचे रहे */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 4px solid var(--primary-color); /* ऑरेंज लाइन अब इमेज के नीचे */
}

.news-date {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

.news-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.3;
}

.news-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    margin-top: auto; /* बटन को सबसे नीचे धकेलने के लिए */
}

.read-more i { margin-left: 5px; transition: 0.3s; }
.read-more:hover i { margin-left: 10px; }


/* --- DETAILED PROGRAMS SECTION --- */
.program-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

/* Zig-Zag Effect: Reverse direction for even numbers */
.program-row:nth-child(even) {
    flex-direction: row-reverse;
}

.program-img {
    flex: 1;
    position: relative;
}

.program-img img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Decorative Orange Box behind image */
.program-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 10px;
    z-index: -1;
}

.program-text {
    flex: 1;
}

.program-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.program-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1rem;
}

/* Custom Check List */
.check-list {
    list-style: none;
    margin-top: 10px;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #555;
}

.check-list li i {
    color: var(--secondary-color);
    margin-right: 10px;
    background: #e8f5e9;
    padding: 5px;
    border-radius: 50%;
    font-size: 0.8rem;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .program-row, .program-row:nth-child(even) {
        flex-direction: column;
    }
    .program-img::before { display: none; } /* Mobile me border hata diya */
}

/* --- CONTACT PAGE UPDATES --- */

.contact-details-list {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    color: white;
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px; /* Icon ko text ke sath align karne ke liye */
    color: rgba(255,255,255, 0.9);
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
    color: white;
}

.contact-item p, .contact-item a {
    color: rgba(255,255,255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Map Section */
.map-section {
    width: 100%;
    height: 450px;
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 5px solid white;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* --- PRESIDENT PAGE STYLES --- */

/* Fancy Quote Box */
.fancy-quote {
    position: relative;
    background: #fff8e1; /* Light Orange/Cream background */
    padding: 30px 40px;
    border-radius: 0 20px 20px 0;
    border-left: 5px solid var(--primary-color);
    margin: 30px 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

.fancy-quote::before {
    content: '\201C'; /* Big Quote Mark */
    font-size: 5rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: 10px;
    opacity: 0.2;
}

/* Signature Style */
.signature {
    font-family: 'Playfair Display', serif; /* Elegant font */
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 20px;
    font-style: italic;
}

/* Leadership Philosophy Cards */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background: white;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border-radius: 10px;
    border-bottom: 4px solid var(--secondary-color);
    transition: 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.philosophy-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* --- HOME PAGE CAROUSEL --- */
.hero-slider-container {
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.mySlides {
    display: none;
    height: 500px; /* Adjust height as needed */
    width: 100%;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* --- HERO TEXT SECTION (Below Slider) --- */
.hero-text-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-text-section h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.hero-text-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- HOME IMPACT ICONS --- */
.home-impact-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    text-align: center;
}

.impact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.impact-item h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

/* --- HOME PROGRAMS PREVIEW --- */
.home-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.h-prog-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 3px solid var(--secondary-color);
    transition: 0.3s;
}

.h-prog-card:hover { transform: translateY(-5px); }

/* Mobile Adjustment for Slider */
@media (max-width: 768px) {
    .mySlides { height: 300px; }
    .hero-text-section h1 { font-size: 1.8rem; }
}

/* --- LEADERSHIP SECTION STYLES --- */
.leader-card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-color);
}

.leader-img {
    flex-shrink: 0;
    width: 200px;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    flex: 1;
}

.leader-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.leader-designation {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.leader-info p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .leader-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .leader-info p { text-align: center; }
}

/* --- FOUNDER TRIBUTE STYLE --- */
.founder-section {
    background-color: #fff8e1; /* Soft Cream Color */
    border-left: 5px solid var(--primary-color);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.founder-img-box {
    flex-shrink: 0;
    width: 220px;
    height: 280px;
    border: 5px solid white;
    box-shadow: var(--shadow);
    position: relative;
}

.founder-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* "Late" Badge */
.late-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: black;
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.founder-text h2 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.founder-designation {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    display: block;
    font-style: italic;
}

/* Mobile Fix for Founder */
@media (max-width: 768px) {
    .founder-section { flex-direction: column; text-align: center; }
}
/* --- LEADER CARD STYLE --- */
.leader-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color); /* Orange decorative line */
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px); /* Hover karne par thoda upar uthega */
}

.leader-img {
    flex-shrink: 0;
    width: 180px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    flex: 1;
}

.leader-info h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.leader-designation {
    font-size: 0.95rem;
    color: var(--secondary-color); /* Green */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.leader-info p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
    font-size: 0.95rem;
    text-align: justify;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .leader-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .leader-info p { text-align: center; }
}