/* Language Switcher UI (floating, styled) */
.lang-switcher {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}
.lang-btn {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1.5px solid #ededf1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #14532b;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(20,83,43,0.10);
  padding: 0 8px;
  outline: none;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
  pointer-events: auto;
}
.lang-btn:focus {
  border-color: #ffbc3b;
  box-shadow: 0 0 0 2px #ffbc3b33;
}
.lang-label {
  margin-right: 3px;
  font-size: 15px;
  font-weight: 600;
}
.lang-chevron {
  font-size: 13px;
  color: #b5b5b7;
  margin-left: 1px;
}
.lang-dropdown {
  display: none;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid #ededf1;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(20,83,43,0.10);
  margin-top: 6px;
  min-width: 40px;
  position: absolute;
  left: 0;
  top: 44px;
  z-index: 3100;
  pointer-events: auto;
}
.lang-switcher.open .lang-dropdown {
  display: flex;
}
.lang-option {
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #14532b;
  padding: 7px 14px 7px 10px;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s;
  min-width: 40px;
}
.lang-option:hover {
  background: #f8f8f8;
}
@media (max-width: 575px) {
  .lang-switcher {
    left: 7px;
  }
  .lang-btn {
    min-width: 32px;
    width: 32px;
    height: 32px;
    padding: 0 4px;
    border-radius: 7px;
    font-size: 13px;
  }
  .lang-label {
    font-size: 13px;
  }
  .lang-dropdown {
    top: 36px;
    border-radius: 7px;
    min-width: 90px;
    width: max-content;
    max-width: 90vw;
    left: 0;
    right: auto;
    box-sizing: border-box;
    padding: 2px 0;
    overflow-x: auto;
  }
  .lang-option {
    font-size: 13px;
    padding: 6px 10px 6px 7px;
    border-radius: 5px;
    min-width: 80px;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}

/* Mobile Bottom Navigation Bar */
.mobile-bottom-nav {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  height: 60px;
  background: #fff;
  border-top: 1.5px solid #ededf1;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1200;
  box-shadow: 0 -2px 12px 0 rgba(20,83,43,0.07);
}
.mobile-bottom-nav .nav-btn {
  flex: 1 1 0;
  text-align: center;
  color: #14532b;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  padding: 0 2px;
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.mobile-bottom-nav .nav-btn.active,
.mobile-bottom-nav .nav-btn:focus,
.mobile-bottom-nav .nav-btn:hover {
  color: #ffbc3b;
}
.mobile-bottom-nav .icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 2px;
  display: block;
}
.mobile-bottom-nav .label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: block;
}
@media (min-width: 992px) {
  .mobile-bottom-nav { display: none !important; }
}
/* /Mobile Bottom Navigation Bar */
/* event card image style */
.card-img-top {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #f8f8f8;
  border-bottom: 1px solid #ededf1;
}
/* /event card image style */



/* program card image style */
.program-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #f8f8f8;
  border-bottom: 1px solid #ededf1;
}
/* /program card image style */

/* Program Cards: Consistent sizing and layout */
.card {
  display: flex;
  flex-direction: column;
}

.card-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.card-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 16px;
}

.list-inline {
  margin-bottom: 10px;
}

.list-inline-item {
  margin-right: 12px;
  font-size: 13px;
  color: #8fcf9b;
}

.list-inline-item a {
  color: #3b7a4a;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 13px;
}

.list-inline-item a:hover {
  color: #ffbc3b;
}

.card-title {
  margin-bottom: 10px;
  min-height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
}

.card .btn {
  margin-top: auto;
}
/* /Program Cards: Consistent sizing and layout */

