/* --- Responsive Design Additions --- */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #222;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
header, nav, main, footer {
  width: 100%;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
nav ul li {
  margin: 0 1rem 0 0;
}
@media (max-width: 768px) {
  .container {
    width: 98%;
    padding: 0 0.5rem;
  }
  nav ul {
    flex-direction: column;
  }
  nav ul li {
    margin: 0 0 0.5rem 0;
  }
}
/* --- End Responsive Design Additions --- */
/* Mobile-first order for homepage panels */
@media (max-width: 1024px) {
  .order-1 {
    order: 1 !important;
  }
  .order-2 {
    order: 2 !important;
  }
  .order-3 {
    order: 3 !important;
  }
}
/* Responsive utility classes for all pages */
@media (max-width: 1024px) {
  .gallery-section, .flex.flex-col.lg\:flex-row {
    flex-direction: column !important;
    padding: 1rem !important;
  }
  .w-full.lg\:w-1\/4, .w-full.lg\:w-2\/4, .w-full.lg\:w-3\/4 {
    width: 100% !important;
    min-width: 0 !important;
  }
  .my-12 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
}
@media (max-width: 768px) {
  .gallery-section, .flex.flex-col.lg\:flex-row {
    padding: 0.5rem !important;
  }
  .text-6xl, .text-7xl, .md\:text-\[8rem\] {
    font-size: 2.2rem !important;
  }
  .text-5xl, .md\:text-6xl {
    font-size: 1.5rem !important;
  }
  .video-card {
    width: 95vw !important;
    min-width: 0 !important;
  }
  .video-card iframe {
    height: 40vw !important;
    min-height: 120px !important;
  }
  .logo-img {
    width: 40px !important;
  }
  .logo-text {
    font-size: 1.1rem !important;
  }
  .px-4, .md\:px-10 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
}
@media (max-width: 480px) {
  .gallery-section, .flex.flex-col.lg\:flex-row {
    padding: 0.2rem !important;
  }
  .text-3xl, .sm\:text-5xl, .md\:text-1x1 {
    font-size: 1.1rem !important;
  }
  .logo-img {
    width: 28px !important;
  }
  .logo-text {
    font-size: 0.9rem !important;
  }
}
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
.skeleton-card {
  background: #f6f6f6;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
  min-height: 260px;
  opacity: 1;
  animation: galleryFadeIn 0.7s cubic-bezier(.4,0,.2,1) forwards;
}
/* ======================================================
   CSS Stylesheet: Cleaned and Organized
   File: style.css
   Purpose: Main Stylesheet for Website Layout, UI, and Animations
   ====================================================== */

/* ===============================
   Color Theme Variables (Dark/Light Mode)
=============================== */
:root {
  --primary: #188f09;
  --secondary: #1e293b;
  --accent: #09ad19;
  --highlight: #fbbf24;
  --text: #f1f5f9;
  --white: #ffffff;
  --gradient-bg: linear-gradient(135deg, #0f172a 0%, #09ad19 100%);
}

:root.light {
  --primary: #f8fafc;
  --secondary: #e2e8f0;
  --accent: #09ad19;
  --highlight: #f59e0b;
  --text: #1e293b;
  --white: #0f172a;
  --gradient-bg: linear-gradient(135deg, #e2e8f0 0%, #09ad19 100%);
}

/* ===============================
   Global Reset and Base Styles
=============================== */
html {
  transition: background 0.5s, color 0.5s;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

  body {
        font-family: 'Poppins', sans-serif;
        overflow-x: hidden;
      }
      .glow-text {
        text-shadow: 0 0 10px rgba(187, 243, 187, 0.6), 0 0 20px rgba(125, 241, 125, 0.4), 0 0 40px rgba(72, 241, 72, 0.3);
        color:rgb(255, 255, 255);
      }
      .hero-bg iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        z-index: -20;
      }
      .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: -10;
      }
      .blobs {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: -15;
      }
      .blob {
        position: absolute;
        border-radius: 50%;
        opacity: 0.3;
        filter: blur(80px);
        animation: blobMove 20s infinite ease-in-out alternate;
      }
      .blob1 { background: #00FFFF; width: 400px; height: 400px; top: 10%; left: 10%; animation-delay: 0s; }
      .blob2 { background: #FF00FF; width: 300px; height: 300px; top: 50%; left: 70%; animation-delay: 5s; }
      .blob3 { background: #FFD700; width: 500px; height: 500px; top: 70%; left: 30%; animation-delay: 10s; }

      @keyframes blobMove {
        0% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(100px, -50px) scale(1.2); }
        100% { transform: translate(-100px, 50px) scale(0.8); }
      }

      @keyframes pulseGrow {
        0%, 100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.1);
        }
      }

      .pump-effect {
        animation: pulseGrow 2s infinite;
      }
  

body {
  font-family: 'Inter', sans-serif;
  background: var(--gradient-bg);
  color: var(--text);
  scroll-behavior: smooth;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
}

/* ===============================
   Header and Navigation Styles
=============================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

nav a {
  margin-left: 1.5rem;
  font-weight: 600;
  color: var(--text);
  font-size: 1.15rem;
  padding: 0.5rem 0.75rem;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: var(--highlight);
  transition: width 0.3s ease, left 0.3s ease;
}

nav a:hover {
  color: var(--highlight);
  transform: scale(1.1);
}

nav a:hover::after {
  width: 100%;
  left: 0;
}



nav a.active {
  color: var(--highlight);          /* Yellow color (your highlight) */
  border-bottom: 2px solid var(--highlight);
  transform: scale(1.1);
}
nav a.active {
  color: var(--highlight);
  border-bottom: 2px solid var(--highlight);
  font-weight: 700;
  background-color: rgba(255, 255, 0, 0.1); /* Light yellow background effect */
  border-radius: 5px;
  padding: 0.5rem 0.75rem;
}

/* ===============================
   Hamburger Menu (Mobile Nav)
=============================== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  width: 30px;
}

.hamburger span {
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

nav.mobile-hidden {
  display: none;
  flex-direction: column;
  background: var(--primary);
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 999;
}

nav.mobile-active {
  display: flex;
  animation: slideDown 0.3s ease forwards;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===============================
   Logo Styles
=============================== */
.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--highlight);
}

