/* ===== RESET & GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f0f0f;
  color: #e0e0e0;
  line-height: 1.6;
}

h1, h2 {
  color: #2b9c3c;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

/* ===== HEADER ===== */
header {
  background-color: #1b1b1b;
  padding: 20px 5px;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
  color: #b0ffbc;
}

/* ===== VIDEO SECTION ===== */
#video-section {
  background-color: #121212;
  padding: 50px 20px;
  color: #fff;
}

.video-wrapper {
  position: relative;
  width: 90%;
  max-width: 900px;
  margin: 30px auto;
}

.video-wrapper iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
  border: none;
}

/* ===== STATISTICS ===== */
#statistics {
  background-color: #2b9c3c;
  color: #fff;
  padding: 15px 10px;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.stat-box {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 10px;
  min-width: 180px;
  flex: 1 1 200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ===== ABOUT SECTION ===== */
#about {
  background-color: #181818;
  padding: 50px 20px;
  color: #ddd;
}

#about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ===== VALUES SECTION ===== */
#values {
  background: #f8f9fa;
  color: #333;
  padding: 60px 20px;
}

#values h2 {
  color: #2b9c3c;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

#values p {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.core-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.value-box {
  flex: 1 1 calc(45% - 20px);
  background: #ffffff;
  color: #222;
  padding: 24px 20px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.value-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  background: #f0fff4;
}

.value-box strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #2b9c3c;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .value-box {
    flex: 1 1 100%;
  }
}


/* ===== JOIN SECTION ===== */
#join {
  background: #1b1b1b;
  color: #eee;
  padding: 50px 20px;
}

.enlist-button {
  display: inline-block;
  margin-top: 20px;
  background: #2b9c3c;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.enlist-button:hover {
  background: #23912c;
}

/* ===== BACK TO TOP BUTTON ===== */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #2b9c3c;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  cursor: pointer;
  display: none;
}

#backToTop.show {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .stat-box, .value-box {
    flex: 1 1 100%;
  }

  .video-wrapper iframe {
    height: 300px;
  }
}