* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #a8ff60;
  --secondary: #00b09b;
  --accent: #96c93d;
  --dark: #0a0a0a;
  --darker: #000;
  --light: #f8f9fa;
  --gray: #bbb;
  --card-bg: rgba(10, 10, 10, 0.7);
  --card-border: rgba(168, 255, 96, 0.15);
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--darker);
  color: var(--light);
  overflow-x: hidden;
}

/* -----------------------------------------------------------------------------
   NAVBAR
----------------------------------------------------------------------------- */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(168, 255, 96, 0.1);
  transition: all 0.4s ease;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: 0.5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), 0.65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), 0.8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), 0.3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: 0.3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: 0.5rem;
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
}

/* ANIMATED BACKGROUND */
.animated-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary), transparent);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary), transparent);
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--accent), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* PARTICLES */
.particles {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatUp 8s linear infinite;
}

@keyframes floatUp {
  0% { 
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { 
    transform: translateY(-100px) translateX(var(--drift));
    opacity: 0;
  }
}

/* HERO SECTION */
.about-hero {
  padding: 140px 20px 80px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 1.3rem;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* STORY SECTION */
.story-section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 176, 155, 0.3);
  border: 2px solid var(--card-border);
}

.story-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.story-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 700;
}

.story-content p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 20px;
}

.story-highlight {
  background: linear-gradient(135deg, rgba(0,176,155,0.1), rgba(150,201,61,0.05));
  border-left: 4px solid var(--secondary);
  padding: 25px;
  margin: 30px 0;
  border-radius: 15px;
  font-style: italic;
  color: var(--light);
}

/* GALLERY SECTION */
.gallery-section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gallery-item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(168, 255, 96, 0.45);
  box-shadow: 0 12px 28px rgba(0, 176, 155, 0.22);
}

/* MISSION VISION VALUES */
.mvv-section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(0, 176, 155, 0.03), transparent);
}

.mvv-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--primary);
  margin-bottom: 60px;
  font-weight: 700;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.mvv-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 25px;
  padding: 45px 35px;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.mvv-card:hover::before {
  transform: scaleX(1);
}

.mvv-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 255, 96, 0.4);
  box-shadow: 0 20px 50px rgba(0, 176, 155, 0.3);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 176, 155, 0.3);
}

.mvv-card h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 18px;
  font-weight: 700;
}

.mvv-card p {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* VALUES LIST - ENHANCED */
.values-section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 176, 155, 0.03), transparent);
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  height: 320px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.value-card-content {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 176, 155, 0.3);
}

.value-card h3 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.value-card p {
  color: #a8ff60;
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 20px;
  flex-grow: 1;
}

.value-cta {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(168, 255, 96, 0.15);
  color: #a8ff60;
  border: 1px solid var(--card-border);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  width: fit-content;
}

.value-cta:hover {
  background: #a8ff60;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 176, 155, 0.2);
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 255, 96, 0.4);
  box-shadow: 0 20px 40px rgba(0, 176, 155, 0.3);
}

/* TIMELINE - ENHANCED */
.timeline-section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-title {
  text-align: center;
  margin-bottom: 50px;
}

.timeline-visualization {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary));
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-point {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  z-index: 2;
}

.timeline-point:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: calc(50% + 40px);
  text-align: right;
}

.timeline-point:nth-child(odd) .timeline-content {
  margin-right: 0;
  margin-left: calc(50% + 40px);
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  z-index: 3;
  box-shadow: 0 0 20px rgba(0, 176, 155, 0.5);
}

.timeline-content {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 25px;
  max-width: 400px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.timeline-content:hover {
  border-color: rgba(168, 255, 96, 0.4);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 176, 155, 0.2);
}

.timeline-year {
  position: absolute;
  top: -10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.timeline-content h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.timeline-content p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 1rem;
}

/* TEAM SECTION */
.team-section {
  padding: 80px 20px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 176, 155, 0.03), transparent);
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 25px;
  padding: 35px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(168, 255, 96, 0.4);
  box-shadow: 0 20px 50px rgba(0, 176, 155, 0.3);
}

.team-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(0, 176, 155, 0.3);
  position: relative;
}

.team-avatar::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  transition: opacity 0.3s;
}

.team-card:hover .team-avatar::after {
  opacity: 1;
  animation: pulse-avatar 2s infinite;
}

@keyframes pulse-avatar {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.team-card h3 {
  color: var(--light);
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.team-role {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.team-bio {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(168, 255, 96, 0.1);
  border: 1px solid rgba(168, 255, 96, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s;
}

.social-icon:hover {
  background: var(--primary);
  color: var(--dark);
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .timeline-point:nth-child(even) .timeline-content,
  .timeline-point:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    max-width: 100%;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-dot {
    left: 20px;
    transform: translateX(0);
  }
  
  .timeline-content {
    margin: 30px 0 0 60px !important;
  }
}

@media (max-width: 768px) {
  .story-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-image img {
    height: 350px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .mvv-grid {
    grid-template-columns: 1fr;
  }
}