/* ================= 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;
}

/* ================= HEADER ================= */

.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #0B1F44;
    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-size: 20px;
    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 SECTION ================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 580px;
    background-image: url('image.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 95px 0 100px 0;
    margin: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Full overlay blending left text background into right students image */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            #eef5ff 0%,
            #eef5ff 38%,
            rgba(238, 245, 255, 0.88) 54%,
            rgba(238, 245, 255, 0.35) 72%,
            rgba(238, 245, 255, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-botanical-topleft {
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
    height: auto;
    opacity: 0.22 !important;
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 45px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 520px;
    width: 100%;
    padding: 10px 0 !important;
}

.hero-tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.hero-tagline-wrapper .tag-dash {
    display: inline-block;
    width: 22px;
    height: 3px;
    background-color: #ea580c;
    border-radius: 2px;
}

.hero-subtitle {
    color: #ea580c !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    display: inline-block !important;
    margin: 0 !important;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif !important;
    font-size: 48px !important;
    color: #0b1f44 !important;
    font-weight: 700 !important;
    line-height: 1.18 !important;
    margin: 12px 0 20px 0 !important;
    text-shadow: none !important;
}

.hero-content h1 .highlight-orange,
.hero-content h1 span {
    font-family: 'Playfair Display', serif !important;
    color: #ea580c !important;
    font-weight: 700 !important;
}

.hero-content p {
    font-family: 'Poppins', sans-serif !important;
    color: #475569 !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.65 !important;
    margin-bottom: 32px !important;
    max-width: 520px !important;
    text-shadow: none !important;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #ea580c !important;
    color: #ffffff !important;
    padding: 14px 32px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn-primary:hover {
    background: #c94a07 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4) !important;
}

.hero-image-wrapper {
    flex: 0 0 50%;
    max-width: 50%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.hero-main-img {
    width: 100%;
    height: 100%;
    max-height: 440px;
    object-fit: cover;
    display: block;
}

/* ================= SECTION TITLE GENERAL ================= */
.section-title {
    margin-top: 0 !important;
    text-align: center;
    margin-bottom: 45px !important;
}

.section-tag-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.section-tag-wrapper .tag-dash {
    display: inline-block;
    width: 18px;
    height: 2.5px;
    background-color: #ea580c;
    border-radius: 2px;
}

.section-tag {
    color: #ea580c !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
}

/* ================= MISSION & VISION ================= */
.mission-vision {
    background-color: #f0f6fc !important;
    background-image: none !important;
    width: 100% !important;
    padding: 75px 0 85px 0 !important;
    position: relative !important;
    z-index: 1 !important;
    border-radius: 0 !important;
    overflow: visible !important;
    filter: none !important;
    opacity: 1 !important;
}

.mission-vision::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('watercolor_frame_bg.png') !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    opacity: 0.22 !important;
    filter: hue-rotate(185deg) saturate(0.55) !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.mission-vision > * {
    position: relative !important;
    z-index: 1 !important;
    opacity: 1 !important;
    filter: none !important;
}

.mission-vision .section-title {
    margin-top: 0 !important;
    text-align: center !important;
    margin-bottom: 40px !important;
}

.mission-vision .section-title h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: 38px !important;
    color: #0B3B7A !important;
    font-weight: 700 !important;
    margin: 8px 0 10px 0 !important;
}

.mission-vision .section-title p {
    font-family: 'Poppins', sans-serif !important;
    color: #6F88A5 !important;
    font-size: 16px !important;
    margin: 0 !important;
}

.mv-container-outer {
    max-width: 1240px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.mv-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 35px auto;
}

.mv-card {
    background: #ffffff !important;
    border: 1px solid rgba(240, 244, 248, 0.9) !important;
    border-radius: 16px !important;
    padding: 34px 30px !important;
    box-shadow: 0 10px 30px rgba(11, 59, 122, 0.05) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.mv-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 36px rgba(11, 59, 122, 0.09) !important;
}

.mv-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.mv-icon {
    background: #FFF1E5 !important;
    color: #FF6A00 !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    flex-shrink: 0 !important;
}

.mv-card-body {
    flex: 1;
}

.mv-card-body h3 {
    font-family: 'Playfair Display', serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #0B3B7A !important;
    margin: 0 0 4px 0 !important;
}

.mv-card-title-line {
    width: 24px;
    height: 2.5px;
    background-color: #FF6A00;
    border-radius: 2px;
    margin-bottom: 12px;
}

.mv-card-body p {
    font-family: 'Poppins', sans-serif !important;
    color: #315B87 !important;
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

/* Right side script text */
.mv-right-accents {
    position: absolute;
    right: 15px;
    top: -25px;
    pointer-events: none;
    z-index: 3;
}

.mv-script-text {
    font-family: 'Caveat', cursive !important;
    color: #FF7A18 !important;
    font-size: 28px !important;
    line-height: 1.15 !important;
    transform: rotate(-6deg);
    text-align: center;
}

/* Original Rectangular Founder Card */
/* .founder-container {
    background: #031b4e !important;
    border-radius: 24px !important;

    width: 480px !important;
    max-width: 480px !important;
    min-width: 480px !important;

    margin: 30px 0 0 0 !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;

    padding: 42px 35px !important;
    gap: 30px !important;

    color: #ffffff !important;

    box-shadow: 0 18px 40px rgba(3, 27, 78, 0.15) !important;

    position: relative !important;
    z-index: 2 !important;

    box-sizing: border-box !important;
}

.founder-image {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
}

.founder-image img {
    width: 220px !important;
    height: 220px !important;
    border-radius: 50% !important;
    border: 6px solid rgba(255, 255, 255, 0.1) !important;
    object-fit: cover !important;
}

.founder-content {
    flex: 2 !important;
}

.founder-content span {
    color: #f37022 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    display: block !important;
    margin-bottom: 5px !important;
}

.founder-content h2 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 30px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    margin-bottom: 5px !important;
}

.founder-content h4 {
    color: #f37022 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 18px !important;
}

.founder-content p {
    color: #dddddd !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    margin-bottom: 22px !important;
}

.founder-content blockquote {
    font-size: 17px !important;
    font-style: italic !important;
    color: #ffffff !important;
    border-left: 4px solid #f37022 !important;
    padding-left: 18px !important;
    margin-top: 15px !important;
    line-height: 1.6 !important;
}

.founder-content blockquote::before {
    content: "“";
    font-size: 50px;
    color: rgba(243, 112, 34, 0.3);
    position: absolute;
    left: -10px;
    top: -25px;
}
 */

/* =========================
   FOUNDER SECTION
========================= */

/* =========================
   FOUNDER CARD
========================= */
/* 
.founder-container {
    width: 480px !important;
    max-width: 480px !important;

    margin: 30px 0 0 0 !important;
    padding: 42px 28px !important;

    background: #30230f !important;
    border-radius: 24px !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;

    gap: 28px !important;

    box-sizing: border-box !important;
}


/* =========================
   FOUNDER IMAGE
========================= */

/* .founder-image {
    flex: 0 0 125px !important;

    width: 125px !important;
    height: 215px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.founder-image img {
    width: 115px !important;
    height: 205px !important;

    object-fit: cover !important;
    border-radius: 50% !important;

    border: 6px solid #67521c !important;
}
 */
*/
/* =========================
   FOUNDER CONTENT
========================= */

/* .founder-content {
    flex: 1 !important;
    min-width: 0 !important;
}

.founder-content > span {
    display: block !important;

    color: #2998e8 !important;
    font-size: 16px !important;

    margin-bottom: 10px !important;
}

.founder-content h2 {
    color: #ffffff !important;

    font-size: 30px !important;
    line-height: 1.35 !important;

    margin: 0 0 8px 0 !important;
}

.founder-content h4 {
    color: #2998e8 !important;

    font-size: 16px !important;
    line-height: 1.4 !important;

    margin: 0 0 20px 0 !important;
}

.founder-content p {
    color: #ffffff !important;

    font-size: 15px !important;
    line-height: 1.6 !important;

    margin: 0 !important;
}

.founder-content blockquote {
    margin: 22px 0 0 0 !important;

    padding: 2px 0 2px 18px !important;

    border-left: 4px solid #2998e8 !important;

    color: #ffffff !important;

    font-size: 17px !important;
    line-height: 1.55 !important;

    font-style: italic !important;
} */

New

/* ================= FOUNDER SECTION ================= */
.founder {
    background: #f4f7fc;
    padding: 40px 5%;
}

.founder-container {
    background: #342206;
    border-radius: 24px;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 50px;
    gap: 50px;
    color: #ffffff;
    box-shadow: 0 20px 40px rgba(3, 27, 78, 0.15);
}

.founder-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.founder-image img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.founder-content {
    flex: 2;
}

.founder-content span {
    color: #f37022;
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.founder-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.founder-content h4 {
    color: #f37022;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.founder-content p {
    color: #dddddd;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.founder-content blockquote {
    font-size: 18px;
    font-style: italic;
    color: #ffffff;
    border-left: 4px solid #f37022;
    padding-left: 20px;
    margin-top: 20px;
    line-height: 1.6;
    position: relative;
}

.founder-content blockquote::before {
    content: "“";
    font-size: 50px;
    color: rgba(243, 112, 34, 0.3);
    position: absolute;
    left: -10px;
    top: -25px;
}


/* ================= PARTNER & JOURNEY ================= */
.partner-journey {
    position: relative !important;
    background-color: #f8fafc !important;
    width: 100%;
    padding: 65px 10%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
    overflow: hidden !important;
    z-index: 1 !important;
}

.partner-journey::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('images-photo/partner_bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0.45 !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.partner-journey>* {
    position: relative !important;
    z-index: 1 !important;
}

.partner-card {
    background: rgba(248, 250, 252, 0.75) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border-radius: 18px;
    padding: 38px 42px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(3, 27, 78, 0.04);
    border: 1px solid #e2e8f0;
    box-sizing: border-box;
}

.journey-card {
    background: #f4f7fc;
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(3, 27, 78, 0.06);
}

.partner-card-span,
.journey-card-span {
    color: #f37022;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.partner-card h2,
.journey-card h2 {
    font-size: 36px;
    color: #031b4e;
    margin-bottom: 25px;
}

.partner-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.partner-content img {
    width: 120px;
    object-fit: contain;
}

.partner-content p,
.journey-card p {
    color: #555555;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.journey-card ul {
    position: relative;
    padding-left: 25px;
}

.journey-card ul::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #f37022;
}

.partner-content ul li {
    font-size: 14px;
    color: #333333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.partner-content ul li::before {
    content: "⚙";
    left: -25px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    color: #f37022;
}

/* ==========================================================
   RIGHT SIDE: PHOTOS COLLAGE AREA
   ========================================================== */
.initiative-photo-collage {
    position: relative;
    width: 450px;
    /* Collage fixed width */
    height: 400px;
    /* Collage fixed height */
    flex-shrink: 0;
    /* Responsive flex crash se bachne ke liye */
}

/* Common Photo Box Styles (Rounded Corners, Shadows) */
.collage-photo {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Smooth Zoom Animation */
    cursor: pointer;
    background-color: #ffffff;
}

.collage-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Individual Photo Positioning & Tilting */
.photo-1 {
    width: 240px;
    height: 300px;
    top: 20px;
    left: 0;
    transform: rotate(-3deg);
    /* Tilted Left */
    z-index: 2;
    /* Middle Layer */
}

.photo-2 {
    width: 210px;
    height: 170px;
    top: 0;
    right: 10px;
    transform: rotate(2deg);
    /* Tilted Right */
    z-index: 1;
    /* Bottom Layer */
}

.photo-3 {
    width: 220px;
    height: 170px;
    bottom: 10px;
    right: 20px;
    transform: rotate(-2deg);
    /* Tilted Left */
    z-index: 3;
    /* Top Layer */
}

/* Timeline/Journey */
.journey-card ul {
    position: relative;
    padding-left: 25px;
}

.journey-card ul::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #f37022;
}

.journey-card ul li {
    margin-bottom: 20px;
    position: relative;
    font-size: 14px;
    list-style: none;
    color: #555555;
}

.journey-card ul li::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f37022;
    border: 2px solid #fffbf8;
}

.journey-card ul li strong {
    color: #031b4e;
    display: inline-block;
    font-size: 16px;
    margin-right: 10px;
}


/* ==========================================================
   RIGHT SIDE: PHOTOS COLLAGE AREA
   ========================================================== */
.initiative-photo-collage {
    position: relative;
    width: 450px;
    /* Collage fixed width */
    height: 400px;
    /* Collage fixed height */
    flex-shrink: 0;
    /* Responsive flex crash se bachne ke liye */
}

/* Common Photo Box Styles (Rounded Corners, Shadows) */
.collage-photo {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Smooth Zoom Animation */
    cursor: pointer;
    background-color: #ffffff;
}

.collage-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Individual Photo Positioning & Tilting */
.photo-1 {
    width: 240px;
    height: 300px;
    top: 20px;
    left: 0;
    transform: rotate(-3deg);
    /* Tilted Left */
    z-index: 2;
    /* Middle Layer */
}

/* ================= GALLERY ================= */

.gallery-section {
    position: relative !important;
    padding: 20px 0 60px;
    background: #ffffff;
    overflow: hidden !important;
    z-index: 1 !important;
}

.gallery-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('images-photo/memories_bg.png') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    opacity: 0.18 !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.gallery-section>* {
    position: relative !important;
    z-index: 1 !important;
}

.gallery-container {
    position: relative !important;
    width: 85%;
    margin: auto;
    background: rgba(238, 245, 255, 0.82) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    overflow: hidden !important;
    z-index: 1 !important;
}

.gallery-container::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('images-photo/memories_bg.png') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: contain !important;
    opacity: 0.14 !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.gallery-container>* {
    position: relative !important;
    z-index: 1 !important;
}

.gallery-container h2 {
    font-family: 'poppins', sans-serif;
    font-weight: 600;
    color: #08204f;
    font-size: 40px;
    margin: 8px 0 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}

.gallery-grid img {
    width: 100% !important;
    height: 220px !important;
    min-height: 220px !important;
    max-height: 220px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

/* ================= IMPACT ================= */

.impact-section {
    background: transparent;
    /* Full blue background hata do */
    padding: 40px 0;
}

.impact-container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #08204f;
    padding: 35px 45px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.impact-title {
    width: 180px;
}

.impact-title h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    margin-top: 10px;
}

.impact-stats {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.impact-icon {
    width: 70px;
    height: 70px;
    background: #ff7a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-icon i {
    color: #fff;
    font-size: 30px;
}

.impact-text h3 {
    color: #ff7a00;
    font-size: 42px;
    margin: 0;
    font-weight: 300;
}

.impact-text p {
    color: #fff;
    margin-top: 6px;
    font-size: 18px;
}

.divider {
    width: 1px;
    height: 90px;
    background: rgba(255, 255, 255, .15);
}

@media (max-width: 768px) {

    /* 1. "OUR STRATEGIC PARTNERS" FONT WEIGHT */
    .partner-card h2 {
        font-size: 26px !important;
        font-weight: 600 !important;
        line-height: 1.25 !important;
        color: #031b4e !important;
        margin-bottom: 18px !important;
        text-align: left !important;
    }

    /* 2. STRATEGIC PARTNER SECTION PARAGRAPH SIZING & LEFT ALIGNMENT */
    .partner-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: left !important;
        gap: 20px !important;
    }

    .partner-text-content {
        width: 100% !important;
        text-align: left !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .partner-text-content p,
    .partner-content p,
    .partner-card p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        color: #555555 !important;
        text-align: left !important;
        margin-bottom: 14px !important;
        padding: 0 !important;
    }

    /* 3. IMPACT SECTION — "OUR IMPACT" IN ONE SINGLE LINE & BOTTOM PADDING */
    .impact-section {
        padding: 40px 16px 50px 16px !important;
    }

    .impact-container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 30px 20px 45px 20px !important;
        flex-direction: column !important;
        gap: 25px !important;
        align-items: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .impact-title {
        width: 100% !important;
        max-width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
    }

    .impact-title h2 {
        font-size: 28px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        text-align: center !important;
        color: #ffffff !important;
        margin: 0 auto !important;
        line-height: 1.2 !important;
    }

    /* 4. IMPACT CARD BOTTOM SPACING */
    .impact-stats {
        width: fit-content !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 26px !important;
        padding-bottom: 10px !important;
    }

    .impact-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        gap: 18px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .impact-icon {
        flex: 0 0 64px !important;
        width: 64px !important;
        height: 64px !important;
        min-width: 64px !important;
        border-radius: 50% !important;
        background: #ff7a00 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .impact-icon i {
        font-size: 26px !important;
        color: #ffffff !important;
        margin: 0 !important;
    }

    .impact-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        text-align: left !important;
        min-width: 160px !important;
    }

    .impact-text h3 {
        font-family: 'Poppins', sans-serif !important;
        font-size: clamp(2rem, 7vw, 2.5rem) !important;
        font-weight: 600 !important;
        line-height: 1.1 !important;
        color: #ff7a00 !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .impact-text p {
        font-size: 15px !important;
        color: #ffffff !important;
        margin: 4px 0 0 0 !important;
        text-align: left !important;
    }

    .divider {
        display: none !important;
    }
}

/* ================= FOOTER (HANDLED CENTRALLY IN FOOTER.CSS) ================= */

/*==============================
      IMAGE VIEWER
===============================*/

.image-viewer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);

    display: none;

    justify-content: center;
    align-items: center;

    z-index: 99999;
}

