* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark-forest-green: #14532d;
  --emerald-green: #2ecc71;
  --mint-green: #a3f7bf;
  --white: #ffff;
  --green: #1b9e33;
  --green-light: #40916c;
  --green-dark: #104831;
  --gold: #f8e841;
  --gold-dark: #f4bf13;
  --text-dark: #333333;
  --text-light: #666666;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

body {
  font-family: sans-serif, "Montserrat", "Poppins";
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Header & Navigation */
/* Modern loading screen */
.loading-screen {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, rgba(16,72,49,0.98), rgba(27,158,51,0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: visible;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: rgba(255,255,255,0.04);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.loading-screen img {
  width: 96px;
  height: auto;
  display: block;
}

/* Spinner ring */
.loading-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.18);
  border-top-color: rgba(255,255,255,0.95);
  animation: spin 1s linear infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #ffffff, #f0f9f0);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background: linear-gradient(135deg, #ffffff, #f0f9f0);
}

header.scrolled .nav-brand {
  color: var(--green);
}

header.scrolled nav ul li a {
  color: var(--green);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  max-width: 1200px;
  margin: 0 4%;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--green);
  text-decoration: none;
  transition: color 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li a {
  text-decoration: none;
  color: var(--green);
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

nav ul li a:hover {
  color: var(--gold);
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-dark);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  z-index: 1201; /* sit above the mobile nav overlay so it's always clickable */
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--green);
  margin: 3px 0;
  transition: 0.25s ease-in-out;
  display: block;
}

/* Transform hamburger into an X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background: var(--white);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
  background: var(--white);
}

/* Increase hit area for touch */
.hamburger {
  padding: 8px;
  border-radius: 6px;
}

/* Hero Section */
#home {
  height: 100vh;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  color: var(--text-dark);
  position: relative;
  background: var(--green);
  background-size: 100% auto;
}

.hero-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

/* Initial hidden state */
.hero-description h2,
.hero-description h1,
.hero-content p {
  opacity: 0;
  transform: translateX(-60px);
  animation: textPan 0.8s ease-out forwards;
}

