/* ── GLOBAL STYLE INITIALIZATION & PALETTE ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-primary-gold: #F8C900;
  --brand-dark-gold: #CCA90F;
  --brand-pure-black: #000000;
  --brand-matte-dark: #222222;
  --text-muted: #666666;
  --surface-light: #FDFBFB;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: var(--brand-matte-dark);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── REUSABLE TYPOGRAPHY & UI COMPONENTS ── */
.section-tagline {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand-dark-gold);
  margin-bottom: 8px;
}

h2 {
  font-size: 2.5rem;
  color: var(--brand-pure-black);
  font-weight: 800;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-primary {
  background-color: var(--brand-primary-gold);
  color: var(--brand-pure-black);
  border: 2px solid var(--brand-primary-gold);
}

.btn-primary:hover {
  background-color: var(--brand-pure-black);
  color: #ffffff;
  border-color: var(--brand-pure-black);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: var(--brand-pure-black);
}

/* ── STICKY NAVIGATION BAR ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}

.logo img {
  height: 48px;
  display: block;
  object-fit: contain;
}

/* Default Desktop Menu Setup */
.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--brand-matte-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--brand-dark-gold);
}

/* Hidden by default on desktop viewports */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2000;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: var(--brand-pure-black);
  border-radius: 2px;
  transition: var(--transition-smooth);
  transform-origin: left center;
}

/* ── HERO CROSSFADE SLIDER ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--brand-pure-black);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-content {
  color: #ffffff;
  max-width: 800px;
  transform: translateY(40px);
  transition: transform 1.2s ease-in-out;
}

.slide.active .hero-content {
  transform: translateY(0);
}

.hero-tag {
  display: inline-block;
  color: var(--brand-primary-gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  font-size: 1rem;
}

.hero-content h1 {
  font-size: 3.8rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 35px;
  color: #e0e0e0;
}

.hero-btns {
  display: flex;
  gap: 15px;
}

.slider-indicators {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 35px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background-color: var(--brand-primary-gold);
}

/* ── ABOUT SECTION ── */
/* ── NEW BALANCED ABOUT SECTION ── */
.about-section {
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
}

.about-story-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

/* Creative Collage Framework */
.about-image-collage {
  position: relative;
  width: 100%;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background geometric accent for a design studio vibe */
.collage-bg-shape {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 75%;
  height: 80%;
  background-color: var(--brand-primary-gold);
  opacity: 0.15;
  border-radius: 8px;
  transform: rotate(-3deg);
  z-index: 1;
}

.img-frame {
  position: absolute;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.frame-main {
  width: 75%;
  height: 320px;
  top: 40px;
  left: 40px;
  z-index: 3;
  border: 4px solid #ffffff;
}

.frame-sub {
  width: 50%;
  height: 220px;
  bottom: 30px;
  right: 10px;
  z-index: 4;
  border: 4px solid #ffffff;
}

.about-image-collage:hover .frame-main {
  transform: scale(1.02) translateY(-5px);
}

.about-image-collage:hover .frame-sub {
  transform: scale(1.04) translateY(5px);
}

/* Mission & Vision Row Layout Transformation */
.about-mv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background: var(--surface-light);
  padding: 40px;
  border-radius: 6px;
  border-bottom: 3px solid #eee;
  transition: var(--transition-smooth);
}

.mv-card:hover {
  border-bottom-color: var(--brand-primary-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.mv-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--brand-pure-black);
}

/* ── RESPONSIVE RESPONSES (Add to your max-width: 992px Media Query) ── */
@media (max-width: 992px) {
  .about-story-row {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }
  
  .about-image-collage {
    height: 380px;
    margin-top: 20px;
  }
  
  .frame-main {
    height: 260px;
    top: 20px;
    left: 20px;
  }
  
  .frame-sub {
    height: 180px;
    bottom: 20px;
    right: 0;
  }

  .about-mv-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
/* ── CREATIVE BACKGROUND SERVICES SECTION ── */
.services-section {
  padding: 120px 0;
  text-align: center;
  background-image: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%), 
  url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"%3E%3Cpath d="M9 24c0 3.314-2.686 6-6 6s-6-2.686-6-6 2.686-6 6-6 6 2.686 6 6zm30 10c0 2.21-1.79 4-4 4s-4-1.79-4-4 1.79-4 4-4 4 1.79 4 4zM12 48c0 1.657-1.343 3-3 3s-3-1.343-3-3 1.343-3 3-3 3 1.343 3 3zm36-36c0 2.76-2.24 5-5 5s-5-2.24-5-5 2.24-5 5-5 5 2.24 5 5z" fill="%23CCA90F" fill-opacity="0.04"/%3E%3C/svg%3E');
  background-blend-mode: multiply;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: var(--transition-smooth);
}

.card-img-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card-content {
  padding: 30px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--brand-pure-black);
}

.program-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.program-tags li {
  background-color: #f0f0f0;
  color: var(--brand-matte-dark);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.service-card:hover .card-img-wrapper img {
  transform: scale(1.06);
}

/* ── HOVER FILTERABLE GALLERY SECTION ── */
.gallery-section {
  padding: 120px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.filter-btn {
  background: none;
  border: 2px solid #eee;
  padding: 8px 24px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--brand-pure-black);
  color: #ffffff;
  border-color: var(--brand-pure-black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-overlay span {
  color: #ffffff;
  border: 2px solid var(--brand-primary-gold);
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ── LIGHTBOX MODAL DIALOGUE ── */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.92);
}

.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  max-height: 70vh;
  object-fit: contain;
  border: 3px solid var(--brand-primary-gold);
}

#lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 800px;
  text-align: center;
  color: #ccc;
  padding: 15px 0;
  font-size: 1.1rem;
}

