/* ==========================================================
   GANDHI MANDELA FOUNDATION - MATERIAL / LUXURY THEME
   Colors: Charcoal (#333333) + Gold (#d4a843) + White
   Pure CSS (No frameworks)
========================================================== */

:root {
  --charcoal: #333333;
  --gold: #d4a843;
  --gold-dark: #b98c2f;
  --white: #ffffff;
  --muted: #666666;
  --bg-soft: #f7f7f7;
  --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --card-shadow2: 0 15px 35px rgba(0, 0, 0, 0.12);
  --radius: 14px;
  --radius-lg: 18px;
  --max-width: 1200px;
  --transition: all 0.28s ease;
}

/* ===============================
   GLOBAL RESET + BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 92%;
  max-width: var(--max-width);
  margin: auto;
}
.gmf-container p {
  font-size: 15px;
  line-height: 1.7;
}

/*==============================
        TOP BAR
==============================*/

.topbar{
    background:#111;
    color:rgba(255,255,255,.85);
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:14px;
}

.topbar-inner{
    min-height:50px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.topbar-left,
.topbar-right{
    display:flex;
    align-items:center;
    gap:22px;
}

.topbar-item{
    display:flex;
    align-items:center;
    gap:8px;
    color:rgba(255,255,255,.85);
}

.topbar-item i{
    color:#d4a843;
    font-size:15px;
}

.topbar-item a{
    color:inherit;
    text-decoration:none;
    transition:.3s;
}

.topbar-item a:hover{
    color:#d4a843;
}

/*==============================
      SOCIAL ICONS
==============================*/

.topbar-social{
    display:flex;
    gap:10px;
}

.topbar-social a{
    width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.35s;
}

.topbar-social a:hover{
    background:#d4a843;
    color:#111;
    transform:translateY(-3px);
}

/*==============================
      DONATE BUTTON
==============================*/

.topbar-donate{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#d4a843;
    color:#111;
    padding:10px 18px;
    border-radius:30px;
    font-weight:600;
    text-decoration:none;
    transition:.35s;
}

.topbar-donate:hover{
    background:#fff;
    color:#111;
}

/*==============================
      RESPONSIVE
==============================*/

@media(max-width:991px){

.topbar-inner{
    flex-direction:column;
    padding:10px 0;
    gap:12px;
}

.topbar-left,
.topbar-right{
    justify-content:center;
    flex-wrap:wrap;
}

}

@media(max-width:600px){

.topbar{
    display:none;
}

}



/* ===============================
   NAVBAR
================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  height: 70px;
  margin-top: 12px;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
}

.logo i {
  color: var(--gold);
  font-size: 22px;
}
.logo {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
}

.logo img {
  width: 100%;
  height: 60px;
  object-fit: contain;
}

.logo span {
  line-height: 1.2;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 4px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  height: 2px;
  width: 0%;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  background: var(--gold);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(212, 168, 67, 0.35);
}

.nav-btn:hover {
  background: var(--gold-dark);
}

/* ===============================
   DESKTOP DROPDOWN MENU
================================ */
.nav-dropdown {
  position: relative;
}

.drop-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--card-shadow2);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 9999;
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
}

.dropdown-menu a:hover {
  background: rgba(212, 168, 67, 0.12);
  color: var(--gold-dark);
}

/* Show dropdown */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Sub Dropdown */
.nav-subdropdown {
  position: relative;
}

.sub-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--card-shadow2);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: var(--transition);
}

.nav-subdropdown:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ===============================
   MOBILE MENU
================================ */

.hamburger{
    display:none;
    border:none;
    background:none;
    font-size:26px;
    cursor:pointer;
    color:#000 !important;
    -webkit-text-fill-color:#000 !important;
}

.hamburger i,
.hamburger svg,
.hamburger .fa-bars,
.hamburger .fa-xmark,
.hamburger .fa-times{
    color:#000 !important;
    fill:#000 !important;
    stroke:#000 !important;
}

