<style>
  * { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: 'Arial', sans-serif !important; 
}

body { 
  background-color: #0f172a; 
  color: #fff; 
  line-height: 1.6; 
}

header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 20px 10%; 
  background: #0f172a; 
  position: sticky; 
  top: 0; 
  z-index: 100; 
}

/* Mobile menu toggle (hamburger) */
.menu-toggle {
  display: none; /* shown on small screens via media query */
  background: transparent;
  border: 2px solid #f87171;
  color: #fff;
  width: 42px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle:focus { outline: 3px solid rgba(248,113,113,0.2); }
.menu-toggle .bar { display: block; width: 18px; height: 2px; background: #fff; margin: 3px 0; transition: transform 0.25s ease, opacity 0.25s ease; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #f87171;
}

.mini-img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}

header h1 { 
  font-size: 20px; 
  font-weight: 600; 
  margin: 0;
}

nav ul { 
  display: flex; 
  list-style: none; 
  gap: 30px; 
}

nav ul li a { 
  color: #fff; 
  text-decoration: none; 
  transition: 0.3s; 
}

nav ul li a:hover { 
  color: #f87171; 
}

/* Hero */
.hero { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 60px 10%; 
  flex-wrap: wrap; 
}

.hero-text { 
  max-width: 500px; 
}

.hero-text h2 { 
  font-size: 2rem; 
  margin-right: 25rem;
  color: #f87171; 
}

.hero-text h1 { 
  font-size: 3rem; 
  margin: 10px 0; 
}

.hero-text p { 
  margin: 10px 0 20px; 
}

.hero-text .btn { 
  display: inline-block; 
  padding: 10px 20px; 
  margin-right: 10px; 
  border: 2px solid #f87171; 
  color: #fff; 
  background: transparent; 
  border-radius: 8px; 
  cursor: pointer; 
  transition: 0.3s; 
}

.hero-text .btn:hover { 
  background: #f87171; 
}

.hero img { 
  width: 300px; 
  height: 380px; 
}

/* Section Titles */
section { 
  padding: 60px 10%; 
}

section h2 { 
  font-size: 2rem; 
  margin-bottom: 20px; 
  text-align: center; 
}

/* About */
.about { 
  text-align: center; 
}

.about p { 
  max-width: 700px; 
  margin: auto; 
  margin-bottom: 20px; 
}

.about .more-btn { 
  display: inline-block; 
  padding: 10px 20px; 
  border: 2px solid #f87171; 
  color: #fff; 
  background: transparent; 
  border-radius: 8px; 
  cursor: pointer; 
  transition: 0.3s; 
  text-decoration: none; 
  margin-top: 20px; 
}

.about .more-btn:hover { 
  background: #f87171; 
}

.stats { 
  display: flex; 
  gap: 40px; 
  justify-content: center; 
  margin-top: 20px; 
  flex-wrap: wrap; 
}

.stats div { 
  text-align: center; 
}

.stats div h3 { 
  font-size: 2rem; 
  color: #f87171; 
}

/* Image Gallery */
.gallery { 
  text-align: center; 
}

.gallery-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 20px; 
  margin-top: 40px; 
}

.gallery-grid img { 
  width: 100%; 
  height: 200px; 
  object-fit: cover; 
  border-radius: 12px; 
  transition: 0.3s; 
  background: #1e293b; 
}

.gallery-grid img:hover { 
  transform: scale(1.05); 
  box-shadow: 0 4px 20px rgba(248, 113, 113, 0.3); 
}

/* Vision */
.vision { 
  display: flex; 
  gap: 40px; 
  flex-wrap: wrap; 
  text-align: center; 
}

.vision div { 
  flex: 1; 
  background: #1e293b; 
  padding: 20px; 
  border-radius: 12px; 
}

.vision h3 { 
  margin-bottom: 10px; 
  color: #f87171; 
}

/* Membership */
.membership { 
  display: flex; 
  gap: 40px; 
  flex-wrap: wrap; 
  text-align: center; 
}

.membership div { 
  flex: 1; 
  background: #1e293b; 
  padding: 20px; 
  border-radius: 12px; 
}

