
:root{
  --bg:#f6f8fb;
  --card:#ffffff;
  --primary:#0f766e;
  --primary-light:#14b8a6;
  --dark:#0f172a;
  --muted:#64748b;
  --radius:16px;
  --shadow:0 10px 35px rgba(15,118,110,12);
  --accent:#2563eb;   /* soft blue accent */

}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: Inter, "Segoe UI", Roboto, system-ui, -apple-system, Arial;
   background:var(--bg) ;
  color:var(--dark);
}

/* ===== NAVBAR ===== */
.nav{
  position:sticky;
  top:0;
  z-index:1000;
  background:white;
  border-bottom:1px solid rgba(0,0,0,.05);
}

.nav-inner{
  max-width:1180px;
  margin:auto;
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.logo-box{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-img{
  width:42px;
  height:42px;
  border-radius:25px;
  object-fit:cover;
  border:1px solid #ddd;
}

.logo-text{
  font-size:20px;
  font-weight:800;
  color:var(--primary);
}

.nav-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.nav-links a{
  font-weight:600;
  text-decoration:none;
  color:var(--dark);
  font-size:15px;
}

/* BUTTON */
.btn-primary{
  background:linear-gradient(90deg,var(--primary),var(--primary-light));
  color:white;
  border:none;
  padding:10px 14px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
  white-space:nowrap;

  /* ADDED: CTA emphasis */
  box-shadow:0 6px 20px rgba(20,184,166,.35);
}

/* ===== HERO ===== */
.hero{
  max-width:1180px;
  margin:16px auto 24px;
  padding:56px 28px;
  border-radius:22px;
  background:
    linear-gradient(135deg, rgba(15,118,110,.70), rgba(20,184,166,.70)),
    url("pexels-georgemorina-4960341.jpg" )center/cover no-repeat;
  color:white;
}

/* ===== COMMON SECTION ===== */
.section{
  max-width:1180px;
  margin:32px auto;
  padding:0 14px;
}

.section h2{color:var(--dark);}

/* ===== GRIDS ===== */
.stuck-grid,
.mentorship-grid,

.testimonials{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
}

/* Cards */
.stuck-card,
.ms-card
{
  background:white;
  padding:16px;
  border-radius:16px;
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  gap:12px;

}
/* ===== TESTIMONIAL STARS (FIXED SIZE & COLOR) ===== */
/* ===== STAR HOVER ANIMATION ===== */
/* Icons */
.stuck-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  background:#e6fffa;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  color:#0f766e;
}

/* Mentor image */
.mentor-img{
  width:90px;
  height:90px;
  border-radius:50%;
  object-fit:cover;
  margin:auto;
  border:3px solid var(--primary-light);
}

/* ===== FOOTER ===== */
footer{
  background:var(--dark);
  color:white;
  padding:36px 14px;
}

.footer-grid{
  max-width:1180px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}

.social-row{
  display:flex;
  gap:12px;
}

.social-row a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#065f46;
  border-radius:50%;
  color:white;
  font-size:18px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .nav-inner{
    justify-content:center;
    text-align:center;
    gap:10px;
  }

  .nav-links{
    justify-content:center;
  }

  .btn-primary{
    padding:8px 10px;
    font-size:12px;
     box-shadow:0 8px 24px rgba(15,118,110,.25);
  }

  .hero{
    padding:40px 16px;
    border-radius:18px;
  }

  .hero h1{
    font-size:22px;
  }
}
/* ===== SINGLE STUCK CARD ===== */
/* ===== SINGLE GROUPED CARD (Reusable) ===== */
.group-card{
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px;
  margin-top: 20px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Inner row items */
.group-item{
  display: flex;
  align-items: center;
  gap: 14px;
}

.group-item h3{
  margin: 0;
  font-size: 16px;
  color: var(--dark);
}

.group-item p{
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.group-item:hover{
  transform: translateY(-2px);
}

/* Mobile */
@media(max-width:768px){
  .group-card{
    grid-template-columns: 1fr;
    padding: 20px;
  }
}

/* ===== WHATSAPP STYLE TESTIMONIALS ===== */

/* ===== WHATSAPP STYLE TESTIMONIALS ===== */
.testimonials.whatsapp{
  display:flex;
  flex-direction:column;
  gap:18px;
  max-width:720px;
  margin:auto;
}

.chat{
  max-width:80%;
  padding:14px 16px;
  border-radius:18px;
  font-size:15px;
  line-height:1.5;
  box-shadow:var(--shadow);
  position:relative;
}

.chat.left{
  background:#ffffff;
  align-self:flex-start;
  border-bottom-left-radius:6px;
}

.chat.right{
  background:#dcf8c6;
  align-self:flex-end;
  border-bottom-right-radius:6px;
}

/* Name + time row */
.chat .meta{
  display:flex;
  justify-content:space-between;
  margin-top:6px;
  font-size:12px;
  color:var(--muted);
}

/* ===== TYPING INDICATOR ===== */
.chat.typing{
  background:#ffffff;
  width:60px;
  padding:10px 12px;
  display:flex;
  gap:4px;
  align-items:center;
  transition: opacity .4s ease, height .4s ease, margin .4s ease, padding .4s ease;
}

.chat.typing span{
  width:6px;
  height:6px;
  background:#94a3b8;
  border-radius:50%;
  animation:typing 1.4s infinite ease-in-out;
}

.chat.typing span:nth-child(2){ animation-delay:.2s }
.chat.typing span:nth-child(3){ animation-delay:.4s }

@keyframes typing{
  0%{ opacity:.2 }
  20%{ opacity:1 }
  100%{ opacity:.2 }
}
/* ===== WHATSAPP DATE SEPARATOR ===== */
.chat-date{
  align-self:center;
  background:#e5ddd5;
  color:#475569;
  font-size:12px;
  padding:6px 12px;
  border-radius:12px;
  margin:6px 0 14px;
}
/* ===== FEEDBACK FORM ===== */
.feedback-form{
  max-width:520px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea{
  padding:12px 14px;
  border-radius:12px;
  border:1px solid #e5e7eb;
  font-family:inherit;
  font-size:14px;
}

.feedback-form textarea{
  resize:vertical;
}

.feedback-form button{
  align-self:center;
}
