* { margin:0; padding:0; box-sizing:border-box; }

html, body {
  width:100%;
  overflow-x:hidden;
}

body {
  font-family: 'Utendo', sans-serif;
  color:#0a1f1a;
  background:#fff;
}

.container {
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* NAV */
/* .nav {
  background:#fff;
  border-bottom:1px solid #eee;
}
.nav-flex {
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:72px;
}
.logo { font-weight:700; color:#0aa57a; }
nav a { margin:0 12px; font-size:14px; }
.hub-btn {
  background:#0aa57a; border:none; color:#fff;
  padding:8px 20px; border-radius:20px;
} */

/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #121622;
  border-bottom: 1px solid #333;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  height: 80px;
}

.logo img {
  width: 300px;
  height: 75px;
  object-fit: contain;
  border-radius: 8px;
  padding: 6px;
}

.tagline {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 10px;
  /* font-family: 'Dancing Script', cursive; */
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #0aa57a;
  left: 0;
  bottom: -6px;
  transition: .3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA BUTTON */
.nav-btn {
  background: #0aa57a;
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
}

/* MOBILE */
@media (max-width: 900px) {
  .nav-flex {
    justify-content: space-between;
  }

  nav {
    display: none;
  }

  .logo img {
    width: 200px;
    height: 60px;
    padding: 4px;
    object-fit: fill;
  }

  .tagline {
    font-size: 9px;
  }

  .nav-btn {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 20px;
  }
}


/* HERO */
.hero {
  position:relative;
  background-image: url('assets/images/HERO.jpeg');
  background-size: cover;
  background-position: center;
  color:#fff;
  padding:120px 0;
  overflow:hidden;
}
#chartLines {
  position:absolute; inset:0;
  opacity:.25;
}
.hero-grid {
  position:relative;
  display:grid;
  grid-template-columns:1.1fr .7fr;
  gap:60px;
}
.badge { font-weight:600; opacity:.8; }
.hero-text h1 { font-size:54px; line-height:1.1; }
.sub { font-size:18px; max-width:520px; }
.hero-stats {
  display:flex; gap:16px; margin:24px 0;
}
.chip {
  background:rgba(255,255,255,.15);
  padding:16px 20px;
  border-radius:16px;
  display:flex;
  flex-direction:column;
  font-size:13px;
}
.whatsapp {
  background:#25d366; color:#fff;
  padding:12px 24px;
  border:none; border-radius:30px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  transition:background-color 0.3s ease;
}
.whatsapp:hover {
  background:#128c7e;
}

/* FORM */
.hero-form {
  background:#fff;
  padding:36px;
  border-radius:16px;
  color:#000;
}
.hero-form input {
  width:100%; padding:12px;
  margin-bottom:12px;
  border:1px solid #ddd;
}
.hero-form button {
  width:100%;
  background:#0aa57a;
  color:#fff;
  padding:14px;
  border:none;
  border-radius:30px;
}

/* MENTORS */
.mentors { margin:80px auto; text-align:center; }
.mentors img { width:70%; }

/* AS SEEN */
.as-seen {
  background:#faf7f2;
  padding:60px 0;
  text-align:center;
}
.logos { display:flex; gap:60px; justify-content:center; }

/* OBSTACLES */
.obstacles {
  position:relative;
  background:#020d0a;
  color:#fff;
  padding:200px 20px 180px;
  text-align:center;
  min-height:600px;
}
.obstacles h2 {
  font-size:42px;
  font-weight:600;
  margin-bottom:20px;
  color:#0aa57a;
}
.obstacles .subtitle {
  font-size:18px;
  opacity:.9;
  margin-bottom:80px;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.6;
}
#chaosLines {
  position:absolute;
  inset:0;
  opacity:.7;
  z-index:1;
}
.labels {
  position:relative;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:60px;
  margin-top:120px;
  font-size:16px;
  z-index:2;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}
.labels span {
  background:none;
  padding:0;
  border:none;
  border-radius:0;
  transition:none;
  font-weight:500;
  line-height:1.5;
  text-align:center;
  max-width:280px;
  opacity:0;
  transform:translateY(30px);
  animation:fadeInUp 0.8s ease forwards;
}
.labels span:nth-child(1) { animation-delay:0.2s; }
.labels span:nth-child(2) { animation-delay:0.4s; }
.labels span:nth-child(3) { animation-delay:0.6s; }
.labels span:nth-child(4) { animation-delay:0.8s; }
.labels span:nth-child(5) { animation-delay:1.0s; }
.labels span:nth-child(6) { animation-delay:1.2s; }
.labels span strong {
  color:#0aa57a;
  font-size:20px;
  display:block;
  margin-bottom:12px;
  text-shadow:0 0 20px rgba(10,165,122,0.5);
}
.labels span small {
  color:#fff;
  opacity:0.9;
  font-size:15px;
  line-height:1.4;
  display:block;
}