.mobile-menu{
    display:none;
}

@media (max-width:780px){

    .nav-links{
        display:none;
    }

    .hamburger{
        display:block;
    }

    .mobile-menu{
        display:block;
        position:fixed;
        top:70px;
        left:-100%;
        width:100%;
        height:calc(100vh - 70px);
        background:#fff;
        overflow-y:auto;
        transition:.35s ease;
        z-index:999999;
    }

    .mobile-menu.active{
        left:0;
    }

    /* Main Links */
    .mobile-menu a,
    .mobile-drop-btn,
    .mobile-sub-btn{
        display:flex;
        justify-content:space-between;
        align-items:center;
        width:100%;
        padding:18px 22px;
        font-size:16px;
        font-weight:600;
        color:#000 !important;
        -webkit-text-fill-color:#000 !important;
        text-decoration:none;
        background:#fff;
        border:none;
        border-bottom:1px solid #eee;
        cursor:pointer;
    }

    /* Remove desktop underline */
    .mobile-menu a::after{
        display:none !important;
        content:none !important;
    }

    /* Active Link */
    .mobile-menu a.active,
    .mobile-menu a[aria-current="page"]{
        color:#000 !important;
        font-weight:600;
        border-top:3px solid #d4a843;
        border-bottom:1px solid #eee;
    }

    /* Dropdowns */
    .mobile-drop-menu,
    .mobile-sub-menu{
        display:none;
        background:#f8f8f8;
    }

    .mobile-drop-menu.active,
    .mobile-sub-menu.active{
        display:block;
    }

    .mobile-drop-menu a{
        padding-left:40px;
        font-size:15px;
        font-weight:500;
    }

    .mobile-sub-menu a{
        padding-left:60px;
        font-size:15px;
        font-weight:500;
    }

    /* Safari Fix */
    .mobile-menu a,
    .mobile-menu a:link,
    .mobile-menu a:visited,
    .mobile-menu a:hover,
    .mobile-menu a:active{
        color:#000 !important;
        -webkit-text-fill-color:#000 !important;
        text-decoration:none;
    }

    .mobile-drop-btn,
    .mobile-sub-btn,
    .mobile-drop-btn i,
    .mobile-sub-btn i,
    .mobile-drop-btn svg,
    .mobile-sub-btn svg{
        color:#000 !important;
        fill:#000 !important;
        stroke:#000 !important;
    }

    .mobile-menu *{
        color:#000;
    }
}

/* =========================
   MODERN GMF IMAGE SLIDER
========================= */

.gmf-slider-section {
    width: 100%;
    background: #000;
    padding: 0;
}

.gmf-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* =========================
   RESPONSIVE SLIDER
========================= */

.gmf-slider {
    position: relative;
    width: 100%;

    /* Responsive ratio */
    aspect-ratio: 16 / 7;

    /* Safety limits */
    min-height: 250px;
    max-height: 650px;

    overflow: hidden;
}

/* =========================
   SLIDES
========================= */

.gmf-slide {
    position: absolute;
    inset: 0;

    opacity: 0;
    visibility: hidden;

    transform: scale(1.08);

    transition:
        opacity 0.9s ease,
        transform 6s linear,
        visibility 0.9s ease;
}

.gmf-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transform: scale(1);
}

/* =========================
   DARK OVERLAY
========================= */

.gmf-slide::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.1)
    );

    z-index: 1;
}

/* =========================
   RESPONSIVE IMAGES
========================= */

.gmf-slide img {
    width: 100%;
    height: 100%;

    display: block;

    /*
     * Image will cover the complete slider
     * without distortion
     */
    object-fit: cover;

    /*
     * Image center position
     */
    object-position: center center;
}

/* =========================
   NAVIGATION BUTTONS
========================= */

