/* Example comment */
/* Example comment 2 */

/* Lock scrolling when captcha overlay is active */
body.captcha-lock {
  overflow: hidden;
}

/* Captcha overlay */
#captcha-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#captcha-box {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  text-align: center;
}

/* 🌪️ Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, sans-serif;
  padding-top: 80px;
  background: #f9f9f9;
  color: #333;
  transition: background-color 0.5s ease;
}

/* 🌈 Featured Article Highlight */
.featured-article {
  background-color: #e63946;
  color: #fff;
  padding: 10px;
  border-left: 8px solid #f4d35e;
  font-weight: bold;
  font-size: 1.1em;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.featured-article:hover {
  transform: scale(1.03);
  background-color: #d62828;
}

/* 🧭 Navigation Bar */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #2c3e50;
  padding: 15px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 2000;
  display: flex;
  justify-content: center;
}
nav ul {
  display: flex;
  gap: 50px;
  list-style: none;
}
nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}
nav a:hover {
  background-color: #34495e;
}

/* 🔽 Dropdown Menu */
.dropdown { position: relative; }
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #34495e;
  border-radius: 5px;
  padding: 10px 0;
}
.submenu li a {
  display: block;
  padding: 10px 20px;
  color: white;
}
.submenu li a:hover { background-color: #3b5870; }
.dropdown:hover .submenu { display: block; }

/* 📄 Headings */
h1, h2 {
  text-align: center;
  margin: 20px 0;
}
h1 {
  font-size: 2rem;
  color: #2c3e50;
  animation: colorBounceFade 4s ease-in-out forwards;
}
h2 { font-size: 1.5rem; }

/* 📦 Forms */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin: 40px auto;
}
input[type="email"],
input[type="submit"] {
  width: 100%;
  max-width: 350px;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 16px;
}
input[type="submit"] {
  background-color: #2c3e50;
  color: white;
  border: none;
  cursor: pointer;
}
input[type="submit"]:hover { background-color: #34495e; }

/* 🎨 Color Panel */
.color-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 30px auto;
}
.color-panel button {
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  background-color: #2c3e50;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}
.color-panel button:hover {
  transform: scale(1.05);
  background-color: #34495e;
}

/* ✅ Submission Overlay */
#submission-message {
  display: flex;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: white;
  color: black;
  font-size: 1.5rem;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

/* 🚨 Modal Popup */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}
.modal-content {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
  animation: slideUp 0.5s ease forwards;
}

/* 🎭 Animations */
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
@keyframes colorBounceFade {
  0%   { transform: translateY(0); color: red; opacity: 0; }
  20%  { transform: translateY(-20px); color: yellow; opacity: 0.25; }
  40%  { transform: translateY(0); color: green; opacity: 0.5; }
  60%  { transform: translateY(-20px); color: blue; opacity: 0.75; }
  80%  { transform: translateY(0); color: black; opacity: 1; }
  100% { transform: translateY(0); color: #2c3e50; opacity: 1; }
}

/* 🌐 Intro Grid */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px auto;
  max-width: 1000px;
}
.intro-card {
  background: #f1faee;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.intro-card:hover { transform: translateY(-5px); }
.btn-primary {
  background: #2a9d8f;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

/* 📊 Progress Bars */
.progress-container {
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  width: 250px;
  height: 20px;
  margin: 10px auto;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #2a9d8f, #27ae60);
}

/* 📝 Survey */
iframe {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.survey-container {
  max-width: 420px;
  margin: 30px auto;
  padding: 20px;
  background: #f1faee;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}
.survey-container iframe {
  border-radius: 8px;
  width: 100%;
  height: 500px;
}
/* Text Colors 🌈 */
.survey {
	color: blue;
}
.goals {
	color: green;
}
.ourOpportunity {
	color: tomato;
}