/* leaders section card row gap */
.leaders-card {
  margin-bottom: 2.5rem !important;
}
/* /leaders section card row gap */
/*!------------------------------------------------------------------
[MAIN STYLESHEET]

PROJECT:	Project Name
VERSION:	Versoin Number
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[TABLE OF CONTENTS]
-------------------------------------------------------------------*/
/*  typography */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@font-face {
  font-family: 'futura-bold';
  src: url("../fonts/Futura-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #3b7a4a;
}

p, .paragraph {
  font-weight: 400;
  color: #3b7a4a;
  font-size: 15px;
  line-height: 1.9;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #14532b;
  font-family: "futura-bold";
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 60px;
}

@media (max-width: 575px) {
  h1, .h1 {
    font-size: 45px;
  }
}

h2, .h2 {
  font-size: 40px;
}

@media (max-width: 575px) {
  h2, .h2 {
    font-size: 30px;
  }
}

h3, .h3 {
  font-size: 25px;
}

@media (max-width: 575px) {
  h3, .h3 {
    font-size: 20px;
  }
}

h4, .h4 {
  font-size: 20px;
}

@media (max-width: 575px) {
  h4, .h4 {
    font-size: 18px;
  }
}

h5, .h5 {
  font-size: 18px;
}

@media (max-width: 575px) {
  h5, .h5 {
    font-size: 16px;
  }
}

h6, .h6 {
  font-size: 16px;
}

@media (max-width: 575px) {
  h6, .h6 {
    font-size: 14px;
  }
}

/* Button style */
.btn {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 0;
  font-weight: 500;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
  overflow: hidden;
}

.btn::before {
  position: absolute;
  content: "";
  height: 80%;
  width: 100%;
  left: 0;
  bottom: 10%;
  z-index: -1;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn:hover::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.btn-sm {
  font-size: 14px;
  padding: 10px 35px;
}

.btn-xs {
  font-size: 12px;
  padding: 5px 15px;
}

.btn-primary {
  background: #ffbc3b;
  color: #fff;
}

.btn-primary::before {
  background: #fff;
}

.btn-primary:active {
  background: #ffbc3b !important;
  color: #ffbc3b;
}

.btn-primary:active::before {
  height: 80%;
}

.btn-primary:hover {
  background: #ffab08;
  color: #ffbc3b;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #ffab08;
  border-color: #ffab08;
}

.btn-secondary {
  background: #fff;
  color: #ffbc3b;
  border: 1px solid #fff;
}

.btn-secondary::before {
  background: #ffbc3b;
}

.btn-secondary:active {
  background: #ffbc3b;
  color: #fff;
  border: 1px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary-outline {
  border: 1px solid #ffbc3b;
  color: #ffbc3b;
  background: transparent;
}

.btn-primary-outline::before {
  background: #fff;
}

.btn-primary-outline:hover {
  background: #ffbc3b;
  color: #ffbc3b;
}

.btn-primary-outline:active {
  background: #ffbc3b;
  color: #fff;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #ffcd6e;
  color: #fff;
}

::selection {
  background: #ffcd6e;
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: #ffbc3b;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #ffbc3b;
}

a.text-primary:hover {
  color: #ffbc3b !important;
}

a.text-light:hover {
  color: #ffbc3b !important;
}

h4 {
  transition: .2s ease;
}

a h4:hover {
  color: #ffbc3b;
}

.slick-slide {
  outline: 0;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title {
  margin-bottom: 30px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #ededf1 !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(20,83,43,0.35);
  opacity: 1;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #ffbc3b !important;
}

.bg-secondary {
  background: #2e8b57 !important;
}

.bg-gray {
  background: #f8f8f8;
}

.text-primary {
  color: #ffbc3b !important;
}

.text-color {
  color: #ffffff;
}

.text-light {
  color: #8fcf9b !important;
}

.text-lighten {
  color: #d6d6e0 !important;
}

.text-muted {
  color: #b5b5b7 !important;
}

.text-dark {
  color: #14532b !important;
}

.font-secondary {
  font-family: "futura-bold";
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pl-150 {
  padding-left: 150px;
}

.zindex-1 {
  z-index: 1;
}

.overflow-hidden {
  overflow: hidden;
}

.vertical-align-middle {
  vertical-align: middle;
}

.icon-md {
  font-size: 36px;
}

/* page title */
.page-title-section {
  padding: 200px 0 80px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.custom-breadcrumb li.nasted {
  position: relative;
  padding-left: 25px;
}

.custom-breadcrumb li.nasted::before {
  position: absolute;
  font-family: "themify";
  content: "\e649";
  font-size: 20px;
  top: 50%;
  left: -5px;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* /page title */
.list-styled {
  padding-left: 25px;
}

.list-styled li {
  position: relative;
  margin-bottom: 15px;
}

.list-styled li::before {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #ffbc3b;
  left: -25px;
  top: 5px;
}

textarea.form-control {
  height: 200px;
  padding: 20px;
}

#map_canvas {
  height: 500px;
}

.top-header {
  font-size: 12px;
  transition: -webkit-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease;
  -webkit-transform-origin: top;
          transform-origin: top;
  font-weight: 600;
}

.top-header.hide {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
}


@media (max-width: 991px) {
  .header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: #2e8b57;
  }
}

.navigation {
  background-image: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  transition: .2s ease;
}

@media (max-width: 575px) {
  .navigation {
    background-image: linear-gradient(to right, transparent 70%, #ffbc3b 30%);
  }
}

.navbar-nav {
  padding-left: 50px;
  background: #ffbc3b;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-left: 0 !important;
  }
}

.nav-bg {
  background-color: #14532b;
}

.nav-item {
  margin: 0 15px;
  position: relative;
}

.nav-item .nav-link {
  text-transform: uppercase;
  font-weight: 600;
}

.nav-item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  content: "";
  background: #fff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}

.nav-item:hover::before, .nav-item.active::before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

.navbar-light .navbar-nav .nav-link {
  color: #fff;
}

link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #fff;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #fff;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 40px 0px;
}

@media (max-width: 991px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 20px;
  }
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  box-shadow: 0 2px 5px #0000000d;
}

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

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  border-bottom: 5px solid #ffbc3b;
  padding: 15px;
  top: 96px;
  border-radius: 0;
  display: block;
  visibility: hidden;
  transition: .3s ease;
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  background: #fff;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform-origin: unset;
            transform-origin: unset;
  }
}

.navbar .dropdown-menu.view {
  visibility: visible !important;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.view {
    display: block;
  }
}

.navbar .dropdown-menu.show {
  visibility: hidden;
}

@media (max-width: 991px) {
  .navbar .dropdown-menu.show {
    visibility: visible;
    display: block;
  }
}

.navbar .dropdown-item {
  position: relative;
  color: #14532b;
  transition: .2s ease;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
  .navbar .dropdown-item {
    text-align: center;
  }
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navbar .dropdown-item:hover {
  color: #ffbc3b;
  background: transparent;
}

.hero-section {
  padding: 250px 0 100px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-slider .prevArrow,
.hero-slider .nextArrow {
  position: absolute;
  bottom: -123px;
  z-index: 9;
  padding: 15px;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  font-size: 30px;
  transition: all linear .2s;
  background: transparent;
}

.hero-slider .prevArrow:focus,
.hero-slider .nextArrow:focus {
  outline: 0;
}

.hero-slider .prevArrow:hover,
.hero-slider .nextArrow:hover {
  color: #ffbc3b;
}

.hero-slider .prevArrow {
  right: 60px;
}

.hero-slider .nextArrow {
  right: 0;
}

.hero-slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: -100px;
  padding-left: 0;
}

.hero-slider .slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.hero-slider .slick-dots li.slick-active button {
  background: #ffbc3b;
}

.hero-slider .slick-dots li button {
  color: transparent;
  padding: 0;
  overflow: hidden;
  height: 10px;
  width: 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  outline: 0;
}

/* banner feature */
.feature-icon {
  font-size: 50px;
  color: #ffbc3b;
  display: inline-block;
}

/* Fix: Remove excessive right padding, keep layout balanced */
.feature-blocks {
  margin-top: -100px;
  padding-left: 70px;
  padding-top: 80px;
  padding-right: 40px;
}

@media (max-width: 1400px) {
  .feature-blocks {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (max-width: 1200px) {
  .feature-blocks {
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 30px;
  }
  .feature-blocks h3 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .feature-blocks {
    margin-top: 0;
    padding: 10px 0 0 10px !important;
  }
  .feature-blocks h3 {
    font-size: 25px;
  }
}

/* /banner feature */
/* program */
.card-btn {
  font-size: 12px;
  padding: 5px 10px;
}

.flex-basis-33 {
  flex-basis: 33.3333%;
}

.hover-shadow {
  transition: .3s ease;
}

.hover-shadow:hover {
  box-shadow: 0px 4px 25px 0px rgba(27, 39, 71, 0.15);
}

/* /program */
/* success story */
.success-video {
  min-height: 300px;
}

.success-video .play-btn {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (max-width: 767px) {
  .success-video .play-btn {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.play-btn {
  display: inline-block;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: #ffbc3b;
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.play-btn i {
  line-height: 80px;
}

.play-btn::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -2;
  transition: .3s ease;
  transition-delay: .2s;
}

.play-btn::after {
  position: absolute;
  content: "";
  height: 80%;
  width: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #ffbc3b;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: -1;
  transition: .3s ease;
}

.play-btn:hover::before {
  height: 80%;
  width: 80%;
  transition-delay: 0s;
}

.play-btn:hover::after {
  height: 0;
  width: 0;
  transition: 0s ease;
}

/* /success story */
/* events */
.card-date {
  position: absolute;
  background: #ffbc3b;
  font-family: "futura-bold";
  text-align: center;
  padding: 10px;
  color: #fff;
  top: 0;
  left: 0;
  text-transform: uppercase;
}

.card-date span {
  font-size: 40px;
}

/* /events */

/* Funfacts/Stats section */
.count {
  margin: 0 !important;
  line-height: 1;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  display: block;
  width: 100%;
}

@media (max-width: 575px) {
  .count {
    font-size: 36px;
  }
}

.section-sm.bg-primary .col-md-3,
.section-sm.bg-primary .col-sm-6 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-sm.bg-primary .text-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-sm.bg-primary h5 {
  margin: 10px 0 0 0 !important;
  text-align: center;
}

/* /Funfacts/Stats section */

/* CTA Modal RTL Support */
#ctaModal[dir="rtl"] .modal-header {
  text-align: right;
}

#ctaModal[dir="rtl"] .form-label-text {
  text-align: right;
}

#ctaModal[dir="rtl"] .close {
  margin-left: auto;
  margin-right: -1rem;
}

#ctaModal label {
  display: block;
  text-align: inherit;
}

#ctaModal .form-control {
  direction: inherit;
  text-align: inherit;
}

#ctaModal textarea {
  direction: inherit;
}

/* /CTA Modal RTL Support */

/* Event View Page Styles */
.event-info-box {
  background: linear-gradient(135deg, #3b7a4a 0%, #2d5f39 100%);
  color: white;
  padding: 30px 20px;
  border-radius: 8px;
}

.event-info-box .row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.event-info-box .col-md-4,
.event-info-box .col-sm-6 {
  flex: 0 0 calc(33.333% - 0px);
}

.event-info-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
}

.event-info-icon {
  font-size: 24px;
  color: #ffbc3b;
  flex-shrink: 0;
  margin-top: 2px;
}

.event-info-content {
  flex: 1;
}

.event-info-content p {
  margin: 0;
  font-weight: 600;
  color: white;
}

.event-info-content p:first-child {
  font-size: 12px;
  opacity: 0.9;
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 3px;
  color: white;
}

.event-info-content p:last-child {
  font-size: 16px;
  font-weight: 600;
}

.event-hero-img {
  border-radius: 4px;
  object-fit: cover;
  max-height: 400px;
}

.event-about-text {
  line-height: 1.8;
  color: #065a0d;
  font-size: 16px;
}

.event-gallery-item {
  flex-shrink: 0;
}

.event-gallery-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  padding: 20px;
}