.gmf-slider-btn {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: clamp(38px, 4vw, 58px);
    height: clamp(38px, 4vw, 58px);

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #fff;

    font-size: clamp(16px, 2vw, 24px);

    cursor: pointer;

    z-index: 20;

    transition: 0.35s;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.gmf-slider-btn:hover {
    background: #d4a843;

    transform: translateY(-50%) scale(1.1);
}

.gmf-slider-btn.prev {
    left: clamp(10px, 2vw, 25px);
}

.gmf-slider-btn.next {
    right: clamp(10px, 2vw, 25px);
}

/* =========================
   DOTS
========================= */

.gmf-slider-dots {
    position: absolute;

    bottom: clamp(12px, 2vw, 25px);

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: clamp(6px, 1vw, 10px);

    z-index: 20;
}

.gmf-slider-dots span {
    width: clamp(8px, 1vw, 12px);
    height: clamp(8px, 1vw, 12px);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.45);

    cursor: pointer;

    transition: 0.35s;
}

.gmf-slider-dots span:hover {
    background: #fff;
}

.gmf-slider-dots span.active {
    width: clamp(20px, 3vw, 35px);

    border-radius: 50px;

    background: #d4a843;
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .gmf-slider {
        aspect-ratio: 16 / 8;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .gmf-slider {
        aspect-ratio: 16 / 9;

        min-height: 220px;
    }

    .gmf-slide img {
        object-position: center;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .gmf-slider {
        aspect-ratio: 4 / 3;

        min-height: 200px;
    }

}
/* ===============================
   About
================================ */
.about-gmf{
    width:100%;
    display:flex;
    align-items:center;
    padding:60px 5%;
    background:#f5f5f5;
}

.about-left{
    flex:0 0 40%;
    text-align:center;
}

.about-left img{
    width:100%;
    max-width:400px;
    height:auto;
}

.about-right{
    flex:0 0 60%;
}

.about-right h2{
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
    color:#0d1b2a;
    line-height:1.2;
}

.about-right p{
    font-size:15px;
    line-height:1.9;
    color:#080808;
    margin-bottom:25px;
    text-align:justify;
}

.about-btn{
    display:inline-block;
    background:#c8952d;
    color:#fff;
    padding:14px 35px;
    border-radius:5px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    margin-top:15px;
    transition:0.3s;
}

.about-btn:hover{
    transform:translateY(-2px);
}

/* Tablet */
@media (max-width:991px){
    .about-gmf{
        gap:40px;
    }

    .about-right h2{
        font-size:36px;
    }

    .about-right p{
        font-size:14px;
    }
}

/* Mobile */
@media (max-width:768px){
    .about-gmf{
        flex-direction:column;
        text-align:center;
        padding:50px 20px;
    }

    .about-left,
    .about-right{
        flex:100%;
        width:100%;
    }

    /*.about-left img{
        max-width:320px;
    }*/

    .about-right h2{
        font-size:28px;
    }

    .about-right p{
        font-size:16px;
        text-align:left;
        text-align:justify;
    }
}
/* ===============================
   About End
================================ */

/* ===============================
   BOARD MEMBERS

================================ */

.board-members{
    background:#fff;
    padding:80px 0;
}

.container{
    max-width:1320px;
    margin:auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    font-size:30px;
    font-weight:700;
    color:#0f1f35;
    margin-bottom:60px;
    text-transform:uppercase;
}

.members-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:60px;
}

.member-card{
    text-align:center;
}

.member-img{
    border:8px solid #d4af37;
    overflow:hidden;
}

.member-img img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
}

.member-card h3{
    margin-top:25px;
    font-size:24px;
    font-weight:700;
    color:#0f1f35;
    text-transform:uppercase;
}

.member-card span{
    display:block;
    margin-top:18px;
    font-size:16px;
    font-weight:700;
    color:#0f1f35;
    text-transform:uppercase;
}

/* Tablet */
@media (max-width:991px){

    .members-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

    .section-title{
        font-size:40px;
    }
}

