/* CSS Variables & Reset */
:root {
    --primary-orange: #FF9933;
    /* Saffron */
    --primary-green: #138808;
    /* India Green */
    --primary-blue: #000080;
    /* Chakra Blue */
    --text-dark: #333333;
    --text-light: #555555;
    --white: #ffffff;
    --off-white: #f9f9f9;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #D35400;
    /* Darker orange typically used in button */
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: #A04000;
}

.btn-secondary {
    background-color: #1E5128;
    /* Dark green */
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background-color: #14361b;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flag-strip {
    height: 4px;
    width: 100%;
    background: linear-gradient(to right, var(--primary-orange) 33%, var(--white) 33%, var(--white) 66%, var(--primary-green) 66%);
    position: absolute;
    top: 0;
    left: 0;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary-orange);
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    /* Adjust as needed */
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 60px;
}

.hero-content {
    width: 50%;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 45%;
    height: 90%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}

.hero-image img {
    /* To make it look like a cutout if possible, but standard image works too */
    width: 100%;
    object-fit: cover;
    /* Or contain depending on image */
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    /* Basic blend if not a cutout */
    mix-blend-mode: normal;
}


/* Meet Your Leader */
.about-section {
    padding: 80px 0;
    background-color: #f4f6f8;
}

.about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.about-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Vision & Mission */
.vision-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cards-grid {
    display: flex;
    gap: 30px;
}

.card {
    flex: 1;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
    padding: 40px 0;
    background-color: #f0f0f0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #D35400;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Footer / CTA */
.footer-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/footer-bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.footer-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding-bottom: 0;
    }

    .hero-content {
        width: 100%;
        padding: 40px 20px;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-grid {
        flex-direction: column;
    }

    .cards-grid {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
    }
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2)), url('../images/about-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: var(--white);
    position: relative;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 10px;
}

.leader-intro-section {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.leader-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.leader-intro-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.leader-intro-image {
    position: relative;
}

.leader-intro-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-achievement-section {
    padding: 80px 0;
    background-color: var(--white);
    /* Could add texture here if available */
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Timeline */
.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-green);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 50px;
    bottom: -50px;
    width: 2px;
    background: #ddd;
    z-index: 1;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-content h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.achievements-card {
    background: #fff8f0;
    /* Light cream/paper texture bg */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.achievement-list-item {
    margin-bottom: 25px;
    padding-left: 25px;
    position: relative;
}

.achievement-list-item::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.trophy-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    opacity: 0.9;
}

.stat-ribbon {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/footer-bg.png');
    /* Using dark bg for contrast */
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.about-footer {
    background-color: #333;
    padding: 80px 0;
    text-align: center;
    color: white;
}

@media (max-width: 768px) {

    .leader-intro-grid,
    .split-grid {
        grid-template-columns: 1fr;
    }
}

/* Agenda Page Styles */
.agenda-hero {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)), url('../images/about-hero-bg.jpg');
    /* Reusing crowd bg */
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    margin-bottom: 50px;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.focus-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
}

.focus-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: inline-block;
}

.focus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.focus-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Overlay leader image on hero */
.agenda-hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 40%;
    height: 90%;
    /* background: url('../images/leader-waving.png') no-repeat bottom center; */
    background-size: contain;
    z-index: 1;
}

.agenda-hero .hero-content {
    z-index: 2;
    padding-left: 20px;
    width: 50%;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.agenda-section {
    padding: 80px 0;
    background-color: #f4f6f8;
}

.center-header {
    text-align: center;
    margin-bottom: 50px;
}

.center-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.agenda-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 4px solid transparent;
}

.agenda-card:hover {
    transform: translateY(-10px);
    border-top: 4px solid var(--primary-orange);
}

.icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.custom-icon-bg {
    background-color: #2E7D32;
    /* Green from the design */
    border-radius: 50%;
    color: white;
    font-size: 36px;
    box-shadow: 0 5px 15px rgba(46, 125, 50, 0.3);
}

.agenda-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.agenda-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-btn-large {
    min-width: 300px;
    display: inline-block;
    margin: 10px;
}

@media (max-width: 900px) {
    .agenda-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .agenda-hero:after {
        opacity: 0.3;
        /* Fade leader image on smaller screens so text is readable */
    }
}

@media (max-width: 600px) {
    .agenda-grid {
        grid-template-columns: 1fr;
    }

    .agenda-hero .hero-content {
        width: 100%;
    }
}

/* Video Section Styles for Multi-language Support */
.video-section .container > div:last-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-section video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Responsive adjustments for video grid */
@media (max-width: 768px) {
    .video-section .container > div:last-child {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-section .section-header h2 {
        font-size: 28px !important;
    }

    .video-section .section-header p {
        font-size: 16px !important;
    }
}