.gallery-lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  z-index: 10000;
}

.gallery-lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.event-gallery-counter {
  font-size: 14px;
  margin-top: 15px;
}

/* /Event View Page Styles */
/* teacher */
.teacher-info {
  width: 70%;
  bottom: 0;
  right: 0;
}

/* /teacher */

/* leader card image style */
.leader-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #f8f8f8;
  border-bottom: 1px solid #ededf1;
}
/* /leader card image style */
/* footer */
.newsletter {
  background-image: linear-gradient(to right, transparent 50%, #ffbc3b 50%);
  margin-bottom: -100px;
  position: relative;
  z-index: 1;
}

.newsletter-block {
  padding-left: 50px;
}

@media (max-width: 575px) {
  .newsletter-block {
    padding-left: 15px;
  }
}

.input-wrapper {
  position: relative;
}

.input-wrapper button {
  position: absolute;
  right: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.form-control {
  height: 60px;
  background: #fff;
  border-radius: 0;
  padding-left: 25px;
}

.form-control:focus {
  border-color: #ffbc3b;
  box-shadow: none;
}

.newsletter-block .form-control {
  height: 70px;
}

.bg-footer {
  background-color: #182b45;
}

.logo-footer {
  margin-top: -20px;
  display: inline-block;
  max-width: 200px;
}

.footer {
  border-color: #494a43 !important;
  padding-top: 50px;
}

/* /footer */

/* Header logo sizing - keep logo proportional and responsive */
.navbar-brand img {
  max-height: 60px;
  width: auto;
  display: inline-block;
}

@media (max-width: 575px) {
  .navbar-brand img {
    max-height: 44px;
  }
}

.filter-controls li {
  cursor: pointer;
  transition: .1s ease;
}

.filter-controls li.mixitup-control-active {
  font-weight: 600;
  color: #ffbc3b;
}

.filter-controls li:hover {
  color: #ffbc3b;
}

/*# sourceMappingURL=maps/style.css.map */

/* Contact details card for contact.php */
.contact-details {
  background: #ffffff;
  padding: 28px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(20,83,43,0.06);
  border: 1px solid #eef6ee;
}
.contact-details p {
  color: #14532b;
  margin-bottom: 1rem;
}
.contact-details a {
  color: #14532b;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: .6rem;
}
.contact-details a:hover {
  color: #ffbc3b;
}
.contact-details .address {
  color: #6b6b6b;
  margin-top: .5rem;
}

@media (max-width: 991px) {
  .contact-details {
    padding: 20px;
    margin-top: 20px;
  }
}

/* Admin Modal Responsiveness */
.admin-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.admin-modal.active {
  display: flex;
}

.admin-modal .modal-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
}

.admin-modal .close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  background: none;
  border: none;
  z-index: 2001;
  transition: color 0.2s;
}