/* Mobile */
@media (max-width:768px){

    .members-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .section-title{
        font-size:32px;
        margin-bottom:40px;
    }

    .member-img img{
        height:350px;
    }

    .member-card h3{
        font-size:22px;
    }
}

/* ===============================
   BOARD MEMBERS
 End
================================ */
/* ===============================
   JURY MEMBERS
================================ */

.jury-members{
    background:#f5f5f5;
    padding:80px 0;
}

.container{
    max-width:1320px;
    margin:auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    font-size:30px;
    font-weight:700;
    color:#0f1f35;
    margin-bottom:60px;
    text-transform:uppercase;
}

.jury-members .members-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

.member-card{
    text-align:center;
}

.member-img{
    border:8px solid #d4af37;
    overflow:hidden;
}

.member-img img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
}

.member-card h3{
    margin-top:20px;
    font-size:20px;
    font-weight:700;
    color:#0f1f35;
    text-transform:uppercase;
    line-height:1.3;
}

.member-card span{
    display:block;
    margin-top:10px;
    font-size:14px;
    font-weight:700;
    color:#0f1f35;
    text-transform:uppercase;
}

/* Large Tablet */
@media (max-width:1024px){

    .jury-members .members-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .member-img img{
        height:280px;
    }
}

/* Mobile */
@media (max-width:768px){

    .jury-members{
        padding:60px 0;
    }

    .jury-members .members-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .section-title{
        font-size:26px;
        margin-bottom:35px;
    }

    .member-img img{
        height:auto;
        aspect-ratio:1/1;
    }

    .member-card h3{
        font-size:18px;
    }

    .member-card span{
        font-size:13px;
    }
}

/* Small Mobile */
@media (max-width:480px){

    .container{
        padding:0 15px;
    }

    .section-title{
        font-size:22px;
    }

    .member-img{
        border-width:6px;
    }

    .member-card h3{
        font-size:16px;
    }

    .member-card span{
        font-size:12px;
    }
}

/* ===============================
   JURY MEMBERS End
================================ */

/* ===============================
   INTERNATIONAL TEAM
================================ */

.international-team{
    background:#fff;
    padding:80px 0;
}

.container{
    max-width:1320px;
    margin:auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    font-size:30px;
    font-weight:700;
    color:#0f1f35;
    margin-bottom:60px;
    text-transform:uppercase;
}

.international-team .members-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.member-card{
    text-align:center;
}

.member-img{
    border:8px solid #d4af37;
    overflow:hidden;
}

.member-img img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.member-card h3{
    margin-top:25px;
    font-size:20px;
    font-weight:700;
    color:#0f1f35;
    text-transform:uppercase;
}

.member-card span{
    display:block;
    margin-top:18px;
    font-size:14px;
    font-weight:700;
    color:#0f1f35;
    text-transform:uppercase;
}

/* Tablet */
@media (max-width:991px){

    .international-team .members-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

    .section-title{
        font-size:40px;
    }
}

/* Mobile */
@media (max-width:768px){

    .international-team .members-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .section-title{
        font-size:32px;
        margin-bottom:40px;
    }

    .member-img img{
        height:350px;
    }

    .member-card h3{
        font-size:22px;
    }
}
/* ===============================
   INTERNATIONAL TEAM End
================================ */

/* ===============================
   HERO SLIDER
================================ */
.hero {
  position: relative;
  height: 85vh;
  min-height: 540px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.9s ease, transform 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(51,51,51,0.78), rgba(51,51,51,0.35));
}

.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  max-width: 650px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 16px;
  opacity: 0.95;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  width: 34px;
  background: var(--gold);
}

/* ===============================
   SECTION STYLE
================================ */
.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  font-size: 34px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--muted);
  max-width: 720px;
  margin: auto;
  font-size: 15px;
}

