/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #222;
  
  overflow-x: hidden;

}

/* Header */
.header {
  background-color: #ffffff;
  padding: 15px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  width: 32px;
  height: 32px;
}

.logo {
  width: 100%;
  height: auto;
}

.menu-icon {
  font-size: 26px;
  cursor: pointer;
}

/* About Section */
.about-section {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #f6f9fc;
}

.about-section h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.about-section p {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 30px;
}

.learn-more-btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1652f0;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.learn-more-btn:hover {
  background-color: #0e3bbf;
}

/* Content Section */
.content-section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
}

.content-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.content-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.mission-img {
  width: 100%;
  max-width: 380px;
  height: 250px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.stats-section {
  background-color: #0052ff;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.stat {
  margin-bottom: 40px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
}

.stat-label {
  font-size: 1rem;
  margin-top: 10px;
  opacity: 0.9;
}

.section-img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  margin: 20px auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}



.features-section {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.features-section h1 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.feature-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px 10px;
  margin-bottom: 24px;
  box-shadow: 0 0 px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 0px;
  object-fit: contain;
}

.feature-card h3 {
  margin-bottom: 5px;
  font-size: 20px;
}

.feature-card p {
  font-size: 17px;
  color: #555;
}

.faq-section {
  padding: 60px 20px;
  background-color: #f8f9fb;
}

.faq-section h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: bold;
}

.faq-item {
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px;
  font-size: 16px;
  background-color: white;
  border: 0.5px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: #eef1f5;
}

.faq-answer {
  padding: 15px 18px;
  background-color: #ffffff;
  border: 0.5px solid #ddd;
  border-top: none;
  display: none;
}

/* Base styles */
/* Base Navbar */
.menu-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  color: white;
  font-weight: bold;
}

.menu-toggle {
  font-size: 28px;
  cursor: pointer;
  display: none;
  color: black;
  z-index: 1001;
}

/* Fullscreen dropdown menu (mobile only) */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #2151F2;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

/* Mobile full-screen override */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: 30%;
    background-color: white;
    flex-direction: column;
    justify-content:flex-start;
    align-items:flex-start;
    padding:30px 15px;
    transition: right 0.4s ease-in-out;
    gap: 20px;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
  }
}


.cta-section {
  background-color: #0052ff;
  color: white;
  text-align: center;
  padding: 60px 20px;
  margin: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}



.cta-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cta-section p {
  font-size: 18px;
  color: #dbe6f4;
}

/* Footer */
.site-footer {
  background-color: #0a0a0a;
  color: white;
  padding: 40px 20px;
  margin: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}



.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  width: 30px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-note {
  margin-top: 30px;
  font-size: 12px;
  color: #888;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

