body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #e5e7eb;
  background: #020617;
}

/* ========== HEADER ========== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1e293b;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #f97316;
  letter-spacing: 0.04em;
}

/* NAV */
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #e5e7eb;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav a:hover {
  background: #1e293b;
}

/* CTA BUTTON */
.nav-btn {
  background: #f97316;
  color: #020617 !important;
}

.nav-btn:hover {
  background: #fb923c;
}


/* SECTIONS */
section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #f97316;
}

p {
  text-align: center;
  color: #94a3b8;
}

/* CARDS */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
}

.apply-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.4rem;
  background: #f97316;
  color: #020617;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

/* FOUNDERS */
.founder-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* CONTACT */
.contact-form {
  max-width: 700px;
  margin: auto;
  background: #020617;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid #1e293b;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.2rem;
  border-radius: 10px;
  background: #020617;
  border: 1px solid #1e293b;
  color: #fff;
}

.contact-form button {
  width: 100%;
  padding: 1rem;
  background: #f97316;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.thankyou {
  display: none;
  text-align: center;
  margin-top: 2rem;
  color: #22c55e;
}

/* FOOTER SOCIAL BUTTONS */
.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.social-btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-btn:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

/* Platform Colors */
.wa {
  background: #22c55e;
  color: #020617;
}

.ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}

.li {
  background: #2563eb;
  color: #fff;
}

/* FOOTER CENTER ALIGN */
footer {
  border-top: 1px solid #1e293b;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-title {
  color: #f97316;
  font-size: 2rem;
  margin-bottom: 0.4rem;
  text-align: center;
}

.footer-tagline {
  text-align: center;
  color: #94a3b8;
}

#events .service-card {
  border-left: 4px solid #f97316;
}
/* FOUNDER SOCIAL – SAME AS FOOTER BUTTONS */
.founder-social {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.founder-social .social-btn {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.founder-social .social-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* FOUNDERS */
.founder-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.founder-role {
  display: block;
  font-size: 0.9rem;
  color: #f97316;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.founder-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.founder-social a {
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.founder-social .li {
  background: #2563eb;
  color: #fff;
}

.founder-social .ig {
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

  /* GENERAL */
  body {
    font-size: 15px;
  }

  section {
    padding: 3rem 1.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* HEADER */
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  nav a {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  /* CARDS STACK */
  .services {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .service-card {
    padding: 1.8rem 1.4rem;
  }

  /* APPLY BUTTON */
  .apply-btn {
    font-size: 0.85rem;
    padding: 0.5rem 1.2rem;
  }

  /* FOUNDERS */
  .founder-card img {
    width: 95px;
    height: 95px;
  }

  .founder-card h3 {
    font-size: 1.25rem;
  }

  .founder-role {
    font-size: 0.8rem;
  }

  .founder-card p {
    font-size: 0.9rem;
  }

  /* FOUNDER SOCIAL ICONS */
  .founder-social {
    justify-content: center;
    gap: 0.7rem;
  }

  .founder-social a {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* CONTACT FORM */
  .contact-form {
    padding: 2rem 1.4rem;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
  }

  /* FOOTER */
  footer {
    padding: 2.5rem 1.2rem;
  }

  .footer-title {
    font-size: 1.6rem;
  }

  .footer-social {
    flex-direction: column;
    gap: 0.7rem;
  }

  .social-btn {
    justify-content: center;
    width: 100%;
    max-width: 240px;
    margin: auto;
    font-size: 0.85rem;
  }
}
/* ====== Mobile view tweaks ====== */
@media (max-width: 768px) {

  /* Slightly tighter section padding on phones */
  section {
    padding: 3.5rem 1.2rem;
  }

  /* Stack all cards one per row */
  .services {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Founder card adjustments */
  .founder-card {
    padding: 2rem 1.5rem;
  }

  .founder-card img {
    width: 100px;
    height: 100px;
  }

  .founder-card h3 {
    font-size: 1.3rem;
  }

  .founder-role {
    font-size: 0.85rem;
  }

  .founder-card p {
    font-size: 0.95rem;
  }

  /* Social buttons size & spacing */
  .founder-social {
    gap: 0.8rem;
  }

  .founder-social a {
    font-size: 0.8rem;
    padding: 0.4rem 0.9rem;
  }
}

/* ========== PERFECT MOBILE BUTTONS ========== */
@media (max-width: 768px) {

  /* ALL BUTTONS – TOUCH FRIENDLY */
  a,
  button {
    -webkit-tap-highlight-color: transparent;
  }

  /* APPLY BUTTONS (Courses & Events) */
  .apply-btn {
    width: 100%;
    max-width: 260px;
    margin: 1rem auto 0;
    padding: 0.75rem 1.2rem;
    font-size: 0.9rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* FOUNDER SOCIAL BUTTONS */
  .founder-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
  }

  .founder-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* FOOTER SOCIAL BUTTONS */
  .footer-social {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-social .social-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.75rem 1.2rem;
  }

  /* CONTACT FORM BUTTON */
  .contact-form button {
    font-size: 1rem;
    padding: 0.9rem;
    border-radius: 14px;
  }
}
/* ===== FIX CONTACT FORM MOBILE OVERFLOW ===== */
@media (max-width: 768px) {

  #contact {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
    padding: 1.8rem 1.4rem;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    width: 100%;
    box-sizing: border-box;
    font-size: 0.95rem;
  }

  .contact-form textarea {
    resize: none;
  }
}
@media (max-width: 768px) {

  .founder-social {
    flex-direction: column;
    align-items: center;
  }

  .founder-social .social-btn {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }
}
/* ========== MOBILE HEADER ========== */
@media (max-width: 768px) {

  .header-container {
    flex-direction: column;
    gap: 0.8rem;
  }

  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
  }

  .nav a {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ========== FREELANCE SECTION ========== */

#freelance {
  text-align: center;
}

#freelance h2 {
  color: #f97316;
}

#freelance p {
  max-width: 700px;
  margin: 0.8rem auto 2.5rem;
  color: #94a3b8;
}

#freelance .service-card h3 {
  color: #e5e7eb;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

#freelance .service-card p {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
/* FREELANCE LIST STYLE */
.freelance-list {
  text-align: left;
  margin: 1.2rem 0;
  padding-left: 1.2rem;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.6;
}

.freelance-list li {
  margin-bottom: 0.4rem;
}
