/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ===== NAVBAR ===== */
header {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(90deg, #050ea2, #058f44);
  color: #fff;
  text-align: center;
  padding: 6rem 1rem;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero p {
  margin: 1rem 0;
}
.btn-primary {
  background: #fff;
  color: #5d3fd3;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

/* ===== SERVICES ===== */
.services {
  padding: 4rem 1rem;
  text-align: center;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.card {
  padding: 2rem;
  border-radius: 12px;
  background: #f8f8f8;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.card a {
  color: #5d3fd3;
  text-decoration: none;
  font-weight: bold;
}

/* ===== FUNDAMENTALS ===== */
.fundamentals {
  padding: 3rem 1rem;
  background: #050ea2;
  color: #fff;
  text-align: center;
}
.fundamentals ul {
  list-style: none;
  margin-top: 1rem;
}
.fundamentals li {
  margin: 0.5rem 0;
}

/* ===== NETWORK ===== */
.network {
  padding: 4rem 1rem;
  text-align: center;
}
.stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
}
.stats div {
  text-align: center;
}
.map {
  max-width: 100%;
  margin-top: 2rem;
}

/* ===== QUALITY ===== */
.quality {
  background: #f8f8f8;
  text-align: center;
  padding: 4rem 1rem;
}
.btn-secondary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #5d3fd3;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
}

/* ===== EVENTS ===== */
.events {
  padding: 4rem 1rem;
  text-align: center;
}
.event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.event-card {
  padding: 2rem;
  background: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ===== CONTACT SECTION ===== */
.contact h2{
  padding: 4rem 1rem;
  text-align: center;
}
.contact-section {
  max-width: 1200px;
  margin: auto;
}
.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* ===== CONTACT FORM ===== */
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #5d3fd3;
}
.contact-form p {
  margin-bottom: 1.5rem;
  color: #666;
}
.form-group {
  margin-bottom: 1rem;
}
label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
input, select, textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
textarea {
  resize: none;
}
.radio-group {
  display: flex;
  gap: 1rem;
}
.checkbox label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: normal;
}

/* ===== BUTTON ===== */
.btn-submit {
  background: linear-gradient(90deg, #050ea2, #058f44);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: 0.3s;
}
.btn-submit:hover {
  opacity: 0.9;
}

/* ===== CONTACT INFO ===== */
.contact-info {
  background: #050ea2;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
}
.contact-info h3 {
  margin-bottom: 1rem;
}
.contact-info p, .contact-info a {
  margin-bottom: 1rem;
  display: block;
  color: #fff;
  text-decoration: none;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}

.testimonial img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-content {
  flex: 1;
  min-width: 250px;
}

.testimonial-content p {
  font-style: italic;
  margin: 0 0 10px 0;
}

.testimonial-content h4 {
  margin: 0;
  font-weight: bold;
}


/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 2rem;
  background: #222;
  color: #fff;
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .stats {
    flex-direction: column;
    gap: 1rem;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .contact-info {
    text-align: center;
  }
  .testimonial {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-content {
    text-align: center;
  }
}