.membership h3 { 
  margin-bottom: 10px; 
  color: #f87171; 
}

/* Achievements */
.achievements { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 20px; 
}

.achievement { 
  background: #1e293b; 
  padding: 20px; 
  border-radius: 12px; 
}

.achievement h3 { 
  margin-bottom: 10px; 
  color: #f87171; 
}

/* Events */
.events { 
  display: flex; 
  flex-direction: column; 
  gap: 15px; 
  max-width: 700px; 
  margin: auto; 
}

.event { 
  background: #1e293b; 
  padding: 15px; 
  border-radius: 8px; 
}

.event span { 
  color: #f87171; 
  font-weight: bold; 
}

/* Contact */
.contact { 
  text-align: center; 
}

.contact form { 
  max-width: 500px; 
  margin: auto; 
  display: flex; 
  flex-direction: column; 
  gap: 15px; 
}

.contact input, 
.contact textarea { 
  padding: 10px; 
  border: none; 
  border-radius: 8px; 
  background: #1e293b; 
  color: #fff; 
}

.contact input::placeholder, 
.contact textarea::placeholder { 
  color: #94a3b8; 
}

.contact button { 
  padding: 10px; 
  border: none; 
  background: #f87171; 
  color: #fff; 
  border-radius: 8px; 
  cursor: pointer; 
}

.contact button:hover { 
  background: #ef4444; 
}

/* Footer - Updated to match dark theme */
.footer {
  background: #1e293b;
  color: #e2e8f0;
  padding: 60px 40px 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
}

.footer-section {
  flex: 1 1 280px;
  max-width: 320px;
  color: #cbd5e1;
}

.footer-logo {
  font-family: 'Georgia', serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #f87171;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.footer-description {
  line-height: 1.56;
  font-size: 15px;
  margin-bottom: 35px;
  color: #94a3b8;
}

.footer-bottom{
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  display: inline-flex;
  background-color: #334155;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-size: 18px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 8px rgba(248, 113, 113, 0.2);
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #f87171;
  box-shadow: 0 0 16px rgba(248, 113, 113, 0.4);
}

.footer-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 18px;
  border-bottom: 3px solid #f87171;
  padding-bottom: 6px;
  color: #f1f5f9;
}

.footer-links, 
.footer-downloads {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li,
.footer-downloads li {
  margin-bottom: 13px;
}

.footer-links a,
.footer-downloads a {
  position: relative;
  color: #cbd5e1;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  padding-left: 18px;
  display: inline-block;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-links a::before,
.footer-downloads a::before {
  content: "»";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 700;
  color: #f87171;
  transition: color 0.3s ease;
}

/* Inline red underline hover effect */
.footer-links a:hover,
.footer-downloads a:hover {
  color: #f87171;
}

.footer-links a:hover::after,
.footer-downloads a:hover::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #f87171;
  border-radius: 2px;
  transform-origin: left;
  animation: underlineGrow 0.25s forwards;
}

.footer-links a::after,
.footer-downloads a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #f87171;
  border-radius: 2px;
  transition: width 0.3s ease;
  pointer-events: none;
}

@keyframes underlineGrow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  /* Show hamburger and hide regular inline menu */
  .menu-toggle { display: inline-flex; }
  nav ul { display: none; }

  /* When nav has the .open class the menu becomes visible as a stacked panel */
  nav.open ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #0f172a;
    padding: 16px;
    margin-top: 12px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(2,6,23,0.6);
  }

  /* Make nav appear over content and full width inside padding area */
  header { align-items: flex-start; }
  
  .hero { 
    flex-direction: column; 
    text-align: center; 
  }
  .hero-text h2{
    margin: 0;
  }
  
  .stats { 
    flex-direction: column; 
    align-items: center; 
  }
  
  .vision { 
    flex-direction: column; 
  }

  .gallery-grid { 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 10px; 
  }

  .header-left {
    gap: 8px;
  }

  .mini-img {
    width: 35px;
    height: 35px;
  }

  header h1 {
    font-size: 18px;
  }
}
</style>