/* Global Styles */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: 'Poppins', sans-serif; background:#f9f9f9; color:#333; scroll-behavior: smooth; }

/* Header */
header { background:linear-gradient(135deg,#2563eb,#1e3a8a); color:#fff; padding:40px 20px; text-align:center; }
header h1 { font-size:3rem; margin-bottom:10px; }
.tutor { font-style:italic; margin-top:10px; color:#facc15; }

/* Navbar */
nav { background:#1e40af; padding:12px; text-align:center; position:sticky; top:0; z-index:10; }
nav a { color:#fff; margin:0 15px; text-decoration:none; font-weight:600; transition:0.3s; }
nav a:hover { color:#facc15; }

/* Hero */
.hero { text-align:center; padding:80px 20px; background:#e0f2fe; animation: fadeIn 2s ease-in-out; }
.hero h1 { font-size:2.8rem; margin-bottom:15px; }
.btn { display:inline-block; background:#2563eb; color:#fff; padding:14px 28px; border-radius:8px; text-decoration:none; margin-top:15px; transition:0.3s; }
.btn:hover { background:#1e40af; transform:scale(1.05); }

/* Sections */
.section { padding:60px 20px; text-align:center; }
.section h2 { font-size:2rem; margin-bottom:20px; color:#2563eb; }
.card { background:#fff; padding:25px; border-radius:12px; box-shadow:0 4px 10px rgba(0,0,0,0.1); margin:20px auto; max-width:600px; transition:0.4s; }
.card:hover { transform:scale(1.05); }
.bg-light { background:#f1f5f9; }

/* Features */
.features { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; margin-top:20px; }
.feature-card { background:#fff; padding:20px; border-radius:10px; box-shadow:0 2px 6px rgba(0,0,0,0.1); font-weight:600; }

/* Testimonials */
.testimonials { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; margin-top:20px; }
.testimonial-card { background:#fff; padding:20px; border-radius:10px; box-shadow:0 2px 8px rgba(0,0,0,0.1); max-width:300px; font-style:italic; }

/* Footer */
footer { background:#1e40af; color:#fff; text-align:center; padding:15px; margin-top:20px; }

/* Floating Enroll Button */
.floating-btn { position:fixed; bottom:20px; right:20px; background:#facc15; color:#000; padding:14px 22px; border-radius:30px; font-weight:bold; text-decoration:none; box-shadow:0 4px 8px rgba(0,0,0,0.2); transition:0.3s; }
.floating-btn:hover { background:#fbbf24; transform:scale(1.1); }

/* Animations */
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
.animate-fade { animation:fadeIn 1.5s ease-in-out; }
.animate-fade-delay { animation:fadeIn 2s ease-in-out; }
.animate-slide { animation:slideIn 1.5s ease-in-out; }
.animate-slide-delay { animation:slideIn 2.5s ease-in-out; }
.animate-zoom { animation:zoomIn 1.5s ease-in-out; }

@keyframes slideIn { from{transform:translateY(50px);opacity:0;} to{transform:translateY(0);opacity:1;} }
@keyframes zoomIn { from{transform:scale(0.8);opacity:0;} to{transform:scale(1);opacity:1;} }


/* Dark Mode */
body.dark { background:#0b1120; color:#e5e5e5; }
body.dark header { background:linear-gradient(135deg,#1e293b,#0f172a); color:#fff; }
body.dark nav { background:#0f172a; }
body.dark nav a { color:#f9fafb; }
body.dark .hero { background:#1e293b; color:#fff; }
body.dark .section { background:#0b1120; }
body.dark .bg-light { background:#1e293b; }
body.dark .card,
body.dark .feature-card,
body.dark .testimonial-card { background:#1e293b; color:#e5e5e5; box-shadow:0 4px 12px rgba(0,0,0,0.4); }
body.dark footer { background:#0f172a; }

/* Toggle Button */
.toggle-btn {
  margin-top:15px;
  padding:8px 18px;
  border:none;
  border-radius:20px;
  cursor:pointer;
  font-weight:600;
  background:#facc15;
  color:#000;
  transition:0.3s;
}
.toggle-btn:hover { background:#fbbf24; }

#offer h3 {
  color: #dc2626;
  font-size: 1.5rem;
}

#countdown {
  font-weight: bold;
  color: #2563eb;
  font-size: 1.2rem;
}

.btn-enroll {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #ff512f, #dd2476);
  color: #fff;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: bold;
}

.btn-enroll:hover {
  background: linear-gradient(45deg, #dd2476, #ff512f);
  transform: scale(1.05);
}


/* ==============>> Road map css =================== */

/* Roadmap Section */
/* Roadmap Section */
.roadmap {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
  transition: 0.3s;
}

body.dark .roadmap {
  background: #0b1120;
}

.roadmap h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
  transition: 0.3s;
}

body.dark .roadmap h2 {
  color: #f1f1f1;
}

/* Timeline wrapper */
.timeline {
  position: relative;
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 4px;
  background: #4CAF50;
  transform: translateX(-50%);
}

/* Each Step */
.step {
  background: #ffffff;
  color: #333;
  padding: 20px;
  border-radius: 12px;
  width: 45%;
  position: relative;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  animation: fadeUp 1s ease forwards;
  opacity: 0;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

body.dark .step {
  background: #1e293b;
  color: #e5e5e5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Left/Right alternate placement */
.step:nth-child(odd) {
  left: 0;
}
.step:nth-child(even) {
  left: 55%;
}

/* Connecting circles */
.step::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #39d780;
  border: 3px solid #f9f9f9;
  z-index: 1;
  transition: border 0.3s;
}

body.dark .step::before {
  border: 3px solid #0b1120;
}

.step:nth-child(odd)::before {
  right: -30px;
}
.step:nth-child(even)::before {
  left: -30px;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.step i {
  color: #e91e63;  /* pink */
  margin-right: 6px;
}

body.dark .step i {
  color: #ff4081; /* light pink for dark mode */
}


/* ==================== Mentor ==================== */

.interview-prep {
  background: var(--bg-secondary, #f9f9f9);
  padding: 40px 20px;
  border-radius: 12px;
  margin: 40px 0;
  text-align: center;
}

.interview-prep h2 {
  color: #e91e63; /* Pink heading for highlight */
  font-size: 2rem;
  margin-bottom: 20px;
}

.prep-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  background: var(--bg-card, #fff);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}

.prep-box ul {
  list-style: none;
  padding: 0;
}

.prep-box li {
  margin: 12px 0;
  font-size: 1.1rem;
}

.prep-box li i {
  color: #e91e63; /* pink icons */
  margin-right: 10px;
}


body.dark .prep-box  {
background: #1e293b;
}


/* our courses */

.course-card {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  border-radius: 15px;
  padding: 25px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.course-card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.course-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.course-card ul li {
  font-size: 1.1rem;
  margin: 12px 0;
  display: flex;
  align-items: center;
}

.course-card ul li i {
  color: #e91e63; /* Pink icons */
  margin-right: 12px;
  font-size: 1.2rem;
}
body.dark .course-card  {
background: #1e293b;
}
body.dark .course-card h3  {
color: #eff0f0;
}


/*  Mentor */

/* Mentorship Section */
#mentorship {
  padding: 60px 20px;
  text-align: center;
}

#mentorship h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2563eb;
}

.mentor-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 25px;
  border-radius: 15px;
  background: var(--card-bg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.mentor-card h3 {
  color: var(--accent-color);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.mentor-card p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-muted);
  line-height: 1.6;
}

.mentor-card ul {
  list-style: none;
  padding: 0;
}

.mentor-card li {
  font-size: 1rem;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

.mentor-card li i {
  color: var(--accent-color);
  margin-right: 8px;
    color: #e91e63; /* Pink icons */

}

body.dark .mentor-card  {
background: #1e293b;
}

/* FAQ */
/* FAQ */
.faq { padding-top: 40px; }
.faq h2 { color: #e91e63; margin-bottom: 20px; }

.faq-item {
  max-width: 800px;
  margin: 12px auto;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow .2s ease;
}
.faq-item:hover { box-shadow: 0 10px 22px rgba(0,0,0,0.12); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}

.faq-q span { display: inline-flex; align-items: center; gap: 10px; }
.faq-q i { transition: transform .2s ease; }

.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }

.faq-a {
  padding: 0 18px 16px 48px;
  line-height: 1.6;
  color: #444;
}

/* Dark mode support */
body.dark .faq-item { background: #1e293b; box-shadow: 0 8px 20px rgba(0,0,0,.35); }
body.dark .faq h2 { color: #ff6fa8; }
body.dark .faq-q { color: #eaeaea; }
body.dark .faq-a { color: #cfd8e3; }

/* ================== Special Offer ======================= */


.highlights {
  background: var(--bg-light, #fff);
  padding: 50px 20px;
  text-align: center;
  max-width: 1000px;
  margin: 40px auto;
}

.highlight-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.highlight {
  flex: 1 1 300px;
  background: #f0f9ff;
  border: 2px solid #0077ff;
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.highlight:hover {
  transform: translateY(-5px);
  background: #eaf5ff;
}

.highlight h3 {
  color: #0077ff;
  margin-bottom: 10px;
}

.highlight p {
  font-size: 16px;
  color: #333;
}



/* =============== Meet our team ================== */

.mentors {
  background: #fafafa;
  padding: 60px 20px;
  text-align: center;
}

.mentors .subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  color: #666;
}

.mentors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.mentor-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 25px;
  width: 260px;
  transition: transform 0.3s ease;
}

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

.mentor-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #0077ff;
}

.mentor-card h3 {
  color: #0077ff;
  margin: 10px 0 5px;
}

.mentor-card p {
  font-size: 14px;
  color: #333;
  margin: 5px 0;
}

.mentor-card .desc {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}










/*  ============== Refund policy ================== */
/* .refund {
  background: var(--bg-light, #f9f9f9);
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.refund:hover {
  transform: translateY(-3px);
}

.refund-box {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-color, #333);
}

.refund ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.refund li {
  margin: 10px 0;
  font-size: 16px;
  color: #28a745;
  font-weight: 500;
}

.refund .note {
  color: #e63946;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 600;
} */



/* Typewriter styling */
.typewriter {
  display: inline-block;
  font-weight: 700;
  font-size: 1.2rem; /* adjust size if needed */
  line-height: 1.2;
  white-space: pre-wrap; /* allow newline rendering */
}

/* caret */
.typewriter::after{
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.05em;
  margin-left: 6px;
  vertical-align: middle;
  background: currentColor;
  animation: blink 1s steps(1) infinite;
  opacity: 0.9;
}

@keyframes blink {
  50% { opacity: 0; }
}

