.lightbox-close {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--brand-primary-gold);
}


/* ── 12-COLUMN HORIZONTAL SUPPORTERS BAR ── */
.supporters-section {
  width: 100%;
  padding: 80px 0;
  background-color: var(--surface-light);
  border-top: 1px solid #f0f0f0;
  border-bottom: 3px solid #e5e5e5;
  text-align: center;
}

.supporters-section .container-fluid {
  width: 100%;
  padding: 0 4%;
}

.supporters-section .section-header {
  margin-bottom: 50px;
}

/* Native CSS 12-Column Grid system layout */
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  align-items: center;
}

/* Structural wrapper for each logo */
.supporter-logo {
  grid-column: span 2;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Combined & Fixed: Logos are now fully visible in full color */
.supporter-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
}

/* ── RESPONSIVE RESPONSES (Add inside your @media blocks) ── */
@media (max-width: 992px) {
  /* Shifts to 3 items per horizontal row on tablets */
  .grid-12 {
    grid-template-columns: repeat(6, 1fr);
  }
  .supporter-logo {
    grid-column: span 2;
    height: 60px;
  }
}

@media (max-width: 480px) {
  /* Shifts to 2 items per horizontal row on small phones */
  .grid-12 {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  .supporter-logo {
    grid-column: span 2;
    height: 50px;
  }
}


/* ── FOOTER / CONTACT LAYOUT ── */
.footer-contact {
  background-color: var(--brand-matte-dark);
  color: #ffffff;
  padding: 80px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1.2fr;
  gap: 60px;
  padding-bottom: 60px;
}

.footer-info h3, .footer-links h4, .footer-form h4 {
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-info h3 { color: var(--brand-primary-gold); }
.footer-info p { color: #bbb; margin-bottom: 15px; font-size: 0.95rem; }
.loc-pin { color: var(--brand-primary-gold) !important; font-weight: 500; }

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #bbb; text-decoration: none; transition: var(--transition-smooth); }
.footer-links a:hover { color: var(--brand-primary-gold); padding-left: 4px; }

.footer-form input, .footer-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  background: #333;
  border: 1px solid #444;
  color: #fff;
  font-family: inherit;
  border-radius: 4px;
}

.footer-form input:focus, .footer-form textarea:focus {
  outline: none;
  border-color: var(--brand-primary-gold);
}

.footer-bottom {
  background-color: var(--brand-pure-black);
  text-align: center;
  padding: 25px 0;
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #111;
}

/* ── FOOTER BOTTOM & CREDITS ── */
.footer-bottom {
  background-color: var(--brand-pure-black);
  padding: 25px 0;
  font-size: 0.85rem;
  color: #777;
  border-top: 1px solid #111;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.developer-credit a {
  color: var(--brand-primary-gold);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  display: inline-block;
}

.developer-credit a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

/* Append this small rule inside your existing @media (max-width: 992px) block */
@media (max-width: 992px) {
  /* ... your existing rules ... */
  
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
.email-info {
  margin-top: 15px;
  font-size: 0.95rem;
}

.email-info i {
  color: var(--brand-primary-gold);
  margin-right: 8px;
}

.email-info a {
  color: #bbb;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.email-info a:hover {
  color: var(--brand-primary-gold);
}
/* ── RESPONSIVE TABLET & MOBILE VIEWPORTS ── */
@media (max-width: 992px) {
  h2 { 
    font-size: 2rem; 
  }

  .mobile-menu-toggle {
    display: flex; /* Show hamburger button */
  }

  /* Morphing Hamburger Animation Code */
  .mobile-menu-toggle.open .bar:nth-child(1) {
    transform: rotate(45deg);
    background-color: #ffffff; /* Contrast switch against dark overlay background */
  }

  .mobile-menu-toggle.open .bar:nth-child(2) {
    width: 0%;
    opacity: 0;
  }

  .mobile-menu-toggle.open .bar:nth-child(3) {
    transform: rotate(-45deg);
    background-color: #ffffff;
  }

  /* Transform navigation row into an overlay slide-in drawer */
  .nav-container {
    position: fixed;
    top: 0;
    right: -100%; /* Completely off-screen initially */
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--brand-matte-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
    transition: var(--transition-smooth);
    z-index: 1500;
  }

  /* Class added via JS to slide navigation into view */
  .nav-container.open {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .nav-links a {
    color: #ffffff;
    font-size: 1.25rem;
  }

  .nav-links a:hover, .nav-links a.active {
    color: var(--brand-primary-gold);
  }

  .nav-cta {
    display: block;
    width: 100%;
    text-align: center;
  }

  .nav-cta .btn {
    width: 100%;
  }

  /* Typography and structural grid adjustments */
  .hero-content h1 {
    font-size: 2.2rem !important;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem !important;
  }

  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }

  .about-grid, .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }

  .gallery-filters {
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-btn {
    padding: 6px 16px;
    font-size: 0.85rem;
  }
}

/* Tiny Mobile Screens scaling stabilization */
@media (max-width: 480px) {
  h2 { 
    font-size: 1.8rem; 
  }
  
  .services-grid, .gallery-grid {
    grid-template-columns: 1fr !important;
  }
  
  .lightbox-content {
    width: 95%;
  }
}

/* Bamking Details*/
.banking-details {
  margin-top: 25px;
  padding-top: 15px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}

.banking-details h5 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #ffffff;
}

.banking-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}