.logo-img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius: 12px;
  animation: pulse 2.5s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  animation: bounce 1s;
}

/* ===============================
   Hero Section Styles
=============================== */


/* ===============================
   Left-aligned Activity Card Below Gallery
=============================== */
.left-activity-panel {
  margin-top: 2rem;
  width: 300px;
  max-width: 100%;
  background: var(--secondary);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  overflow: hidden;
  animation: slideInLeft 1s ease forwards;
}

.left-activity-panel img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.left-activity-panel:hover img {
  transform: scale(1.05);
}

.left-activity-panel .activity-content {
  padding: 1rem;
  color: var(--text);
}

.left-activity-panel .activity-content h3 {
  font-size: 1.2rem;
  color: var(--highlight);
  margin-bottom: 0.5rem;
}

.left-activity-panel .activity-content p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.left-activity-panel .read-more {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 4px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.left-activity-panel .read-more:hover {
  background: #0f9f1a;
  transform: scale(1.05);
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}


/* ===============================
   Modal Styles
=============================== */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  background-color: var(--secondary);
  margin: 10% auto;
  padding: 1.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  color: var(--text);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: var(--highlight);
  cursor: pointer;
}

/* ===============================
   Footer Styles
=============================== */
footer {
  background: var(--secondary);
  text-align: center;
  padding: 2rem;
  color: var(--text);
  animation: fadeIn 2s ease-out both;
}

.socials a {
  margin: 0 0.5rem;
  color: var(--accent);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.socials a:hover {
  transform: scale(1.2);
}

.dark-toggle {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.dark-toggle:hover {
  transform: scale(1.1);
}

/* ===============================
   Animations (Reusable Keyframes)
=============================== */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(9,173,25,0.7); }
  70% { box-shadow: 0 0 0 15px rgba(9,173,25,0); }
  100% { box-shadow: 0 0 0 0 rgba(9,173,25,0); }
}