/* ===============================
   CARD GRID
================================ */
.grid {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: var(--card-shadow2);
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card-body p {
  color: var(--muted);
  font-size: 14px;
}

.card-icon {
  width: 54px;
  height: 54px;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 12px;
  font-size: 20px;
}

/* ===============================
   PARALLAX SECTION
================================ */
.parallax {
  background-image: url("https://picsum.photos/seed/foundationimpact/1600/900");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 90px 0;
  color: var(--white);
}

.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.72);
}

.parallax-content {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: auto;
}

.parallax-content h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.parallax-content p {
  opacity: 0.95;
  margin-bottom: 22px;
}

/* ===============================
   STATS COUNTER
================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.stat-box {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 18px;
  backdrop-filter: blur(6px);
}

.stat-box h3 {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat-box p {
  opacity: 0.9;
}

/* ===============================
   TESTIMONIAL SLIDER
================================ */
.testimonial-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial {
  min-width: 100%;
  padding: 25px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.06);
}

.testimonial p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 15px;
}

.testimonial h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.testimonial span {
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 600;
}

.slider-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.slider-buttons button {
  border: none;
  background: var(--gold);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.slider-buttons button:hover {
  background: var(--gold-dark);
}

/* ===============================
   PAGE HEADER
=================================*/

.page-header{
    background:#000;
    min-height:40vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

/* Optional golden line */
.page-header::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:#d4a843;
}

.page-header .container{
    position:relative;
    z-index:2;
}

.page-header h1{
    color:#fff;
    font-size:48px;
    font-weight:700;
    margin:15px 0;
    line-height:1.2;
}

.page-header p{
    color:rgba(255,255,255,.75);
    max-width:650px;
    font-size:17px;
    line-height:1.8;
}

/* Breadcrumb */

.breadcrumb{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.breadcrumb a{
    color:#d4a843;
    text-decoration:none;
    transition:.3s;
}

.breadcrumb a:hover{
    color:#fff;
}

.breadcrumb span{
    color:#bbb;
}

/* Responsive */

@media(max-width:768px){

.page-header{
    min-height:30vh;
    text-align:center;
}

.page-header h1{
    font-size:34px;
}

.page-header p{
    font-size:15px;
}

.breadcrumb{
    justify-content:center;
    font-size:13px;
}

}

/* ===============================
   GALLERY GRID + LIGHTBOX
================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid img {
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.86);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 900px;
  width: 100%;
  border-radius: 14px;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
}

/* ===============================
   FORMS
================================ */
.form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.18);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-full {
  grid-column: span 2;
}

.form-error {
  color: crimson;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.success-message {
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(40, 167, 69, 0.12);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #1c6b2b;
  font-weight: 600;
  display: none;
}

/* ===============================
   DONATE CARDS
================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--card-shadow2);
}

.price-card h3 {
  margin-bottom: 10px;
}

.price-card .amount {
  font-size: 36px;
  color: var(--gold-dark);
  font-weight: 800;
  margin-bottom: 8px;
}

.price-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

/*====================================
            FOOTER
====================================*/

.footer{
    background:#101010;
    color:rgba(255,255,255,.85);
    padding:70px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1.3fr;
    gap:50px;
    margin-bottom:45px;
}

/* Heading */

.footer h3{
    color:#fff;
    font-size:22px;
    font-weight:600;
    margin-bottom:20px;
    position:relative;
    padding-bottom:12px;
}

.footer h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:3px;
    background:#d4a843;
    border-radius:20px;
}

/* Paragraph */

.footer p{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,.75);
}

/* Lists */

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer ul li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:15px;
    line-height:1.7;
}

/* Links */

.footer a{
    color:rgba(255,255,255,.82);
    text-decoration:none;
    transition:.3s;
    word-break:break-word;
}

.footer a:hover{
    color:#d4a843;
    padding-left:4px;
}

/* Contact */

.footer-contact li span{
    word-break:break-word;
    overflow-wrap:anywhere;
}

.footer-contact i{
    color:#d4a843;
    min-width:18px;
    margin-top:5px;
    font-size:16px;
}