@keyframes fadeInUp {
  to {
    opacity:1;
    transform:translateY(0);
  }
}


/* TRANSFORM */
.transform {
  background:#fbf8f3;
  padding:100px 20%;
  text-align:center;
}
.transform h2 { font-size:36px; }

/* OVERVIEW */
.overview {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  margin:120px auto;
}
.overview h3 { color:#0aa57a; margin-top:30px; }

.visual {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
}

.visual img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.visual img:hover {
  transform: scale(1.02);
}

/* Mobile responsiveness for overview */
@media (max-width: 768px) {
  .overview {
    grid-template-columns: 1fr;
    gap: 40px;
    margin: 80px auto;
  }

  .visual {
    order: -1; /* Move image above text on mobile */
    margin-bottom: 20px;
  }

  .visual img {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .visual img {
    max-width: 100%;
    border-radius: 12px;
  }

  .overview {
    margin: 60px auto;
    gap: 30px;
  }
}

/* FOOTER */
.footer {
  background:#020d0a;
  color:#aaa;
  text-align:center;
  padding:40px;
  font-size:14px;
}

/* ANIMATIONS */
.fade-in { opacity:0; transform:translateY(30px); }
.slide-up { opacity:0; transform:translateY(60px); }

.show {
  opacity:1; transform:none;
  transition:1s ease;
}

/* MOBILE */
@media(max-width:900px){
  .hero-grid, .overview { grid-template-columns:1fr; }
  nav { display:none; }
  .obstacles { padding:150px 20px 120px; min-height:500px; }
  .obstacles h2 { font-size:32px; }
  .obstacles .subtitle { font-size:16px; margin-bottom:60px; }
  .labels { gap:40px; margin-top:80px; flex-direction:column; align-items:center; }
  .labels span { max-width:100%; text-align:center; }
  .labels span strong { font-size:18px; }
  .labels span small { font-size:14px; }
}
/* JOURNEY SECTION */
.journey {
  padding:120px 0;
  background:#ffffff;
}

.journey-grid {
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:80px;
  align-items:center;
}

.journey-text h2 {
  font-size:42px;
  line-height:1.2;
  margin-bottom:20px;
}

.journey-text p {
  font-size:17px;
  line-height:1.7;
  opacity:.85;
  max-width:520px;
}

.journey-list {
  margin:30px 0;
  list-style:none;
}

.journey-list li {
  margin-bottom:12px;
  font-size:15px;
}

.journey-btn {
  background:#0aa57a;
  color:#fff;
  padding:14px 28px;
  border:none;
  border-radius:30px;
  font-size:15px;
  cursor:pointer;
}

/* STEPS */
.journey-steps {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.step {
  background:#f7f9f8;
  padding:28px;
  border-radius:18px;
}

.step span {
  font-size:28px;
  font-weight:700;
  color:#0aa57a;
}

.step h4 {
  margin:12px 0 8px;
}

.step p {
  font-size:14px;
  opacity:.8;
}

/* MOBILE */
@media(max-width:900px){
  .journey-grid {
    grid-template-columns:1fr;
  }
}


/* MENTORS */
.mentors {
  padding:120px 0;
  background:#f8f9f9;
}

.section-head {
  max-width:640px;
  margin-bottom:60px;
}

.section-head h2 {
  font-size:42px;
  margin-bottom:16px;
}

.section-head p {
  font-size:16px;
  opacity:.85;
}

.mentors-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.mentor-card {
  background:#fff;
  padding:30px;
  border-radius:22px;
  box-shadow:0 30px 60px rgba(0,0,0,.05);
}

.mentor-img {
  height:160px;
  border-radius:16px;
  background:linear-gradient(135deg,#0aa57a,#095);
  margin-bottom:20px;
}

.mentor-card h4 {
  margin-bottom:10px;
}

.mentor-card p {
  font-size:14px;
  line-height:1.6;
  opacity:.85;
}

@media(max-width:900px){
  .mentors-grid {
    grid-template-columns:1fr;
  }
}


/* NO MORE GUESSING */
.no-guessing {
  padding:120px 0;
  background:#fff;
}

.no-guessing-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.guessing-text h2 {
  font-size:42px;
  margin-bottom:16px;
}

.guessing-text p {
  max-width:520px;
  font-size:16px;
  line-height:1.7;
  opacity:.85;
}

.guessing-list {
  list-style:none;
  margin:30px 0;
}

.guessing-list li {
  margin-bottom:12px;
  font-size:15px;
}

/* VISUAL */
.guessing-visual {
  position:relative;
  height:320px;
}

.chaos {
  position:absolute;
  inset:0;
  border-radius:24px;
  background:
    repeating-linear-gradient(
      45deg,
      #ccc,
      #ccc 10px,
      transparent 10px,
      transparent 20px
    );
  opacity:.15;
}

.clarity {
  position:absolute;
  inset:50px;
  border-radius:18px;
  background:linear-gradient(135deg,#0aa57a,#0c6);
}

/* MOBILE */
@media(max-width:900px){
  .no-guessing-grid {
    grid-template-columns:1fr;
  }
}

/* TESTIMONIALS & STATS */
.testimonials {
  padding:120px 0;
  background:#f8f9f9;
}

.testimonials-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  margin-bottom:80px;
}

.testimonial-card {
  background:#fff;
  padding:36px;
  border-radius:22px;
  box-shadow:0 30px 60px rgba(0,0,0,.05);
}

.trustpilot {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
}

.stars {
  color:#00b67a;
  font-size:18px;
}

.trustpilot span {
  font-size:14px;
  color:#666;
  font-weight:500;
}

.testimonial-text {
  font-size:15px;
  line-height:1.6;
  margin-bottom:24px;
  font-style:italic;
}

.testimonial-author strong {
  display:block;
  font-weight:600;
  margin-bottom:4px;
}

.testimonial-author span {
  font-size:13px;
  color:#666;
}

/* STATS SECTION */
.stats-section {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:40px;
  text-align:center;
}

.stat-item {
  padding:40px 20px;
  background:#fff;
  border-radius:20px;
  box-shadow:0 20px 40px rgba(0,0,0,.03);
}

.stat-number {
  font-size:36px;
  font-weight:700;
  color:#0aa57a;
  margin-bottom:8px;
}

.stat-label {
  font-size:14px;
  color:#666;
  font-weight:500;
}

@media(max-width:900px){
  .testimonials-grid {
    grid-template-columns:1fr;
  }
  .stats-section {
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }
}

/* SERVICES */

.services {
  padding:120px 0;
  background:#ffffff;
}

.services-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:40px;
  max-width:1200px;
  margin:0 auto;
}

.service-card {
  padding:36px;
  border-radius:22px;
  background:#f8f9f9;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(10, 165, 122, 0.15);
}

.service-card.featured {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9f7 100%);
  border: 2px solid #0aa57a;
  box-shadow: 0 10px 30px rgba(10, 165, 122, 0.1);
}

.service-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 165, 122, 0.2);
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #0aa57a, #095);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.service-highlight span {
  background: rgba(10, 165, 122, 0.1);
  color: #0aa57a;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
}