.image-viewer-overlay.is-active {
    display: flex;
}

.image-viewer-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.clickable-image {
    cursor: pointer;
}

.image-viewer-container img {
    width: auto;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

.image-viewer-close {
    position: absolute;
    top: -45px;
    right: 0;

    background: none;
    border: none;

    color: #fff;
    font-size: 45px;
    cursor: pointer;
}

/*================ DROPDOWN MENU ================*/

.navbar ul li {
    list-style: none;
    position: relative;
}

@media screen and (min-width: 1024px) {
    .navbar .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 220px;
        background: #0B1F44 !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        padding: 8px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        z-index: 999;
        list-style: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        gap: 0 !important;
    }

    .navbar .dropdown-menu li {
        width: 100% !important;
    }

    .navbar .dropdown-menu li a {
        display: block !important;
        padding: 10px 18px;
        color: #ffffff !important;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s ease, background 0.3s ease;
    }

    .navbar .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        color: #f57c00 !important;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}



/* ==========================================================
   HAMBURGER MENU & MOBILE RESPONSIVE NAVBAR
   ========================================================== */

/* ================= COMPREHENSIVE RESPONSIVE MEDIA QUERIES FOR MISSION PAGE ================= */
@media screen and (max-width: 992px) {
    .section-title {
        margin-top: 20px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .mission-vision {
        padding: 55px 20px;
        border-radius: 30px 0 0 0;
    }

    .mission-vision .section-title {
        margin-top: 0;
    }

    /* =========================
   FOUNDER - GRID + FLEX FIX
========================= */
    /* 
   .mv-wrapper .founder-container {
    grid-column: 1 / -1 !important;

    width: 100% !important;
    max-width: 1000px !important;
    min-width: 0 !important;

    min-height: 300px !important;

    margin: 0 auto !important;

    padding: 38px 50px !important;

    background: #30230f !important;

    border-radius: 24px !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;

    gap: 45px !important;

    color: #ffffff !important;

    box-sizing: border-box !important;

    box-shadow: 0 18px 40px rgba(3, 27, 78, 0.15) !important;

    position: relative !important;
    z-index: 2 !important;
}



    .impact-item h3,
    .impact-text h3 {
        font-family: 'Poppins', sans-serif !important;
        font-size: clamp(2rem, 7vw, 2.5rem) !important;
        font-weight: 600 !important;
        line-height: 1.1 !important;
    }

    .founder {
        padding: 30px 16px;
    }

    .founder-container {
        flex-direction: column;
        padding: 30px 16px;
        gap: 20px;
        text-align: center;
    }

    .mv-wrapper .founder-image {
    flex: 0 0 180px !important;

    width: 180px !important;
    height: 220px !important;

    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
   .mv-wrapper .founder-image img {
    width: 145px !important;
    height: 200px !important;

    object-fit: cover !important;
    object-position: center !important;

    border-radius: 50% !important;

    border: 6px solid #67521c !important;

    display: block !important;
}

.mv-wrapper .founder-content {
    flex: 1 1 auto !important;

    width: auto !important;
    max-width: 650px !important;
    min-width: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
}


/* Label */

    /* Label */
    /* 
.mv-wrapper .founder-content > span {
    display: block !important;

    color: #2998e8 !important;

    font-size: 16px !important;
    font-weight: 500 !important;

    margin-bottom: 8px !important;
}


/* Name */

    /* .mv-wrapper .founder-content h2 {
    color: #ffffff !important;

    font-size: 30px !important;
    line-height: 1.25 !important;

    font-weight: 700 !important;

    margin: 0 0 8px 0 !important;
} */


    /* Role */

    /* .mv-wrapper .founder-content h4 {
    color: #2998e8 !important;

    font-size: 16px !important;
    line-height: 1.4 !important;

    font-weight: 600 !important;

    margin: 0 0 18px 0 !important;
} */
    */
    /* Description */

    /* .mv-wrapper .founder-content p {
    color: #ffffff !important;

    font-size: 15px !important;
    line-height: 1.55 !important;

    max-width: 650px !important;

    margin: 0 0 18px 0 !important;
} */


    /* =========================================
   QUOTE
========================================= */

    /* .mv-wrapper .founder-content blockquote {
    margin: 0 !important;

    padding: 3px 0 3px 18px !important;

    border-left: 4px solid #2998e8 !important;

    color: #ffffff !important;

    font-size: 17px !important;
    line-height: 1.5 !important;

    font-style: italic !important;

    max-width: 600px !important;
}
    .founder-content h2 {
        font-size: 24px;
    } */
    */ .partner-journey {
        padding: 30px 16px;
        max-width: 100%;
    }

    .partner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .initiative-photo-collage {
        width: 100% !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    .collage-photo {
        position: relative !important;
        width: 100% !important;
        height: 200px !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .mv-wrapper {
        grid-template-columns: 1fr !important;
    }

    .mv-right-accents {
        display: none !important;
    }

    .founder-container {
        flex-direction: column !important;
        text-align: center !important;
        padding: 35px 25px !important;
        gap: 25px !important;
    }

    .founder-image img {
        width: 180px !important;
        height: 180px !important;
    }

    .founder-content blockquote {
        border-left: none !important;
        border-top: 3px solid #f37022 !important;
        padding-left: 0 !important;
        padding-top: 15px !important;
    }
}

/* ================= MOBILE PHONES ONLY (max-width: 767px) ================= */
@media screen and (max-width: 767px) {
    .hero {
        background: #0B1F44;
        padding: 0 0 40px 0;
        min-height: auto;
        display: block;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        align-items: stretch;
    }

    .hero-image {
        display: block !important;
        width: 100%;
        order: 1;
        margin-bottom: 24px;
        overflow: hidden;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        max-height: 320px;
        object-fit: cover;
        display: block;
    }

    .hero-content {
        order: 2;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin-bottom: 0;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 1.2px;
        margin-bottom: 12px;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 15.5px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

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

    .gallery-container {
        width: 100%;
        padding: 20px 16px;
    }

    .gallery-container h2 {
        font-size: 24px;
    }
}

/* ==========================================================
   PARTNERSHIP & IMPACT SUBTLE CUTOUT BACKGROUNDS
   ========================================================== */
section.ajmf-values-outer-wrapper[id="partner"],
section.our-partner-section[id="partner"],
.our-partner-section,
.our-partner-wrapper {
    position: relative !important;
    overflow: hidden !important;
}

section.ajmf-values-outer-wrapper[id="partner"]::before,
section.our-partner-section[id="partner"]::before,
.our-partner-section::before,
.our-partner-wrapper::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('watercolor_frame_bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0.22 !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

section.ajmf-values-outer-wrapper[id="partner"] > *,
section.our-partner-section[id="partner"] > *,
.our-partner-section > *,
.our-partner-wrapper > * {
    position: relative !important;
    z-index: 1 !important;
}

.impact-section,
.programs-impact-section,
.campusled-impact-stats,
.ready-section,
.student-led-campus-page .ready-section {
    position: relative !important;
    overflow: hidden !important;
}

.impact-section::before,
.programs-impact-section::before,
.campusled-impact-stats::before,
.ready-section::before,
.student-led-campus-page .ready-section::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: url('watercolor_frame_bg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    opacity: 0.22 !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.impact-section > *,
.programs-impact-section > *,
.campusled-impact-stats > *,
.ready-section > *,
.student-led-campus-page .ready-section > * {
    position: relative !important;
    z-index: 1 !important;
}