/* Social */

.social-icons{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:25px;
    flex-wrap:wrap;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    transition:.35s;
}

.social-icons a:hover{
    background:#d4a843;
    color:#111;
    transform:translateY(-4px);
}

/* Footer Bottom */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    margin:0;
    font-size:14px;
    color:rgba(255,255,255,.7);
}

/* ===============================
   Tablet & Mobile
================================ */
@media (max-width: 992px){

    .footer{
        padding:50px 0 20px;
    }

    .footer-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-about,
    .footer-links,
    .footer-contact{
        width:100%;
    }

    .footer-bottom{
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        text-align:center;
        gap:10px;
    }

    .social-icons{
        justify-content:flex-start;
        flex-wrap:wrap;
    }

}

/* ===============================
   Small Mobile
================================ */
@media (max-width:576px){

    .footer{
        padding:40px 0 20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .footer h3{
        font-size:20px;
    }

    .footer p,
    .footer li,
    .footer a{
        font-size:14px;
    }

    .social-icons a{
        width:36px;
        height:36px;
    }

}

/* ===============================
   BACK TO TOP FIX (MOBILE ISSUE)
================================ */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(212,168,67,0.35);
  display: none;
  z-index: 9999;
  transition: var(--transition);

  /* FIX */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.back-to-top i {
  margin: 0;
  padding: 0;
  display: block;
}

.back-to-top:hover {
  background: var(--gold-dark);
}

/* Mobile size fix */
@media (max-width: 520px) {
  .back-to-top {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 16px;
    bottom: 16px;
    right: 16px;
  }
}

/* ===============================
   SCROLL ANIMATION
================================ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1000px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-full {
    grid-column: span 1;
  }
}

@media (max-width: 520px) {
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid {
    grid-template-columns: 1fr;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .hero {
    min-height: 500px;
  }
}
/* ===============================
   HERO MOBILE FIX (VH ISSUE SOLVED)
================================ */
@media (max-width: 780px) {
  .hero {
    height: auto;
    min-height: 520px;
  }

  .hero-content {
    position: absolute;
    width: 100%;
    left: 0;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
  }
  /* About GMF submenu alignment fix */
.mobile-drop-menu .mobile-subdropdown {
    margin: 0;
    padding: 0;
}

.mobile-drop-menu .mobile-sub-btn {
    width: 100%;
    padding: 14px 40px !important;
    background: transparent;
    border: none;
    text-align: left;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 15px;      /* same as submenu links */
    font-weight: 600;     /* same as Board Members */
    color: var(--charcoal);

    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-drop-menu a,
.mobile-sub-btn {
    font-size: 15px !important;
    font-weight: 500 !important;
}
.mobile-drop-menu > a,
.mobile-drop-menu > .mobile-subdropdown > .mobile-sub-btn {
    padding-left: 40px !important;
    
}

.mobile-sub-menu a {
    padding-left: 55px !important;
}
}
/* ==========================
   FORCE MOBILE FOOTER
========================== */

@media screen and (max-width: 992px) {

    .footer .footer-grid{
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .footer .footer-about,
    .footer .footer-links,
    .footer .footer-contact{
        width: 100% !important;
        grid-column: auto !important;
    }

    .footer .footer-bottom{
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

}
.social-icons a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#d4a843;
    color:#fff;
    text-decoration:none;
    margin-right:8px;
    transition:.3s;
}

.social-icons a:hover{
    transform:translateY(-4px);
}

@media(max-width:768px){
    .grid.grid-2{
        grid-template-columns:1fr;
        gap:30px;
    }
}
.pdf-card{
    width:320px;
    height:420px;
    margin:40px auto;
    perspective:1200px;
}

.book-page{
    background:#fff;
    border:1px solid #ddd;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.cover{
    background:linear-gradient(135deg,#d4a843,#b98c2f);
    color:#fff;
}

.cover h1{
    font-size:34px;
    margin-bottom:10px;
}

.cover p{
    font-size:18px;
}
.flipbook-container{
    display:flex;
    justify-content:center;
    align-items:center;
}

.book-page{
    position:relative;
    background:#fff;
    overflow:hidden;
    cursor:pointer;
}

.book-page img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform .4s ease;
}

.book-page:hover img{
    transform:scale(1.02);
}

/* Common */
.page-corner{
    position:absolute;
    width:70px;
    height:70px;
    overflow:hidden;
    pointer-events:none;
}

/* ---------- TOP RIGHT ---------- */

.page-corner.top{
    top:0;
    right:0;
}

.page-corner.top::before{
    content:"";
    position:absolute;
    width:70px;
    height:70px;
    background:#fff;
    clip-path:polygon(100% 0,0 0,100% 100%);
    box-shadow:-4px 4px 12px rgba(0,0,0,.18);
    transform-origin:top right;
    animation:cornerTop 2s infinite ease-in-out;
}

.page-corner.top i{
    position:absolute;
    top:10px;
    right:10px;
    color:#d4a843;
    font-size:18px;
    animation:pointerTop 2s infinite ease-in-out;
}

/* ---------- BOTTOM RIGHT ---------- */

.page-corner.bottom{
    right:0;
    bottom:0;
}

.page-corner.bottom::before{
    content:"";
    position:absolute;
    width:70px;
    height:70px;
    background:#fff;
    clip-path:polygon(100% 100%,100% 0,0 100%);
    box-shadow:-4px -4px 12px rgba(0,0,0,.18);
    transform-origin:bottom right;
    animation:cornerBottom 2s infinite ease-in-out;
}

.page-corner.bottom i{
    position:absolute;
    right:10px;
    bottom:10px;
    color:#d4a843;
    font-size:18px;
    animation:pointerBottom 2s infinite ease-in-out;
}

/* Animations */

@keyframes cornerTop{
    0%,100%{
        transform:rotate(0deg);
    }
    50%{
        transform:rotate(15deg);
    }
}

@keyframes cornerBottom{
    0%,100%{
        transform:rotate(0deg);
    }
    50%{
        transform:rotate(-15deg);
    }
}

@keyframes pointerTop{
    0%,100%{
        transform:translate(0,0);
    }
    50%{
        transform:translate(-6px,6px);
    }
}

@keyframes pointerBottom{
    0%,100%{
        transform:translate(0,0);
    }
    50%{
        transform:translate(-6px,-6px);
    }
}
.flipbook-container{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.page-count{
    margin-top:20px;
    font-size:18px;
    font-weight:700;
    color:#d4a843;
}

.swipe-hint{
    margin-top:15px;
    color:#555;
    font-weight:600;
    animation:moveHint 1.5s infinite;
    text-align:center;
}

.swipe-hint i{
    color:#d4a843;
    margin-right:8px;
}

.mobile-controls{
    margin-top:20px;
    display:flex;
    gap:15px;
}

.mobile-controls button{
    background:#d4a843;
    color:#fff;
    border:none;
    padding:12px 22px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.mobile-controls button:hover{
    background:#111;
}

@keyframes moveHint{

    0%,100%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(10px);
    }

}

@media(min-width:769px){

    .mobile-controls{
        display:none;
    }

}

@media(max-width:768px){

    .mobile-controls{
        width:100%;
        justify-content:center;
    }

    .mobile-controls button{
        flex:1;
        max-width:160px;
    }

    .page-count{
        font-size:16px;
    }

}
.news-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px;
}

.news-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
}

.news-card img{
    width:100%;
    display:block;
    object-fit:cover;
    border-radius:12px;
    transition:.3s;
}

.news-card:hover{
    transform:translateY(-8px);
}

.news-card:hover img{
    transform:scale(1.03);
}

.news-card h3{
    padding:18px;
    margin:0;
    text-align:center;
    font-size:16px;
    line-height:1.5;
    font-weight:500;
}   

.news-card h3 a{
    color:#111;
    text-decoration:none;
}

.news-card h3 a:hover{
    color:#d4a843;
}

@media(max-width:992px){
    .news-card h3{
        font-size:20px;
    }
}

@media(max-width:768px){
    .news-grid{
        grid-template-columns:1fr;
    }

    .news-card h3{
        font-size:18px;
        padding:15px;
    }
}

@media(max-width:480px){
    .news-grid{
        gap:20px;
    }

    .news-card{
        border-radius:10px;
    }

    .news-card h3{
        font-size:16px;
        line-height:1.4;
    }
}
/*==========================
        GALLERY
==========================*/

.gallery-section{
    padding:80px 0;
}

.gallery-block{
    margin-bottom:80px;
}

.gallery-title{
    text-align:center;
    font-size:35px;
    font-weight:600;
    margin-bottom:40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.gallery-card{
    cursor:pointer;
    overflow:hidden;
    border-radius:8px;
}

.gallery-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.3s;
    display:block;
}

.gallery-card:hover img{
    transform:scale(1.05);
}

@media(max-width:992px){
    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){
    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-title{
        font-size:28px;
    }
}
.full-image-wrapper{
    width:100%;
    margin-bottom:40px;
}

.full-width-image{
    width:100%;
    height:auto;
    object-fit:cover;
    border-radius:10px;
    display:block;
}

@media(max-width:768px){
    .full-width-image{
        height:250px;
    }
}
.press-release-section {
  padding: 60px 0;
}

.pdf-wrapper {
  display: flex;
  gap: 30px;
}

.pdf-box {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.pdf-box iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.pdf-content {
  padding: 20px;
}

.pdf-content h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.pdf-content p {
  color: #555;
  line-height: 1.7;
  font-size: 16px;
}

@media (max-width: 768px) {
  .pdf-wrapper {
    flex-direction: column;
  }

  .pdf-box iframe {
    height: 450px;
  }
}
.press-details{
    padding:80px 0;
}
.press-details p{
    font-size:15px;
    line-height:1.9;
    margin-bottom:25px;
    color:#333;
    text-align:justify;
}

.press-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    margin-bottom:60px;
    text-transform:uppercase;
}

.press-detail-wrapper{
    display:flex;
    gap:50px;
    align-items:flex-start;
}

.press-text{
    flex:1;
}

.press-text h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:30px;
}

.press-text h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
}

