/* ================= GLOBAL RESETS & FONTS ================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ================= UNIFIED TYPOGRAPHY DESIGN SYSTEM ================= */
.hero h1,
.hero-content h1,
h1.main-title,
.hero-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1,
h2,
.section-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h3,
.subheading,
.card-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.35;
}

h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

p,
.paragraph-text,
.card-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0;
}

button,
.btn,
.donate-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

nav,
.navbar a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.footer h3,
.footer-col h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.footer a,
.footer p {
    font-family: 'Poppins', sans-serif;
}

/* ================= HEADER ================= */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #ffffff;
    padding: 26px 0;
    /* pehle 20px tha */
    transition: .35s;
}

.hero-content {
    padding-left: 60px;
}

.header .container {
    width: 98%;
    max-width: 1700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    /* justify-content:space-between; */
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: 0px;
    /* Left se bas thoda sa space */
    flex-shrink: 0;
}

.logo-area img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
}

.logo-content h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
}

.logo-content p {
    font-family: 'Poppins', sans-serif;
    color: #d7d7d7;
    font-size: 11px;
    letter-spacing: 2px;
}

.navbar {
    flex: 1;
    margin-left: 50px;
    margin-right: 40px;
    justify-content: center;
}

.navbar ul {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* width:700px;       */
    gap: 28px;
    ;
}

.navbar ul li a {
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    font-size: 20px;
    align-items: center;
    gap: 3px;
    font-weight: 500;
    color: #fff;
    transition: 0.3s ease;
    letter-spacing: 0.5px;
}

.navbar a {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.navbar ul li a:hover {
    color: #f57c00;
}

.donate-btn {
    font-family: 'Poppins', sans-serif;
    background: #f57c00;
    color: #fff;
    margin-left: 80px;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* ================= HERO SLIDER & BACKGROUND VIDEO ================= */

.hero-slider-section {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #08111f;
}

.hero-video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    border: none;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(6, 14, 28, 0.82) 0%,
            rgba(6, 14, 28, 0.58) 42%,
            rgba(6, 14, 28, 0.20) 78%,
            rgba(6, 14, 28, 0.08) 100%);
    z-index: 2;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .hero-bg-overlay {
        background: linear-gradient(180deg,
                rgba(6, 14, 28, 0.85) 0%,
                rgba(6, 14, 28, 0.65) 60%,
                rgba(6, 14, 28, 0.40) 100%);
    }
}

.hero-slider-track {
    position: relative;
    width: 100%;
    min-height: 640px;
    overflow: hidden;
    z-index: 3;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s ease;
    z-index: 1;
    display: flex;
    align-items: center;
    background: transparent;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 135px 50px 125px;
}

.slide-content {
    max-width: 650px;
    color: #ffffff;
}

.slide-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 54px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.slide-description {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #f1f5f9;
    margin-bottom: 34px;
    max-width: 620px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.slide-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3px;
    font-family: 'Poppins', sans-serif;
}

.feature-text p {
    font-size: 11.5px;
    line-height: 1.4;
    color: #c0d1e8;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.slide-cta {
    display: flex;
    align-items: center;
}

.hero-btn {
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.hero-btn.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    background: rgba(6, 21, 46, 0.4);
    backdrop-filter: blur(4px);
}

