:root {
  --footer-bg: #18327e;
  --footer-text: #adb5bd;
  --footer-heading: #ffffff;
  --accent-cyan-1: #0490ac;
  --accent-cyan: #00b4d8;
  --input-bg: #1a2e32;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --card-text: #4a5568;
  --card-date: #a0aec0;
  --event-orange: #e1a900;
  --event-pink: #ff6b6b;
  --primary-btn-color: #e1a900;
  --color-white: #ffffff;
  --primary-yellow: #e1a900;
  --primary-blue: #0047ab;
  --primary-red: #ff4d4d;
  --primary-green: #10b981;
  --text-dark: #1a1a1a;
  --text-muted: #666;
  --gylf-blue: #004291;
  --gylf-dark-blue: #002d62;
  --gylf-gold: #e1a900;
  --gylf-light-bg: #f8f9fa;
  --gylf-text: #333333;
  --gylf-primary: #0056d2;
  --gylf-orange: #f2a900;
  --gylf-bg-light: #f4f7fa;
  --gylf-card-bg: #f8fbff;
  --gylf-text-dark: #111827;
  --gylf-text-muted: #6b7280;
  --brand-blue: #1a2a6c; /* Deep GYLF Blue */
  --brand-gold: #eeb01e; /* GYLF Gold */
  --brand-gold-hover: #d49a1a;
  --light-bg: #f8f9fa;
}

body {
  font-family: "Lato", sans-serif;
  color: #212529;
  background-color: #f2f2f2;
}

/* Helper Classes */
.category-badge {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  display: inline-block;
  margin-bottom: 10px;
}