.service-card h4 {
  margin-bottom:12px;
}

.service-card p {
  font-size:14px;
  line-height:1.6;
  opacity:.85;
}

@media(max-width:900px){
  .services-grid {
    grid-template-columns:1fr;
  }
}


/* VISION & MISSION */
.vision {
  padding:120px 0;
  background: linear-gradient(135deg, #f8f9f9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(10, 165, 122, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(10, 165, 122, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.vision .section-head {
  text-align: center;
  margin-bottom: 80px;
}

.vision .section-head h2 {
  font-size: 42px;
  background: linear-gradient(135deg, #0aa57a, #095);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.vision-box {
  background: linear-gradient(145deg, #ffffff 0%, #f8f9f9 100%);
  padding: 50px;
  border-radius: 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08),
              0 8px 32px rgba(10, 165, 122, 0.06);
  border: 1px solid rgba(10, 165, 122, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.vision-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0aa57a, #095);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.vision-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12),
              0 12px 40px rgba(10, 165, 122, 0.1);
}

.vision-box:hover::before {
  opacity: 1;
}

.vision-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0aa57a, #095);
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(10, 165, 122, 0.3);
}

.vision-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  position: relative;
}

.vision-box p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 24px;
}

.vision-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.vision-highlight span {
  background: linear-gradient(135deg, #0aa57a, #095);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(10, 165, 122, 0.2);
  transition: transform 0.3s ease;
}

.vision-highlight span:hover {
  transform: scale(1.05);
}

@media(max-width:900px){
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vision-box {
    padding: 40px;
  }

  .vision .section-head h2 {
    font-size: 32px;
  }

  .vision-icon {
    width: 70px;
    height: 70px;
  }

  .vision-box h3 {
    font-size: 24px;
  }
}

/* CONTACT US */

.contact {
  padding:120px 0;
  background:#0a0a0a;
  color:#ffffff;
}

.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.contact-text p {
  margin:20px 0;
  opacity:.8;
}

.contact-info {
  list-style:none;
  margin-top:30px;
}

.contact-info li {
  margin-bottom:12px;
  font-size:15px;
  line-height: 1.5;
}

.contact-info strong {
  color: #0aa57a;
  font-weight: 600;
}

.map-container {
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 12px;
}

.contact-form input,
.contact-form textarea {
  width:100%;
  padding:14px;
  margin-bottom:14px;
  border:none;
  border-radius:12px;
}

.contact-form button {
  padding:14px;
  border:none;
  border-radius:14px;
  background:#0aa57a;
  color:#fff;
  cursor:pointer;
}

@media(max-width:900px){
  .contact-grid {
    grid-template-columns:1fr;
  }
}




/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