.hero-btn.btn-outline:hover {
    background: #ffffff;
    color: #06152e;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.hero-btn.btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    border-radius: 8px;
    background: #f57c00;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.hero-btn.btn-solid:hover {
    background: #e06d00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

.slider-arrow:hover {
    background: #ffffff;
    color: #06152e;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Slider Dots */
.slider-dots-container {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.slider-dots-container .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots-container .dot.active {
    background: #ffffff;
    width: 14px;
    height: 14px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Hero Sound Toggle Button */
.hero-sound-btn {
    position: absolute;
    bottom: 60px;
    right: 35px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 30px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-sound-btn:hover {
    background: #f57c00;
    border-color: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(245, 124, 0, 0.45);
}

.hero-sound-btn.is-muted {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(255, 255, 255, 0.2);
    color: #cbd5e1;
}

.hero-sound-btn i {
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .hero-sound-btn {
        bottom: 25px;
        right: 20px;
        padding: 7px 14px;
        font-size: 12px;
    }
}

/* ================= STATS ================= */

.stats-section {
    margin-top: -55px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /* grid-template-columns:repeat(4,1fr); */
    gap: 50px;
}

.stat-card {
    width: 350px;
    height: 200px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px 22px;
}

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fdf8f2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 30px;
    color: #d97706;
}

.stat-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #111;
    margin-bottom: 8px;
}

.stat-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: #666;
    margin-bottom: 8px;
}

.stat-line {
    display: block;
    width: 45px;
    height: 3px;
    background: #d97706;
    border-radius: 20px;
}

*/
/* ABOUT SECTION */

.about-section {
    padding: 50px 0 0px;
    background: #ffffff;
}


/* Main Wrapper */

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    width: auto;
    background: #f7f4ef;
    padding: 50px;
    border-radius: 12px;
}

/* IMAGE SECTION */

.about-image {
    flex: 1.1;
    width: 100%;
    height: 100%;
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
}

/* Floating Card */

.floating-card {
    position: absolute;
    left: 30px;
    bottom: 2px;
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.floating-card i {
    color: #e67e22;
    font-size: 28px;
    margin-top: 4px;
}

.floating-card p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #111111;
    font-weight: 600;
}

.about-content .section-label {
    display: inline-block;
    color: #ff8c00;
    font-size: 15px;
    font-weight: 500;
    /* letter-spacing: 2px; */
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* CONTENT SECTION */

.about-content {
    flex: 1;
}

.about-tag {
    font-family: 'Poppins', sans-serif;
    display: block;
    color: #e67e22;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* Heading */

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    line-height: 1.2;
    color: #111;
    margin-bottom: 18px;
    font-weight: 550;
}

/* Orange Line */

.heading-line {
    width: 50px;
    height: 3px;
    background: #e67e22;
    margin-bottom: 28px;
}

/* Paragraph */

.about-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Button */

.about-btn {
    font-family: 'Poppins', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #e67e22;
    color: #fff;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.more-content {
    display: none;
    margin-top: 20px;
    animation: fade .4s ease;
}

.more-content.show {
    display: block;
}

@keyframes fade {

    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.about-btn:hover {
    background: #d76f14;
}

/* IMPACT SECTION */

.impact-section {
    position: relative;
    width: 100%;
    min-height: 260px;

    background:
        linear-gradient(rgba(0, 7, 18, 0.88),
            rgba(1, 9, 22, 0.88)),
        url("students.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 50px 90px;
    overflow: hidden;
}

.impact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.impact-left {
    width: 28%;
}

.impact-left .sub-title {
    font-family: 'Poppins', sans-serif;
    display: block;
    color: #d67a15;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.impact-left p {
    color: #fff;
    font-size: 47px;
    line-height: 1.1;
    font-family: 'Playfair display', serif;
    font-weight: 700px;
    margin-bottom: 15px;
}

.impact-left .heading-line {
    width: 55px;
    height: 4px;
    background: #d67a15;
    border-radius: 20px;
}

.impact-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.impact-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 30px;
}

.impact-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 110px;
    background: rgba(255, 255, 255, 0.25);
}

.impact-item i {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #E67E22;
    font-size: 35px;
}

.impact-item h3 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.impact-item p {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
}

.focus-area-section {
    padding: 40px 0 60px;
    background: #fff;
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
}

.section-heading .sub-title {
    font-family: 'Poppins', sans-serif;
    color: #d67a15;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 39px;
    margin-top: 10px;
    color: #111;
}

.section-heading .heading-line {
    width: 55px;
    height: 3px;
    background: #d67a15;
    margin: 15px auto 0;
}

.focus-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.focus-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 28px;
    transition: .4s;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.card-icon {
    width: 75px;
    height: 75px;
    background: #faf5ee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.card-icon i {
    color: #d67a15;
    font-size: 34px;
}

.card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
}

.card-content p {
    font-family: 'Poppins', sans-serif;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-content a {
    color: #d67a15;
    text-decoration: none;
    font-weight: 600;
}

.testimonial-section,
.video-carousel-section {
    width: 100%;
    max-width: none;
    padding: 70px 0;
    background: #fbfbfb;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.testimonial-section::before,
.video-carousel-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images-photo/watercolor_frame_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.testimonial-section > *,
.video-carousel-section > * {
    position: relative;
    z-index: 1;
}

.video-carousel-container {
    width: 100%;
    max-width: none;
    overflow: hidden;
    position: relative;
    padding: 24px 0 36px 0;
}

.video-carousel-container:hover .video-carousel-track {
    animation-play-state: paused;
}

.video-carousel-viewport {
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.video-carousel-track {
    display: flex;
    gap: 28px;
    padding-right: 28px;
    width: max-content;
    animation: infiniteReelScroll 35s linear infinite;
    will-change: transform;
}

@keyframes infiniteReelScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.reel-card {
    width: 305px;
    flex: 0 0 305px;
    background: linear-gradient(135deg, rgba(224, 106, 40, 0.5) 0%, rgba(245, 124, 0, 0.2) 50%, rgba(11, 31, 68, 0.6) 100%);
    border-radius: 24px;
    padding: 3px;
    position: relative;
    transform: perspective(1200px) translateZ(0);
    box-shadow:
        0 8px 16px rgba(11, 31, 68, 0.12),
        0 18px 35px rgba(11, 31, 68, 0.10);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background 0.4s ease;
    overflow: hidden;
    cursor: pointer;
    box-sizing: border-box;
}

.reel-card:hover {
    transform: perspective(1200px) translateY(-10px) scale(1.025) rotateX(1deg);
    box-shadow:
        0 15px 25px rgba(11, 31, 68, 0.18),
        0 30px 50px rgba(11, 31, 68, 0.16),
        0 8px 24px rgba(224, 106, 40, 0.15);
    background: linear-gradient(135deg, rgba(224, 106, 40, 0.85) 0%, rgba(245, 124, 0, 0.45) 50%, rgba(11, 31, 68, 0.85) 100%);
}

.reel-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    background: #0b1f44;
    border-radius: 21px;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.reel-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            transparent 30%,
            transparent 70%,
            rgba(11, 31, 68, 0.4) 100%);
    pointer-events: none;
}

/* Centered Play Button Overlay */
.reel-center-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.reel-center-play i {
    margin-left: 3px;
}

.reel-card:hover .reel-center-play {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(224, 106, 40, 0.95);
    border-color: #ffffff;
    box-shadow: 0 12px 28px rgba(224, 106, 40, 0.45);
}

.reel-sound-toggle {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.reel-sound-toggle:hover {
    background: #e06a28;
    border-color: #e06a28;
    transform: scale(1.1);
}

@media screen and (max-width: 767px) {
    .reel-card {
        width: 260px;
        flex: 0 0 260px;
    }

    .video-carousel-track {
        gap: 18px;
        padding-right: 18px;
    }
}




/* ================= FOOTER (HANDLED CENTRALLY IN FOOTER.CSS) ================= */


/*================ DROPDOWN MENU (Handled centrally in header.css) ================*/

.navbar ul li {
    list-style: none;
    position: relative;
}

/* ================= HERO MOBILE IMAGE DEFAULT HIDE (DESKTOP) ================= */
.hero-mobile-image {
    display: none;
}

/* ================= HOME PAGE RESPONSIVE MEDIA QUERIES ================= */

/* Laptop & Large Desktop (1024px+) - Keep Desktop Unchanged */
@media screen and (min-width: 1024px) {
    .hero-mobile-image {
        display: none !important;
    }
}

/* Mobile & Tablet (Below 1024px) - Hero Slider & Content */
@media screen and (max-width: 1023.98px) {
    .hero-slider-track {
        min-height: 520px;
    }

    .hero-container {
        padding: 120px 24px 50px;
    }

    .slide-content {
        max-width: 100%;
    }

    .slide-title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .slide-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .slide-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .slide-overlay {
        background: linear-gradient(to bottom,
                rgba(15, 16, 20, 0.88) 0%,
                rgba(15, 16, 20, 0.75) 50%,
                rgba(15, 16, 20, 0.88) 100%);
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .prev-arrow {
        left: 15px;
    }

    .next-arrow {
        right: 15px;
    }

    /* 5. Stats Section */
    .stats-section {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 0 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .stats-grid {
        gap: 16px;
        width: 100%;
    }

    .stat-card {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        padding: 18px 16px;
        box-sizing: border-box;
    }

    /* About Section */
    .about-section {
        padding: 35px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .about-wrapper {
        flex-direction: column;
        padding: 24px 16px;
        gap: 25px;
        width: 100%;
        box-sizing: border-box;
    }

    .about-content h2 {
        font-size: 26px;
        text-align: center;
    }

    .about-content p {
        text-align: left;
        font-size: 14.5px;
        line-height: 1.65;
    }

    .heading-line {
        margin: 0 auto 20px;
    }

    .about-btn {
        justify-content: center;
        width: 100%;
    }

    /* Focus Areas */
    .focus-area-section {
        padding: 35px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .focus-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Impact Section */
    .impact-section {
        padding: 35px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .impact-container {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        width: 100%;
    }

    .impact-left {
        width: 100%;
    }

    .impact-left p {
        font-size: 30px;
    }

    .impact-left .heading-line {
        margin: 0 auto;
    }

    .impact-right {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto !important;
        gap: 20px !important;
    }

    .impact-section .impact-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        width: 100% !important;
        padding: 0 !important;
        gap: 16px !important;
    }

    .impact-section .impact-item i {
        flex: 0 0 60px !important;
        width: 60px !important;
        height: 60px !important;
        min-width: 60px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.1) !important;
        color: #E67E22 !important;
        font-size: 24px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
    }

    .impact-item h3,
    .stat-card h3,
    .stat-card h2,
    .stat-number,
    .counter {
        font-family: 'Poppins', sans-serif !important;
        font-size: clamp(2rem, 7vw, 2.5rem) !important;
        font-weight: 600 !important;
        line-height: 1.1 !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .impact-item p {
        font-size: 15px !important;
        margin: 4px 0 0 0 !important;
        text-align: left !important;
    }

    .impact-item::after {
        display: none !important;
    }

    /* Testimonials Video Stream Responsive */
    .testimonial-section {
        padding: 45px 0;
        width: 100%;
        box-sizing: border-box;
    }

    @media screen and (max-width: 768px) {
        .voices-stream-track {
            gap: 18px;
            animation-duration: 25s;
        }

        .voices-stream-track .reel-card {
            width: 220px;
        }

        .reel-video-container {
            max-height: 390px;
        }
    }
}

@media screen and (max-width: 768px) {
    .hero-slider-track {
        min-height: 480px;
    }

    .hero-container {
        padding: 95px 18px 55px;
    }

    .slide-title {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .slide-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

    .slide-features {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 12px;
        margin-bottom: 22px;
    }

    .feature-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.08);
        padding: 6px 12px 6px 8px;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(4px);
    }

    .feature-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
        border: 1px solid rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.12);
        flex-shrink: 0;
    }

    .feature-text h4 {
        font-size: 12px;
        font-weight: 600;
        margin: 0;
        white-space: nowrap;
        color: #ffffff;
    }

    .feature-text p {
        display: none;
    }

    .hero-btn {
        display: inline-flex;
        width: fit-content;
        min-width: 150px;
        padding: 10px 22px;
        font-size: 14px;
        border-radius: 30px;
    }

    .slider-arrow {
        display: none; /* Hide arrows on mobile to keep UI clean, swipe and dots handle navigation */
    }

    .slider-dots-container {
        bottom: 14px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 24px;
        border-radius: 5px;
    }

    .video-modal-container {
        width: 95%;
        border-radius: 12px;
    }

    .video-modal-close {
        top: 8px;
        right: 8px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .focus-cards {
        grid-template-columns: 1fr;
    }

    .focus-card {
        padding: 20px 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 15px;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hero-container {
        padding: 90px 16px 50px;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-description {
        font-size: 13px;
        line-height: 1.55;
    }

    .feature-text h4 {
        font-size: 11px;
    }
}

/* ==========================================================
   WHAT WE DO SECTION (7 LEARNING APPROACHES SLIDER & MODAL)
   ========================================================== */

.focus-area-section {
    padding: 60px 0 70px;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.what-we-do-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 35px auto 0;
    padding: 0 60px 28px;
}

.slider-viewport {
    width: 100%;
    overflow: hidden;
    padding: 15px 5px 25px;
    margin: -15px -5px -25px;
}

.slider-track {
    display: flex;
    gap: 25px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.learning-card {
    flex: 0 0 calc((100% - 50px) / 3);
    min-width: 0;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 12px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

.learning-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.09);
    border-color: rgba(214, 122, 21, 0.3);
}

.learning-card .card-icon {
    width: 70px;
    height: 70px;
    background: #faf5ee;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.learning-card:hover .card-icon {
    background: #d67a15;
    transform: scale(1.05);
}

.learning-card .card-icon i {
    color: #d67a15;
    font-size: 30px;
    transition: color 0.3s ease;
}

.learning-card:hover .card-icon i {
    color: #ffffff;
}

.learning-card .card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.learning-card .card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #111111;
    margin: 0 0 12px 0;
    line-height: 1.35;
}

.learning-card .card-content p {
    font-family: 'Poppins', sans-serif;
    color: #555555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.card-read-more-btn {
    align-self: flex-start;
    background: transparent;
    border: none;
    color: #d67a15;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease, gap 0.25s ease;
}

.card-read-more-btn:hover {
    color: #b56208;
    gap: 12px;
}

.slider-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: #ffffff;
    border: 1px solid #e2e2e2;
    border-radius: 50%;
    color: #0B1F44;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slider-arrow-btn:hover {
    background: #d67a15;
    color: #ffffff;
    border-color: #d67a15;
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow-btn.prev-btn {
    left: 16px;
}

.slider-arrow-btn.next-btn {
    right: 16px;
}

.wwd-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.wwd-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dddddd;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
}

.wwd-dot.active {
    background: #d67a15;
    width: 26px;
    border-radius: 12px;
}

/* --- What We Do Modal Popup --- */
.learning-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 31, 68, 0.65);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 20px;
    box-sizing: border-box;
}

.learning-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.learning-modal-box {
    background: #ffffff;
    border-radius: 16px;
    max-width: 580px;
    width: 100%;
    padding: 36px 32px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    box-sizing: border-box;
}

.learning-modal-overlay.is-active .learning-modal-box {
    transform: translateY(0) scale(1);
}

.learning-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f4f4f4;
    color: #333333;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease;
}

.learning-modal-close:hover {
    background: #d67a15;
    color: #ffffff;
}

.learning-modal-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px;
}

.learning-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #faf5ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.learning-modal-icon i {
    color: #d67a15;
    font-size: 26px;
}