/* Keyframes */
@keyframes textPan {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Staggered with delay (all start after 3s loader) */
.hero-description h2 {
  animation-delay: 3.2s;
}

.hero-description h1 {
  animation-delay: 3.6s;
}

.hero-content p {
  animation-delay: 4s;
}

/* Buttons: start hidden */
.hero-buttons {
  opacity: 0;
  transform: translateY(40px);
  /* below the viewport */
  animation: buttonsUp 0.9s ease-out forwards;
  animation-delay: 4.4s;
  /* starts after text finishes */
}

/* Keyframes for bottom-to-top */
@keyframes buttonsUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-image img {
  opacity: 0;
  transform: translateX(300%);
  animation: imagePan 0.9s ease-out forwards;
  animation-delay: 3.8s;
  /* comes in slightly after text starts */
}

@keyframes imagePan {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-image {
  width: 50vw;
  height: 75vh;
  align-content: center;
  position: relative;
}


.hero-image img {
  border-radius: 20px;
  width: 45vw;
  height: 70vh;
  position: relative;
  z-index: 0;
  object-fit: cover;
  margin: 0 auto 0 -0.8%;
  display: block;
  transition: opacity 0.5s ease;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 43%;
  transform: translateX(-65%);
  display: flex;
  gap: 10px;
  z-index: 1;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-dot.active {
  background: white;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}



@keyframes background-slide {
  0% {
    background-image: url("images/Gallery3.jpg");
    background-position: calc(50% + 300px) center;
    background-size: 70% auto;
    background-color: var(--green);
  }

  20% {
    background-image: url("images/Carousel4.jpg");
    background-position: calc(50% + 400px) center;
    background-size: 70% auto;
    background-color: var(--green);
  }

  40% {
    background-image: url("images/BLOGS3.jpg");
    background-size: 70% auto;
    background-color: var(--green);
  }

  60% {
    background-image: url("images/Carousel5.jpg");
    background-position: calc(50% + 400px) center;
    background-size: 70% auto;
    background-color: var(--green);
  }

  80% {
    background-image: url("images/Gallery7.jpg");
    background-position: calc(50% + 600px) center;
    background-size: 75% auto;
    background-color: var(--green);
  }

  100% {
    background-image: url("images/Gallery2.jpg");
    background-position: calc(50% + 500px) center;
    background-size: 70% auto;
    background-color: var(--green);
  }
}

@keyframes fade-in-out {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.hero-content {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 5% 0% 0% 5%;
}

.hero-content.fade-in.visible {
  align-content: center;
  text-align: left;
}

.hero-content span {
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.1rem;
  padding-top: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  color: white;
  text-align: justify;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content p b {
  color: var(--gold);
  font-weight: bold;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: var(--gold);
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--green-dark), var(--gold));
}

.btn-secondary {
  background: var(--white);
  border: 2px solid var(--green);
  color: var(--green);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.scroll-indicator {
  justify-content: center;
  bottom: 30px;
  left: 1000%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* About Section */
#about {
  padding: 5% 5%;
  background: var(--white);
}

.updates-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}


.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  background: var(--green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--dark-forest-green);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.image-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-card {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.card-icon {
  background: var(--green);
  color: var(--white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  background-color: var(--green);
  background-image: url("images/Carousel1.jpg");
  background-size: cover;
  background-position: center;
}

.card-icon::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--gold);
  border-radius: 50%;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: stretch;
  /* make both columns equal height */
  gap: 40px;
  margin-top: 2rem;
}

.about-image {
  display: flex;
  /* allows controlling image inside */
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5%;
  border: 2px solid var(--mint-green);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

.about-text {
  text-align: justify;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-dark);
}



.view-more-btn {
  text-align: center;
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Gallery Layout ---- */
#gallery {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--green), var(--gold));
  text-align: center;
  color: white;
}

#gallery .section-title {
  color: white;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

#gallery p {
  color: white;
}

.section-container {
  max-width: 1200px;
  margin: auto;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
}

.gallery-grid-item {
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

.gallery-grid-item:hover {
  transform: scale(1.05);
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid-item:hover img {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .carousel-slide img {
    height: 300px;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }

  .carousel-nav i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .carousel-slide img {
    height: 250px;
  }

  .carousel-nav {
    display: none;
    /* Hide navigation on very small screens */
  }

  .carousel-indicators {
    bottom: 25px;
  }

  .carousel-indicator {
    width: 10px;
    height: 10px;
  }
}


/* ---- Carousel ---- */
.carousel {
  position: relative;
  width: 100%;
  margin-top: 40px;
  overflow: hidden;
  perspective: 1000px;
}

.carousel-track {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 250px;
  margin: 0 15px;
  transition: all 0.5s ease-in-out;
  opacity: 0.5;
  transform: scale(0.8);
}

.slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.slide.active {
  transform: scale(1.2);
  opacity: 1;
  z-index: 2;
}

/* ---- Controls ---- */
.controls {
  margin-top: 15px;
}

.controls button {
  background: #065f46;
  color: white;
  border: none;
  padding: 8px 18px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.controls button:hover {
  background: #064e3b;
}

/* ---- Dots ---- */
.dots {
  margin-top: 15px;
}

.dots span {
  font-size: 20px;
  margin: 0 5px;
  cursor: pointer;
  color: #bbb;
}

.dots .active-dot {
  color: #000;
}

/* View More Button */
.view-more-btn {
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, var(--green, #2d5016), #4a7c59);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
  border: none;
  cursor: pointer;
  overflow: hidden;
  left: 38%;
}

.view-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.view-more-btn:hover::before {
  left: 100%;
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(45, 80, 22, 0.4);
  background: linear-gradient(45deg, #3d6626, #5a8a69);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.view-more-btn:hover .btn-icon {
  transform: translateX(5px);
}

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out;
  margin-left: 10px;
}

.view-more-btn.loading .loading-spinner {
  display: inline-block;
}

.view-more-btn.loading .btn-text {
  opacity: 0.7;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Advanced Gallery Modal */
.advanced-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 10%;
  background: transparent;
  z-index: 10000;
  backdrop-filter: blur(10px);
  animation: fadeIn 0.3s ease-out;
}

.advanced-modal-overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.advanced-modal-container {
  position: relative;
  max-width: 60vw;
  max-height: 95vh;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: slideIn 0.4s ease-out;
}

.advanced-modal-header {
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title-section {
  text-align: center;
  flex: 1;
}

.advanced-modal-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--dark-forest-green);
  margin: 0;
}

.advanced-modal-description {
  font-size: 1rem;
  color: var(--text-light);
  margin: 5px 0 0 0;
}

.advanced-close-button {
  background: transparent;
  border: none;
  color: var(--dark-forest-green);
  font-size: 25px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advanced-close-button:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg) scale(1.1);
}

.advanced-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 75vw;
  height: auto;
  max-height: 65vh;
  overflow-y: auto;
}

.advanced-gallery-item {
  aspect-ratio: 4/3;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advanced-gallery-item:hover {
  transform: scale(1.05);
}

.advanced-gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.advanced-gallery-item:hover img {
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .advanced-modal-container {
    max-width: 90vw;
    margin: 15px;
    padding: 15px;
  }

  .advanced-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-height: 60vh;
  }

  .advanced-gallery-item {
    min-height: 140px;
  }

  .view-more-btn {
    left: 0;
    margin: 20px auto;
    display: block;
    padding: 12px 28px;
    font-size: 0.95rem;
    text-align: center;
    width: auto;
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .advanced-modal-container {
    max-width: 95vw;
    margin: 10px;
    padding: 12px;
  }

  .advanced-gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    max-height: 55vh;
  }

  .advanced-gallery-item {
    min-height: 160px;
  }

  .advanced-modal-title {
    font-size: 1.4rem;
  }

  .advanced-close-button {
    width: 40px;
    height: 40px;
    font-size: 20px;
    padding: 6px;
  }

  .view-more-btn {
    font-size: 0.9rem;
    padding: 10px 24px;
    max-width: 90%;
  }
}


/* Blog Section */
#blog {
  padding: 50px 5% 50px;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-content h3 {
  color: var(--green);
  margin-bottom: 15px;
  font-size: 1.3rem;
  line-height: 1.4;
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--gold-dark);
  gap: 12px;
}

/* Contact Section */
#contact {
  min-height: 100vh;
  width: 100vw;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  height: auto;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  color: var(--dark-forest-green);
}

.contact-info h3 {
  font-size: 18px;
  margin-bottom: 0.8rem;
  color: var(--dark-forest-green);
}

.contact-info p {
  font-size: 13px;
  margin-bottom: 1.2rem;
  color: var(--dark-forest-green);
}

.contact-details {
  font-size: 11px;
  margin-bottom: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 13px;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(3px);
}

.contact-item i {
  font-size: 1.2rem;
  color: var(--green);
  width: 25px;
  text-align: center;
}

.contact-item div h4 {
  font-weight: bold;
  margin-bottom: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* Contact Form Container */
.contact-form {
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  color: var(--dark-forest-green);
}

.contact-form h3 {
  color: var(--dark-forest-green);
  margin-bottom: 0.8rem;
  font-size: 18px;
}

/* Grid Layout */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

/* Input Groups */
.input-group {
  position: relative;
}

.input-group i {
  position: absolute;
  left: 10px;
  top: 13px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
  z-index: 1;
}

.input-group input,
.input-group textarea {
  color: var(--text-dark);
  background: rgba(0, 0, 0, 0.05);
  width: 100%;
  padding: 10px 10px 10px 30px;
  border-radius: 8px;
  font-size: 13px;
  border: none;
  outline: none;
  transition: background 0.3s ease;
  height: 40px;
  box-sizing: border-box;
  line-height: 20px;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.input-group input:focus {
  background: rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.4);
}

.input-group textarea:focus {
  background: rgba(0, 0, 0, 0.08);
}

.input-group textarea {
  min-height: 80px;
  font-family: sans-serif;
  resize: none;
}

.textarea-group {
  grid-column: 1 / -1;
}

/* Submit Button */
.submit-btn {
  background: var(--green);
  color: var(--white);
  padding: 12px 35px;
  border: none;
  border-radius: 15px;
  font-weight: bold;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  margin-bottom: 3px;
}

.submit-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* Footer */
footer {
  background: var(--white);
  color: var(--text-dark);
  padding: 50px 5% 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.footer-brand p {
  color: var(--green-dark);
  margin-bottom: 20px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1.5rem;
  font-weight: bold;
}

.footer-logo img {
  width: 150px;
  height: 110px;
  margin-top: 20px;
  margin-left: 30px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.footer-section h4 {
  color: var(--green-dark);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-section a {
  color: var(--green-dark);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.footer-section a:hover {
  color: var(--green);
  padding-left: 10px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  padding: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-bottom: 0;
}

.footer-social a:hover {
  background: var(--mint-green);
  color: var(--dark-forest-green);
  transform: translateY(-3px);
  padding-left: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 20px;
  text-align: center;
  color: var(--green-dark);
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #ffffff, #f0f0f0);
  color: var(--text-dark);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  #home {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
    padding: 5rem 2rem;
    /* more breathing space for tablets */
  }

  .nav-brand {
    font-size: 1.1rem;
  }

  .hero-content {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content h2 {
    font-size: 1.3rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
  }

  a.btn-primary,
  a.btn-secondary {
    font-size: 1rem;
    padding: 12px 24px;
  }

  /* Footer adjustments */
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .footer-logo {
    margin: 1rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
  }

  /* Contact form spacing */
  .contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  nav ul li a {
    font-size: 0.8rem;
    padding: 8px 0;
  }

  nav {
    padding: 1rem 8%;
  }

  .section-container {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  #home {
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
    padding: 4rem 1rem;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2%;
    text-align: center;
  }

  .hero-description {
    width: 100%;
    order: 1;
    margin-top: 50px;
  }

  .hero-image {
    /* make the image full-bleed on mobile (flush with viewport edges) */
    width: 100vw;
    height: 50vh;
    order: 2;
    margin: 0 0 1.25rem;
    /* pull out of the page padding so it touches both edges */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 0; /* remove rounding so image edges sit flush */
  }

  .hero-dots {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  /* Display hero buttons in a single row on mobile */
  .hero-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    flex-wrap: nowrap;
  }

  /* Let each button share available space and remain tappable */
  .hero-buttons a {
    flex: 1 1 0;
    min-width: 130px; /* keeps buttons tappable on narrow screens */
    display: inline-flex;
    justify-content: center;
    padding: 12px 20px;
    box-sizing: border-box;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img {
    width: 100%;
    height: auto;
  }

  .updates-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #contact {
    padding: 3.5rem 4% 2.5rem; 
    align-items: flex-start; 
    min-height: auto; 
  }

  .contact-container {
    gap: 2.5rem;
    padding-top: 0.5rem;
  }

  .submit-btn {
    width: 100%;
    max-width: 480px;
    margin-top: 1rem;
    padding: 12px 18px;
  }

  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo {
    margin: 1rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-form {
    height: auto;
  }

  .footer-logo img {
    margin-top: 20px;
    margin-left: 0;
  }

  button.submit-button {
    margin-top: 20px;
    margin-left: 30px;
    background: var(--gold-dark);
  }

  .footer-social {
    margin-left: 15%;
  }

  .social-links {
    justify-content: center;
  }

  p {
    font-size: medium;
  }

  .card-icon {
    width: 150px;
    height: 150px;
    margin-left: 45px;
  }

  a.nav-brand {
    font-size: 1.2rem;
  }

  header.scrolled .hamburger span {
    background: var(--green-dark);
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active {
    color: var(--gold);
  }

  nav ul {
    /* full-height overlay sliding in from right */
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78%;
    max-width: 420px;
    background: var(--green);
    flex-direction: column;
    padding: 3.25rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(.2,.9,.2,1);
    z-index: 1100; /* above header */
  }

  nav ul.active {
    transform: translateX(0);
  }

  nav ul li a:hover {
    color: var(--gold-dark);
  }

  /* Force white link color when the mobile overlay is open (avoid header.scrolled override) */
  nav ul.active li a,
  nav.active li a,
  nav.open ul li a {
    color: var(--white) !important;
  }

  /* Ensure hover within overlay is still readable */
  nav ul.active li a:hover {
    color: var(--gold);
  }

  nav ul li a {
    color: var(--white);
    font-size: 1.15rem;
    padding: 12px 0;
    display: block;
    font-weight: 600;
  }

  a.btn-primary {
    font-size: 0.9rem;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
  }

  a.btn-secondary {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  nav {
    padding: 1rem 5%;
  }

  .section-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  a.nav-brand {
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-card {
    padding: 2rem;
  }

  .carousel-container {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-grid-item {
    height: 160px;
  }

  .gallery-slider {
    display: contents;
  }

  .gallery-item {
    flex: none;
    width: 100%;
    margin: 10px 0;
    height: 150px;
  }

  .gallery-prev,
  .gallery-next {
    display: none;
  }

  .carousel-indicators {
    margin-top: 10px;
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
  background: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease;
}

.modal-content {
  position: relative;
  margin: 5% auto;
  max-width: 75%;
  max-height: 80%;
}

.modal img {
  width: 75%;
  height: 550px;
  display: block;
  margin: auto;
  object-fit: contain;
  padding: 1rem;
  border-radius: 5%;
}

.modal-close {
  position: absolute;
  top: -40px;
  right: -5%;
  background: var(--gold);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--gold-dark);
  transform: scale(1.1);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-nav:hover {
  background: var(--green-light);
  transform: translateY(-50%) scale(1.1);
}

.modal-prev {
  left: -60px;
}

.modal-next {
  right: -60px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Scroll animation utilities */
/* Elements with .animate start hidden and become visible with .in-view */
.animate,
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.animate.fade-up,
.fade-in {
  transform: translateY(20px);
}

.animate.fade-left {
  transform: translateX(-30px);
}

.animate.fade-right {
  transform: translateX(30px);
}

.animate.scale-up {
  transform: scale(0.97);
}

.animate.in-view,
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Stagger helper - parent gets data-animate="stagger" or class .stagger */
.stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.in-view > * {
  opacity: 1;
  transform: none;
}

/* Keep animations performant on mobile */
@media (max-width: 480px) {
  .animate,
  .fade-in,
  .stagger > * {
    transition-duration: 0.45s;
  }
}

/* Loading animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Photo flow animation for gallery items */
@keyframes photoFlow {
  0% {
    transform: translateX(-100px) scale(0.8);
    opacity: 0;
  }

  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

.gallery-item.photo-flow {
  animation: photoFlow 1s ease-out forwards;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.update-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
}

.update-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.update-card:hover .card-image img {
  transform: scale(1.05);
}

.card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--green);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-category.sports {
  background: #3b82f6;
}

.card-category.community {
  background: var(--gold-dark);
}

.card-category.featured {
  background: linear-gradient(135deg, var(--green), var(--gold));
}

.card-category.awards {
  background: #8b5cf6;
}

.card-category.development {
  background: #f59e0b;
}

.card-category.governance {
  background: linear-gradient(135deg, var(--green), var(--gold));
}

.card-content {
  padding: 1.5rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

.card-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.read-more-btn {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.read-more-btn:hover {
  color: var(--green-dark);
  gap: 0.8rem;
}

.read-more-btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(3px);
}

.view-all-btn {
  text-align: center;
  margin-top: 1rem;
}

.view-more-photos-btn {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.view-more-photos-btn:hover {
  background: var(--white);
  color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.view-all-btn h2.gallery {
  padding-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-top: 2rem;
}

.view-all-button {
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.view-all-button:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* View More Button */
.view-more-btn {
  position: relative;
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(45deg, var(--green, #2d5016), #4a7c59);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.3);
  border: none;
  cursor: pointer;
  overflow: hidden;
  left: 38%;
}

.view-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.view-more-btn:hover::before {
  left: 100%;
}

.view-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(45, 80, 22, 0.4);
  background: linear-gradient(45deg, #3d6626, #5a8a69);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.btn-icon {
  transition: transform 0.3s ease;
}

.view-more-btn:hover .btn-icon {
  transform: translateX(5px);
}

.loading-spinner {
  display: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out;
  margin-left: 10px;
}

.view-more-btn.loading .loading-spinner {
  display: inline-block;
}

.view-more-btn.loading .btn-text {
  opacity: 0.7;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Override JS button styles */
.view-more-btn {
  background: transparent !important;
  color: var(--white) !important;
  border: 2px solid var(--white) !important;
  left: auto !important;
  margin: 0 auto !important;
  display: block !important;
}

.view-more-btn:hover {
  background: var(--white) !important;
  color: var(--green) !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--gold));
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

@media (max-width: 768px) {
  .updates-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .card-content {
    padding: 1.2rem;
  }
}

/* Animation */
.update-card.fade-in.visible {
  animation: fadeInUp 0.6s ease forwards;
}

.update-card.fade-in.visible:nth-child(1) {
  animation-delay: 0.1s;
}

.update-card.fade-in.visible:nth-child(2) {
  animation-delay: 0.2s;
}

.update-card.fade-in.visible:nth-child(3) {
  animation-delay: 0.3s;
}

.update-card.fade-in.visible:nth-child(4) {
  animation-delay: 0.4s;
}

.update-card.fade-in.visible:nth-child(5) {
  animation-delay: 0.5s;
}

.update-card.fade-in.visible:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.gallery-dots-container {
  max-width: 600px;
  margin: 0 auto;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-dark);
  opacity: 0.7;
}