.img-placeholder {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-travel {
  background-color: #20c997;
}

.bg-fashion {
  background-color: #e83e8c;
}

.bg-lifestyle {
  background-color: #fd7e14;
}

.bg-health {
  background-color: #28a745;
}

/* Utilities Start */
.title {
  font-weight: 700;
  font-size: 24px;
}

.hide {
  display: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "lato", serif;
}

h2 {
  font-weight: 800;
  color: #fff;
  font-size: 2.5rem;
}

.smallCase {
  text-transform: uppercase;
  font-size: 1.5rem;
  display: block;
}

.bgColor--white {
  background-color: var(--color-white);
}

.text-italic {
  font-style: italic;
}

.padding-20 {
  padding: 0.7rem 2rem;
}

.btn {
  padding: 12px 25px;
}

.btn-primary {
  background-color: var(--event-orange);
  border: none;
}

.btn-outline-primary {
  padding: 5px 25px;
}
.btn-primary-1 {
  background-color: var(--accent-cyan);
  border: none;
}

.btn-primary:hover {
  background-color: #d18e00;
}

.btn-primary-1:hover {
  background-color: var(--accent-cyan-1);
}

.btn-social {
  background-color: var(--accent-cyan);
}

/* End Utilities */

/* --- NEW TICKER STYLES --- */
.impact-ticker {
  background: #f8f9fa;
  /* border-bottom: 1px solid #e2e8f0; */
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}

.ticker-label {
  background: var(--brand-blue);
  color: white;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 0.85rem;
  text-transform: uppercase;
  white-space: nowrap;
  position: absolute;
  left: 0;
  z-index: 2;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  padding-left: 150px;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  margin-right: 50px;
  font-size: 0.9rem;
  color: var(--brand-blue);
}

.ticker-item i {
  color: var(--brand-gold);
  margin-right: 8px;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.ticker-content:hover {
  animation-play-state: paused;
}

/* Start Video settings */
.video-wrapper {
  position: relative;
  flex-basis: 50%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .video-wrapper {
    flex-basis: unset;
  }
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.video-wrapper iframe {
  aspect-ratio: 16 / 9;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* End video settings */

/* Search Styles */
.mobile-search-container {
  position: relative;
  margin-bottom: 25px;
}

.mobile-search-container input {
  background-color: var(--gylf-bg-light);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 20px 12px 45px;
  width: 100%;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.mobile-search-container input:focus {
  background-color: #fff;
  border-color: var(--gylf-primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 86, 210, 0.1);
}

.mobile-search-container .lucide-search {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gylf-text-muted);
  width: 18px;
  height: 18px;
}

/* Main Menu*/
.has__menu-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff !important;
}

.has__menu-main a {
  font-weight: 600;
}

/* Top Menu */
.has__menu-top {
  background-color: #18327d !important;
}

.top-search .form-control {
  padding: 0.375rem 0.75rem;
  background-color: aliceblue;
  transition: padding 1s;
}

.top-search .form-control:hover {
  padding: 0.375rem 5rem;
}

.has__menu-top .nav-link {
  color: #fff !important;
  font-weight: 500;
}

.has__menu-top .nav-link:hover {
  color: var(--gylf-gold) !important;
}

.has__menu-top .nav .nav-link {
  margin-left: 20px !important;
}

.has__menu-main .nav {
  margin-right: 20px;
}

.has__menu-main .nav-link,
.btn {
  color: #000 !important;
  font-weight: 700;
  font-size: 14px !important;
}

.has__menu-main .nav-link:hover {
  color: var(--gylf-gold);
}

/* Mobile Adjustments */
.brand-logo-mobile {
  color: var(--gylf-primary);
  font-weight: 800;
  font-size: 1.4rem;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}

.logobox {
  width: 250px;
}

/* Extra small phones (≤320px) */
@media (max-width: 320px) {
  .logobox {
    width: 222px;
  }
}

@media (min-width: 401px) {
  .logobox {
    width: 280px;
  }
}

.offcanvas {
  border: none;
  width: 100% !important;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gylf-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
}

.discover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 30px;
}

.card-item {
  background-color: var(--gylf-card-bg);
  border-radius: 16px;
  padding: 18px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #edf2f7;
}

.card-item i {
  font-size: 1.3rem;
  color: var(--gylf-primary);
  margin-bottom: 8px;
  display: block;
}

.card-item .title {
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0;
}

.menu-link-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  text-decoration: none;
  color: var(--gylf-text-dark);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  border-bottom: 1px solid #f9fafb;
  font-family: "Inter", sans-serif;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  text-align: left;
}

.menu-link-mobile[aria-expanded="true"] i {
  transform: rotate(90deg);
}

.menu-link-mobile i {
  transition: transform 0.2s ease;
}

/* Submenu Styling */
.mobile-submenu {
  background-color: var(--gylf-bg-light);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
}

.submenu-link {
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  color: var(--gylf-text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.submenu-link:last-child {
  border-bottom: none;
}

/* Bottom Nav */
.bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  height: 65px;
  border-radius: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1100;
}

.give-pill {
  background-color: var(--gylf-primary);
  color: white !important;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
}
.offcanvas-body .mobile-nav-links {
  margin-bottom: 6rem !important;
}

/* Hero */
.hero {
  height: 500px;
  position: relative;
  padding-top: 50px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* adjust darkness */
  z-index: 20;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.has__hero-padding-0 {
  padding: 0 !important;
}

.hero .form-container {
  width: 600px;
  position: relative;
  z-index: 200;
  margin-right: auto;
}

.hero .hero-title {
  font-weight: 800;
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
}
.hero .hero-subtitle {
  font-size: 1.25rem;
  color: #fff;
}

@media (max-width: 768px) {
  .hero .form-container {
    width: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero .hero-title {
    font-size: 2.3rem;
    text-align: center;
  }

  .hero .hero-subtitle {
    text-align: center;
  }
}

.register-form {
  background-color: rgba(24, 50, 125, 0.7);
  padding: 20px;
  border-radius: 10px;
}

.register-form hr {
  color: #f1f1f1;
}

.register-form p {
  color: #fff;
  font-size: 1em;
  font-weight: 400;
}

.register-form input,
select {
  margin-bottom: 15px;
  border-radius: 0 !important;
  padding: 5px;
}

.register-form input::placeholder {
  font-size: 1em;
}

.register-form input:focus,
select:focus {
  border-color: #18327d !important;
  box-shadow: 0 0 0 0.25rem rgba(105, 27, 119, 0.25) !important;
}

.register-form a {
  color: #ff9306;
  text-decoration: none;
}
/* Container styling */
.swiper-container-wrapper {
  flex: 1;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  bottom: 0px;
}

@media (max-width: 768px) {
  .swiper-container-wrapper {
    overflow: hidden;
  }
}

.slide-bg-flare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(30px) saturate(2); /* Saturation makes the flare pop */
  opacity: 0.6;
  transform: scale(1.1); /* Prevents edge flickering during swipe */
  z-index: 1;
}
.slide-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  /* Soft outer glow to blend into the flare */
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.8)); 
}