.admin-modal .close-modal:hover {
  color: #333;
}

.admin-modal .modal-content h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: #14532b;
}

.admin-modal form {
  display: flex;
  flex-direction: column;
}

.admin-modal .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.admin-modal .form-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-modal label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #14532b;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.admin-modal input,
.admin-modal textarea,
.admin-modal select {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.admin-modal textarea {
  resize: vertical;
  min-height: 100px;
}

.admin-modal .image-preview,
.admin-modal .gallery-preview {
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  border: 1px solid #efefef;
  min-height: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-start;
}

.admin-modal .admin-btn {
  background: #3b7a4a;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
  align-self: flex-start;
  margin-top: 1rem;
}

.admin-modal .admin-btn:hover {
  background: #2d5f39;
}

/* Mobile responsiveness for admin modal */
@media (max-width: 767px) {
  .admin-modal .modal-content {
    padding: 1.5rem;
    padding-bottom: 3rem;
    max-height: calc(100vh - 40px);
  }
  
  .admin-modal .close-modal {
    top: 0.75rem;
    right: 0.75rem;
  }
  
  .admin-modal .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  .admin-modal label {
    margin-bottom: 0.25rem;
  }
  
  .admin-modal input,
  .admin-modal textarea,
  .admin-modal select {
    padding: 0.65rem;
    font-size: 16px;
  }
  
  .admin-modal h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

/* /Admin Modal Responsiveness */

/* Gallery item styling for admin */
.gallery-item-container {
  position: relative;
  display: inline-block;
  margin: 0 6px 6px 0;
}

.gallery-item-img {
  max-width: 60px;
  max-height: 60px;
  border-radius: 4px;
  cursor: pointer;
  display: block;
}

.gallery-item-remove-btn {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff6b6b;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  display: none;
  transition: background 0.2s;
}

.gallery-item-remove-btn:hover {
  background: #ff5252;
}

.gallery-item-container:hover .gallery-item-remove-btn {
  display: block;
}

.gallery-preview-label {
  font-size: 12px;
  color: #666;
  margin: 0 0 10px 0;
  display: block;
  font-weight: 600;
}

/* /Gallery item styling for admin */

/* Hero image button styling */
.hero-remove-btn {
  margin-top: 10px;
  padding: 0.5rem 1rem;
  background: #ff6b6b;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
  display: none;
}

.hero-remove-btn:hover {
  background: #ff5252;
}

.hero-remove-btn.show {
  display: inline-block;
}

/* /Hero image button styling */