.press-text p{
    font-size:15px;
    line-height:1.9;
    margin-bottom:25px;
    color:#333;
    text-align:justify;
}

.press-image{
    flex:1;
}

.press-image img{
    width:100%;
    display:block;
    border-radius:8px;
}

@media (max-width:991px){

.press-detail-wrapper{
    flex-direction:column;
}

.press-title{
    font-size:30px;
}

.press-text h2{
    font-size:26px;
}

.press-text h3{
    font-size:20px;
}

.press-text p{
    font-size:15px;
}

}
.press-layout{
    padding:60px 0;
}

.press-layout-wrapper{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

.press-img-box,
.press-pdf-box{
    flex:1;
}

.press-img-box img{
    width:100%;
    object-fit:cover;
    border-radius:8px;
}

.press-pdf-box iframe{
    width:100%;
    height:820px;
    border:none;
    border-radius:8px;
}

@media(max-width:991px){

.press-layout-wrapper{
    flex-direction:column;
}

.press-img-box img,
.press-pdf-box iframe{
    height:500px;
}

}
.contact-map {
  width: 100%;
  padding: 60px 20px;
  background: #fff;
  box-sizing: border-box;
}

.map-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

@media (max-width: 992px) {
  .map-wrapper iframe {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-map {
    padding: 30px 15px;
  }

  .map-wrapper {
    border-radius: 12px;
  }

  .map-wrapper iframe {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .map-wrapper iframe {
    height: 280px;
  }
}