@media (max-width: 768px) {
  .mainSwiper .swiper-slide {
    aspect-ratio: 16 / 9;
    height: unset !important;
    /* Slightly taller for mobile visibility */
  }
}
/* Mobile */
/* @media (max-width: 768px) {
  .mainSwiper {
    aspect-ratio: 4 / 3;
    height: auto;
  }
} */

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .mainSwiper .swiper-slide {
    aspect-ratio: 16 / 9;
  }
}

/* Desktop / Large Screens */
@media (min-width: 1025px) {
  .mainSwiper .swiper-slide {
    aspect-ratio: 21 / 9;
    /* height: 22rem; */
  }
}

/* Support for your custom rounded class */
.rounded-xl {
  border-radius: 1.5rem !important;
}

/* Slide Container - Fixed height to ensure uniformity */
.mainSwiper .swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #333;
  aspect-ratio: 16 / 9;
  height: 310px;
  background: #eee;
}

.impactSide .swiper-slide {
  height: auto;
}

.mainSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  z-index: 1;
  /* Changed from absolute/object-fit to allow natural flow */
  position: relative;
}

/* Hover Overlay (Shadow from bottom) */
.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  z-index: 2;
}

/* Hover Button (Slide from left) */
.hover-btn {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hover States */
.mainSwiper .swiper-slide:hover .slide-overlay {
  opacity: 1;
}

.mainSwiper .swiper-slide:hover .hover-btn {
  transform: translateX(0);
  opacity: 1;
}

.mainSwiper .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Pagination bullets - Your Custom CSS */
.main-swiper-pagination {
  position: relative;
  bottom: 0px !important;
  margin-top: 20px;
  text-align: center;
}

.main-swiper-pagination .swiper-pagination-bullet {
  background: #ff5722;
  opacity: 0.7;
  width: 12px;
  height: 12px;
  margin: 0 5px !important;
}

.main-swiper-pagination .swiper-pagination-bullet-active {
  background: #e91e63;
  opacity: 1;
}

/* Navigation arrows - Your Custom CSS */
.main-swiper-button-next,
.main-swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e0e0e0, #ffffff);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Custom icon sizing since we aren't using default swiper fonts */
.main-swiper-button-next::after,
.main-swiper-button-prev::after {
  font-family: swiper-icons;
  font-size: 15px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: normal;
  line-height: 1;
  color: #000;
}

.main-swiper-button-next::after {
  content: "next";
}
.main-swiper-button-prev::after {
  content: "prev";
}

.main-swiper-button-prev {
  left: 0px;
}
.main-swiper-button-next {
  right: 0px;
}

.main-swiper-button-next:hover,
.main-swiper-button-prev:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  background: linear-gradient(135deg, #dad9d9, #dad9d9);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .main-swiper-button-next,
  .main-swiper-button-prev {
    display: none;
  }
}

.about {
  background-image: url("/assets/images/bg.png");
  background-blend-mode: soft-light;
  /* opacity: 0.5; */
  background-color: #18327d;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.translateY-50 {
  transform: translateY(50px);
}

.blog h2 {
  font-weight: 800;
  color: #18327d;
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .blog .ps-10 {
    padding: 0 3rem;
  }
  .blog .mission-title {
    text-align: center;
  }
  .blog .text-muted {
    text-align: center;
  }
}

.about p {
  color: #fff;
  font-size: 1rem;
}

/* Container and slides */
.newsSwiper {
  width: 100%;
  padding: 40px 0;
}

.newsSwiper .swiper-slide {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Pagination bullets */
.news-swiper-pagination {
  bottom: 10px;
}

.news-swiper-pagination .swiper-pagination-bullet {
  background: #888;
  opacity: 0.6;
}

.news-swiper-pagination .swiper-pagination-bullet-active {
  background: #444;
  opacity: 1;
}

/* NewsSwiper navigation arrows */
.news-swiper-button-next,
.news-swiper-button-prev {
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: #333;
  font-size: 18px;
  /* arrow icon size */
  z-index: 20;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-swiper-button-next {
  right: -30px;
}

.news-swiper-button-prev {
  left: 30px;
}

/* Hover effect */
.news-swiper-button-next:hover,
.news-swiper-button-prev:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.news-swiper-button-next:after,
.news-swiper-button-prev:after {
  font-size: 10px;
}

/* Positioning */

.news-swiper-button-next {
  right: 8px;
  /* adjust distance from right */
}

/* Optional: smaller on mobile */
@media (max-width: 768px) {
  .news-swiper-button-next,
  .news-swiper-button-prev {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

.news .card {
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;

  display: grid;
  grid-template-rows: 230px 270px;
}

.news .card:hover {
  transform: translateY(-5px);
}

.featured-image {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.news__card-body {
  padding: 2rem;
  display: grid;
  grid-template-rows: 70px 100px 40px;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.75rem;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-title a {
  text-decoration: none;
}

.card-text {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.6rem;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-white {
  color: #fff !important;
}

.ps-10 {
  padding-left: 8rem;
}

.section-padding {
  padding: 80px 0;
}

/* EVENT SECTION START*/

.event {
  background:
    radial-gradient(
      circle at 10% 50%,
      rgb(255 122 0 / 21%) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 90% 80%, rgb(0 180 216 / 28%) 0%, transparent 50%);
}
@media (max-width: 768px) {
  .event .mission-title,
  .event .section-subtitle {
    text-align: center;
  }
}

.event-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
  height: 100%;
  background: #fff;
}

.event-card:hover {
  transform: translateY(-5px);
}

.card-img-wrapper {
  position: relative;
  height: 220px;
}

.card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--accent-cyan);
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* events-Page*/
.events-grid-section {
  padding: 60px 0 100px;
  background-color: #fff;
}

.event-grid-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

.event-grid-card:hover {
  transform: translateY(-10px);
}

.grid-image-wrapper {
  position: relative;
  height: 200px;
  background-color: #eee;
}

.grid-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-date-tag {
  position: absolute;
  bottom: -15px;
  right: 20px;
  background: var(--gylf-gold);
  color: rgb(0, 0, 0);
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* SVG Placeholders */
.img-placeholder {
  background-color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: opacity 0.3s ease;
}

.img-placeholder.loaded {
  opacity: 1;
}

.lazy-bg {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lazy-bg.loaded {
  opacity: 1;
}

/* Event Single Page */

/* Event Hero */
.event-single-hero {
  background:
    linear-gradient(rgba(0, 66, 145, 0.85), rgba(0, 66, 145, 0.85)),
    url("https://images.unsplash.com/photo-1540575861501-7cf05a4b125a?auto=format&fit=crop&q=80&w=2000")
      center/cover;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item a {
  color: var(--gylf-gold);
  text-decoration: none;
  font-weight: 600;
}

.event-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Countdown Timer */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.countdown-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 15px;
  border-radius: 10px;
  min-width: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-box span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gylf-gold);
}

.countdown-box label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Content Layout */
.event-content-section {
  padding: 80px 0;
  background-color: #fff;
}

.event-content-section .programBanner {
  width: 100%;
  height: 300px;

  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 15px;
  background-color: #ddd;
}

.event-info-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.info-icon {
  background: var(--gylf-light-bg);
  color: var(--gylf-blue);
  padding: 12px;
  border-radius: 10px;
}

.info-text h6 {
  margin-bottom: 2px;
  font-weight: 700;
  color: var(--gylf-dark-blue);
}

.info-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #666;
}

/* Registration Form */
.registration-form {
  background: var(--gylf-light-bg);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #eee;
}

.form-label {
  font-weight: 600;
  color: var(--gylf-blue);
}

.form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: var(--gylf-blue);
  box-shadow: none;
}

@media (max-width: 768px) {
  .event-title {
    font-size: 2.2rem;
  }

  .countdown-container {
    gap: 10px;
  }

  .countdown-box {
    min-width: 70px;
    padding: 10px;
  }

  .countdown-box span {
    font-size: 1.4rem;
  }
}

/* Interaction Bar */
.interaction-bar {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  margin: 40px 0;
  display: flex;
  gap: 20px;
}

.btn-action {
  border: none;
  background: none;
  color: #636e72;
  transition: 0.2s;
}

.btn-action:hover {
  color: var(--primary-blue);
}

/* Comments Section */
.comments-section {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.comment-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #e9ecef;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
}

/* Salvation Section*/
.born-again-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/assets/images/salvation.png");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 60px 0;
}

.born-again-content {
  max-width: 800px;
}

.section-tag {
  font-family: "Playfair Display", serif;
  color: var(--primary-yellow);
  font-style: italic;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.main-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.prayer-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-left: 4px solid var(--primary-yellow);
  padding: 2.5rem;
  border-radius: 0 12px 12px 0;
}

.instruction-text {
  color: var(--primary-yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: block;
}

.prayer-text {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 400;
  font-style: italic;
}

.cta-button {
  background-color: var(--primary-yellow);
  color: var(--text-dark);
  font-weight: 700;
  padding: 12px 35px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  margin-top: 2rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  border: 2px solid var(--primary-yellow);
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary-yellow);
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }

  .prayer-text {
    font-size: 1rem;
  }

  .born-again-section {
    min-height: 100vh;
  }
}

/* Pagination Indicators */
.pagination-dots {
  display: flex;
  gap: 8px;
  margin-top: 2rem;
}

.dot {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background-color: #334155;
}

.dot.active {
  background-color: #6366f1;
}

/* Right Side: Form */
.auth-form-container {
  width: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.auth-form-box {
  width: 100%;
  max-width: 420px;
}

.auth-form-box h1 {
  font-weight: 700;
  font-size: 1.75rem;
  color: #1e293b;
  margin-bottom: 2rem;
  text-align: center;
}

/* --- Mission Section Styling --- */
.mission-section {
  padding: 100px 0;
  background-color: #fff;
}

.shaping-futures {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: #ccc;
  letter-spacing: 4px;
  font-size: 1.2rem;
  margin-bottom: 0;
}

.mission-title {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .mission-title {
    font-size: 2.8rem;
  }

  .mission-details p {
    justify-content: center;
  }
}

.mission-tag {
  font-family: "Playfair Display", serif;
  color: var(--primary-blue);
  /* font-style: italic; */
  font-size: 1.3rem;
  margin-left: 10px;
}

.image-grid {
  position: relative;
  padding-bottom: 50px;
}

.main-img-wrapper {
  position: relative;
  width: 80%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.sub-img-wrapper {
  position: absolute;
  top: 10%;
  right: 0;
  width: 50%;
  border-radius: 15px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-hexagon {
  position: absolute;
  bottom: 0;
  right: 15%;
  background-color: #fff;
  border: 4px solid #f97316;
  padding: 20px;
  text-align: center;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  min-width: 140px;
}

.stat-number {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
}

.mission-box {
  background-color: #f0f5f7;
  border-left: 5px solid var(--accent-cyan-1);
  padding: 30px;
  border-radius: 0 20px 20px 0;
  margin-bottom: 2rem;
  position: relative;
}

.mission-icon {
  position: absolute;
  top: -20px;
  left: 20px;
  background: var(--accent-cyan-1);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-join {
  background-color: var(--primary-red);
  color: white;
  border-radius: 8px;
  padding: 12px 25px;
  font-weight: 600;
  margin-right: 15px;
}

.btn-donate {
  background-color: #fff;
  color: var(--primary-red);
  border: 1px solid #ddd;
  border-radius: 8px;
  font-weight: 600;
}

/* Input Styling */
.form-control {
  border: 1px solid #e2e8f0;
  font-size: 0.95rem;
}

.form-control:focus {
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  border-color: #6366f1;
}

.input-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  z-index: 10;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  cursor: pointer;
  z-index: 10;
}

/* Social Sign Up */
.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: all 0.2s;
}

.btn-social:hover {
  background-color: #f8fafc;
  border-color: #cbd5e1;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #94a3b8;
  font-size: 0.85rem;
  margin: 1.5rem 0;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.divider:not(:empty)::before {
  margin-right: 1rem;
}

.divider:not(:empty)::after {
  margin-left: 1rem;
}

.btn-register {
  background-color: #6366f1;
  border: none;
  padding: 0.75rem;
  border-radius: 10px;
  font-weight: 600;
  width: 100%;
  margin-top: 1rem;
  transition: background 0.2s;
}

.btn-register:hover {
  background-color: #4f46e5;
}

.form-check-label {
  color: #64748b;
  font-size: 0.875rem;
}

.form-check-label a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 500;
}

.signin-link {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #64748b;
}

.signin-link a {
  color: #6366f1;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 992px) {
  .auth-visual {
    display: none;
  }

  .auth-form-container {
    width: 100%;
  }
}

/* News Page */

/* Spotlight Grid (Formerly Hero) */
.spotlight-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 500px;
  margin-bottom: 30px;
}

.spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.spotlight-card:hover .spotlight-img {
  transform: scale(1.05);
}

.spotlight-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spotlight-overlay h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

/* Post Cards */
.post-card-small {
  margin-bottom: 30px;
}

.post-card-small a,
.trending-body a,
.most-viewed a {
  text-decoration: none;
  color: #000000;
}

.post-card-small a:hover,
.trending-body a:hover .most-viewed a:hover {
  color: #2c2b2b;
}

.post-card-small .img-wrapper {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  aspect-ratio: 4/3;
}

.post-card-small .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-card-small .img-wrapper:hover img {
  transform: scale(1.05);
}

.post-card-small h5,
.trending-body h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: #000000;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Trending Story Cards */
.trending-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.trending-card:hover {
  transform: translateY(-5px);
}

.trending-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.trending-body {
  padding: 20px;
}

/* Sidebar Widgets */
.widget-title {
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.social-box {
  display: flex;
  align-items: center;
  padding: 12px;
  color: white;
  border-radius: 6px;
  margin-bottom: 10px;
  text-decoration: none;
  font-size: 0.85rem;
}

.category-pill {
  position: relative;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  margin-bottom: 10px;
  text-decoration: none;
  background-size: cover;
  background-position: center;
}

.category-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.category-pill span {
  position: relative;
  z-index: 1;
  width: 100px;
  text-align: center;
}

/* Featured Video Section */
.video-main {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #000;
}

.video-main img {
  opacity: 0.7;
  width: 100%;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
}

/* Ad Banner */
.ad-banner {
  background: linear-gradient(135deg, #6dd5ed, #2193b0);
  border-radius: 12px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 50px 0;
}

/* Events */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-title {
  font-weight: 800;
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.section-subtitle {
  color: #6c757d;
  font-size: 1.1rem;
}

.btn-view-all {
  border: 1px solid #dee2e6;
  border-radius: 10px;
  padding: 10px 24px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-view-all:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
}

/* Featured Card Styling */
.featured-event-card {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  background: white;
}

.image-container {
  position: relative;
  height: 450px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.date-badge-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffc107;
  padding: 10px 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.date-badge-overlay .day {
  font-size: 1.4rem;
  display: block;
  line-height: 1;
}

.date-badge-overlay .month {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.featured-content {
  padding: 30px;
}

.featured-title {
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 15px;
}
.featured-title a {
  text-decoration: none;
  color: var(--gylf-text);
}

.featured-text {
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.6;
}

.meta-info {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  align-items: center;
}

/* List Event Styling */
.event-list-item {
  background: #fffdf5;
  /* Slight cream tint */
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  border-left: 4px solid #ffc107;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.event-list-item:hover {
  transform: translateX(5px);
}

.list-date {
  min-width: 60px;
  text-align: center;
  margin-right: 25px;
}

.list-day {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffc107;
  display: block;
  line-height: 1;
}

.list-month {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #888;
}

.list-content h5 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.list-content p {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.list-content a {
  text-decoration: none;
  color: var(--gylf-text);
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .image-container {
    height: 250px;
  }
}

/* GYTV */
.gytv {
  position: relative;
  overflow: hidden;
}

.gytv::before {
  content: "";
  position: absolute;
  background-color: #000;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* When hovering the container */
.gytv:hover::before {
  opacity: 0.5;
}

/* Zoom image on hover */
.gytv img {
  transition: transform 0.3s ease;
}

.gytv:hover img {
  transform: scale(1.05);
}

/* CONTACT PAGE */
.contact-section {
  background-image: url("/assets/images/img-20190525-wa0065-1-1280x960.jpg");
  padding: 100px 0;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;

  position: relative;
}

.contact-section::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.contact-section h1 {
  z-index: 2;
  font-weight: 700;
}

/* Modal */
.gylf-modal-footer {
  padding: 1.5rem 2rem;
  background: #f8fafc;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
.btn-secondary {
  background: #e2e8f0;
  color: #475569;
}
body.modal-is-locked {
  overflow: hidden;
}

/* corporate style */
/* Replaced Hero Classes to avoid conflicts */
.partner-header {
  background:
    linear-gradient(135deg, rgba(26, 58, 138, 0.95), rgba(37, 99, 235, 0.85)),
    url("../images/academy.jpg");
  background-size: cover;
  background-position: center center;
  color: white;
  padding: 120px 0;
  position: relative;
}

.impact-glass-panel {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Package Cards */
.package-card {
  border: none;
  border-radius: 15px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  padding: 30px;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--gylf-light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.price-tag {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gylf-blue);
  margin: 15px 0;
}

/* CTA Section */
.cta-box {
  background: #f8fafc;
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  border: 2px dashed #cbd5e1;
}

/* Article Content */
.article-section {
  background-color: #fff;
}

.article-section .article-hero-frame {
  height: 700px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .article-section .article-hero-frame {
    height: 400px;
  }
  .article-section .article-title {
    font-size: 2rem !important;
  }
}

.article-section .article-header {
  margin: -60px auto 40px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  position: relative;
  z-index: 10;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.article-section .article-title {
  font-family: "lato", serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.article-section .post-meta {
  color: #636e72;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-section .content-body p {
  font-size: 18px;
  font-weight: 400;
}

.article-section .content-body p span {
  font-size: unset !important;
  font-weight: unset !important;
  font-family: unset !important;
}

.article-section .content-body h1 {
  font-size: 20px;
  font-weight: 800;
}

.article-section .content-body {
  font-size: 1.15rem;
}

@media (max-width: 768px) {
  .article-section .featured-image-frame {
    height: 450px;
  }
}

.article-section .metadata-box {
  padding: 30px 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ddd;
}

.article-section .metadata-box h1 {
  text-align: center;
  font-weight: 900;
}

.article-section .metadata-info {
  text-align: center;
}

.article-section .carousel-item {
  width: 25%;
}

.slider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .slider {
    flex-wrap: wrap;
    margin-bottom: unset !important;
  }
}

/* OPPORTUNITY */
.opportunity_involvement .card {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

/* ACADEMY */
.academy {
  height: 500px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.academy:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.academy .card {
  padding: 20px;
  max-width: 800px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.academy h1 {
  font-size: 2rem;
}
.academy button {
  text-transform: uppercase;
  font-weight: bold;
  width: 200px;
  padding: 14px 0;
}

.category-card {
  border: none;
  border-bottom: 4px solid var(--gylf-gold);
  transition: transform 0.3s ease;
  height: 100%;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.category-card:hover {
  transform: translateY(-10px);
}
.category-icon {
  color: var(--gylf-blue);
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
}
.category-icon i,
.category-icon svg {
  width: 48px;
  height: 48px;
}

/* Stats Section */
.stats-section {
  background-color: var(--gylf-blue);
  color: white;
  padding: 60px 0;
}
.stat-item h2 {
  font-weight: 700;
  color: var(--gylf-gold);
}

/* Process Steps */
.step-circle {
  width: 60px;
  height: 60px;
  background: var(--gylf-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--gylf-blue);
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
  background-color: var(--gylf-light-bg);
  color: var(--gylf-blue);
  font-weight: 600;
}

/* Testimonials */
.testimonials {
  background-color: var(--gylf-light-bg);
}
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  border-left: 5px solid var(--gylf-blue);
}
.user-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.user-info h6 {
  margin: 0;
  color: var(--gylf-blue);
  font-weight: 700;
}
.user-info span {
  font-size: 0.8rem;
  color: #777;
}

/* Modal Base Styles */
.gylf-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-speed) var(--ease-out-expo),
    visibility var(--transition-speed) var(--ease-out-expo);
  font-family: "Lato", sans-serif;
  padding: 1.5rem;
}

.gylf-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.gylf-modal-overlay {
  position: absolute;
  inset: 0;
  background: var(--modal-overlay);
  backdrop-filter: blur(8px);
}

.gylf-modal-container {
  position: relative;
  background: var(--modal-bg);
  width: 100%;
  max-width: 600px;
  border-radius: var(--modal-radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition-speed) var(--ease-out-expo);
  overflow: hidden;
}

.gylf-modal.is-active .gylf-modal-container {
  transform: scale(1) translateY(0);
}

/* Modal UI Components */
.gylf-modal-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}

.gylf-modal-title {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gylf-blue);
  margin: 0;
  letter-spacing: -0.5px;
}

.gylf-modal-close {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #64748b;
  transition: all 0.2s;
}

.gylf-modal-close:hover {
  background: #e2e8f0;
  color: var(--gylf-blue);
  transform: rotate(90deg);
}

.gylf-modal-body {
  padding: 0 2rem 2rem;
  max-height: 69vh;
  overflow-y: auto;
  color: #475569;
  line-height: 1.7;
  background-color: aliceblue;
}

.gylf-modal-footer {
  padding: 1.5rem 2rem;
  background: #f8fafc;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Action Buttons */
.btn-modal {
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: "Lato";
  transition:
    transform 0.2s,
    background 0.2s;
}

.btn-modal:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: #e2e8f0;
  color: #475569;
}
/* Step Progress Bar */
.step-indicator {
  height: 4px;
  background: #e2e8f0;
  transition: width 0.3s ease;
}
.step-progress {
  height: 100%;
  background: #2563eb;
  width: 33%;
}
/* Thank You State Styles */
.thank-you-content {
  text-align: center;
  padding: 8px 1rem;
}
.success-icon {
  width: 50px;
  height: 50px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
}

/* --- SQUARE SMALL GALLERY STYLES --- */
.gallery-container {
  max-width: 100%;
  margin: 3rem auto;
  padding: 0;
}

.gallery-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  display: block;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

.gallery-item {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background-color: #eee;
  transition: transform 0.3s ease;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Lightbox for Gallery */
.modal-content-custom {
  background-color: transparent;
  border: none;
}
.close-gallery {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 1080;
}
.full-res-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

/* Navigation Arrows */
.nav-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  padding: 20px 15px;
  cursor: pointer;
  font-size: 2rem;
  z-index: 1075;
  transition: background 0.3s;
  border-radius: 4px;
}
.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
.prev-arrow {
  left: 20px;
}
.next-arrow {
  right: 20px;
}

.btn-gold {
  background-color: var(--brand-gold);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  padding: 8px 20px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-gold:hover {
  background-color: var(--brand-gold-hover);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero/Header Section */
.page-header {
  background:
    linear-gradient(rgba(26, 42, 108, 0.85), rgba(26, 42, 108, 0.85)),
    url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&q=80&w=1600")
      center/cover;
  color: white;
  padding: 100px 0 140px;
  text-align: center;
}

.page-header h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
/* Donation Section - Feature Cards */
.donation-section {
  margin-top: -80px;
  margin-bottom: 100px;
}

.give-card {
  background: #fff;
  border: none;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.give-card.featured {
  border: 2px solid var(--brand-gold);
  transform: scale(1.05);
  z-index: 2;
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--light-bg);
  color: var(--brand-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.give-card h3 {
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--brand-blue);
}

/* Quick Give Form Styles */
.currency-select,
.purpose-select {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  width: 100%;
  background-color: #fff;
  cursor: pointer;
}

.label-small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
  text-align: left;
}

.amount-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.amount-btn {
  padding: 8px;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}

.amount-btn:hover,
.amount-btn.active {
  border-color: var(--brand-gold);
  background: var(--brand-gold);
  color: white;
}

.form-control-custom {
  border-radius: 8px;
  padding: 12px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  border: 1px solid #eee;
  background: #fdfdfd;
}

.card-action {
  width: 100%;
  padding: 12px;
  border: none;
  color: #fff;
  background: var(--brand-blue);
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.card-action:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn-outline-gold {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--brand-gold);
  color: var(--brand-gold);
  background: transparent;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-top: auto;
}

.merchant-box {
  background: var(--light-bg);
  border-left: 5px solid var(--brand-gold);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: left;
}

.agreement-text {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
}

.form-check-input:checked {
  background-color: var(--brand-gold);
  border-color: var(--brand-gold);
}

/* Modal Table Styling for Bank Details */
.bank-detail-group {
  margin-bottom: 25px;
}
.bank-detail-group h6 {
  color: var(--brand-blue);
  font-weight: 700;
  border-bottom: 2px solid var(--brand-gold);
  display: inline-block;
  margin-bottom: 10px;
}
.bank-table {
  font-size: 0.85rem;
  width: 100%;
}
.bank-table td {
  padding: 4px 0;
}
.bank-table td:first-child {
  font-weight: 600;
  width: 120px;
}

/* Footer */
.custom-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 0 40px 0;
  font-size: 0.95rem;
}

.custom-footer .mailto:link,
.custom-footer .mailto:visited {
  text-decoration: none;
}
.custom-footer .mailto:link :hover,
.custom-footer .mailto:visited :hover {
  color: var(--footer-text);
}

.footer-logo-text {
  color: var(--footer-heading);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.footer-heading {
  color: var(--footer-heading);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.social-dot {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

/* Subscription Box Styles */
.subscribe-group {
  position: relative;
  display: flex;
  background-color: var(--input-bg);
  border-radius: 50px;
  padding: 5px;
  overflow: hidden;
  max-width: 350px;
}

.subscribe-input {
  background: transparent;
  border: none;
  color: white;
  padding: 10px 20px;
  width: 100%;
  outline: none;
}

.subscribe-input::placeholder {
  color: #6c757d;
}

.subscribe-btn {
  background-color: var(--accent-cyan);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.footer-divider {
  border-top: 1px solid #73859f;
  margin: 60px 0 30px 0;
}

.copyright-text {
  font-size: 16px;
  color: #536467;
}