.learning-modal-header h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #0B1F44;
    margin: 0;
}

.learning-modal-divider {
    height: 3px;
    width: 45px;
    background: #d67a15;
    margin-bottom: 20px;
    border-radius: 2px;
}

.learning-modal-body p {
    font-family: 'Poppins', sans-serif;
    color: #444444;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.learning-modal-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.learning-modal-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

.learning-modal-highlight-item i {
    color: #d67a15;
    margin-top: 3px;
    flex-shrink: 0;
}

@media screen and (max-width: 1024px) {
    .what-we-do-slider-wrapper {
        padding: 0 50px;
    }

    .learning-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }
}

@media screen and (max-width: 640px) {
    .what-we-do-slider-wrapper {
        padding: 0 35px;
    }

    .learning-card {
        flex: 0 0 100%;
        padding: 24px 20px;
    }

    .slider-arrow-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .slider-arrow-btn.prev-btn {
        left: -5px;
    }

    .slider-arrow-btn.next-btn {
        right: -5px;
    }

    .learning-modal-box {
        padding: 28px 20px;
    }

    .learning-modal-header h3 {
        font-size: 19px;
    }
}

/* ================= WHY CHOOSE AJMF SECTION ================= */
.why-choose-section {
    padding: 70px 0 80px;
    background: #fcfcfc;
    border-top: 1px solid #f0f0f0;
}

.why-choose-intro {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #555555;
    max-width: 720px;
    margin: 15px auto 0;
    text-align: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    align-items: stretch;
    gap: 28px;
    margin-top: 45px;
}

.why-choose-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    padding: 36px 26px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.why-choose-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-choose-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #faf2e9;
    color: #d67a15;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
    transition: background 0.3s ease, color 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
    background: #d67a15;
    color: #ffffff;
}

.why-choose-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #111111;
    margin-bottom: 12px;
    line-height: 1.35;
}

.why-choose-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media screen and (max-width: 640px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-card {
        padding: 28px 20px;
    }
}

/* ================= VIDEO MODAL STYLES ================= */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 20, 0.88);
    backdrop-filter: blur(8px);
}

.video-modal-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 960px;
    background: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.video-modal.is-active .video-modal-container {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.2s ease;
}

.video-modal-close:hover {
    background: #f8941d;
    border-color: #f8941d;
    color: #ffffff;
    transform: scale(1.08);
}

.video-player-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    width: 100%;
    background: #000;
}

.video-player-wrapper video,
.video-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 0;
}