*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#f8f9ff;
  color:#1e293b;
}

.container{
  width:100%;
  margin:auto;
  padding:20px;
}

/* STICKY NAVBAR */
.navbar{
  position:fixed;
  width:100%;
  top:0;
  background:white;
  padding:15px 0;
  transition:0.3s;
  z-index:1000;
}

.navbar.scrolled{
  box-shadow:0 5px 20px rgba(0,0,0,0.1);
  padding:10px 0;
}

.nav-container{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

nav a{
  margin:0 15px;
  text-decoration:none;
  color:#1e293b;
  font-weight:500;
  position:relative;
}

nav a::after{
  content:'';
  width:0%;
  height:2px;
  background:#4f46e5;
  position:absolute;
  left:0;
  bottom:-5px;
  transition:0.3s;
}

nav a:hover::after{
  width:100%;
}

/* HERO */
.hero{
  padding:140px 0 100px 0;
  background:linear-gradient(135deg,#6d5dfc,#a78bfa);
  color:white;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  align-items:center;
}

/* BUTTONS */
.btn-primary{
  background:#e9be12;
  color:white;
  padding:12px 24px;
  border-radius:8px;
  text-decoration:none;
  display:inline-block;
  transition:0.3s;
}

.btn-primary:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(79,70,229,0.4);
}

.btn-outline{
  border:2px solid white;
  padding:10px 20px;
  border-radius:8px;
  color:white;
  text-decoration:none;
  margin-left:15px;
}

.section{
  padding:100px 0;
}

.light{
  background:#eef2ff;
}

.center{
  text-align:center;
}

/* CARDS */
.card-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-top:40px;
}

.card{
  background:white;
  padding:30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.hover-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.1);
}

/* FAQ */
.faq{
  margin-top:40px;
}

.faq-item{
  background:white;
  margin-bottom:15px;
  border-radius:0px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

.faq-question{
  padding:20px;
  cursor:pointer;
  font-weight:600;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.faq-icon{
  font-size:22px;
  transition:0.3s;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 20px;
  transition:all 0.4s ease;
  color:#64748b;
}

.faq-item.active .faq-answer{
  max-height:200px;
  padding:20px;
}

.faq-item.active .faq-icon{
  transform:rotate(45deg);
}

/* CTA */
.final-cta{
  background:#1e293b;
  color:white;
  padding:100px 0;
}

/* SCROLL ANIMATION */
.reveal{
  opacity:0;
  transform:translateY(60px);
  transition:all 0.8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-grid{
    grid-template-columns:1fr;
  }
  .card-grid{
    grid-template-columns:1fr 1fr;
  }
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float{
  position:fixed;
  bottom:25px;
  right:25px;
  width:60px;
  height:60px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.2);
  z-index:9999;
  transition:0.3s;
  animation:pulse 2s infinite;
}

.whatsapp-float:hover{
  transform:scale(1.1);
}

/* Pulse Animation */
@keyframes pulse{
  0%{
    box-shadow:0 0 0 0 rgba(37,211,102,0.6);
  }
  70%{
    box-shadow:0 0 0 15px rgba(37,211,102,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }
}

/* Tooltip */
.whatsapp-tooltip{
  position:absolute;
  right:75px;
  background:#1e293b;
  color:white;
  padding:8px 12px;
  border-radius:6px;
  font-size:14px;
  opacity:0;
  transition:0.3s;
  white-space:nowrap;
}

.whatsapp-float:hover .whatsapp-tooltip{
  opacity:1;
}

/* ICON-BASED JOURNEY SECTION */
.journey-section{
  background:linear-gradient(135deg,#eef2ff,#f8f9ff);
}

.journey-sub{
  margin-top:10px;
  color:#64748b;
  margin-bottom:60px;
}

.journey-steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:30px;
  margin-bottom:60px;
}

.journey-card{
  background:white;
  padding:35px 25px;
  border-radius:0px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.4s;
  text-align:center;
}

.journey-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 50px rgba(79,70,229,0.15);
}

.icon-circle{
  width:70px;
  height:70px;
  margin:0 auto 20px auto;
  background:linear-gradient(135deg,#4f46e5,#a78bfa);
  color:white;
  font-size:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  box-shadow:0 10px 30px rgba(79,70,229,0.3);
  transition:0.3s;
}

.journey-card:hover .icon-circle{
  transform:scale(1.1);
}

.journey-card h3{
  margin-bottom:10px;
  font-size:20px;
}

.journey-cta h3{
  margin-bottom:20px;
  font-size:26px;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .journey-steps{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .journey-steps{
    grid-template-columns:1fr;
  }
}

/* UPCOMING BATCH SECTION */

.batch-sub{
  margin-top:10px;
  margin-bottom:50px;
  color:#64748b;
}

.batch-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.batch-card{
  background:white;
  padding:40px;
  border-radius:0px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
  position:relative;
  transition:0.4s;
  text-align:left;
}

.premium-card:hover{
  transform:translateY(-12px);
  box-shadow:0 25px 60px rgba(79,70,229,0.15);
}

.batch-badge{
  position:absolute;
  top:-15px;
  left:30px;
  background:linear-gradient(135deg,#4f46e5,#a78bfa);
  color:white;
  padding:6px 16px;
  border-radius:20px;
  font-size:14px;
  font-weight:600;
  box-shadow:0 5px 15px rgba(79,70,229,0.3);
}

.batch-badge.offline{
  background:linear-gradient(135deg,#16a34a,#22c55e);
}

.batch-card h3{
  margin-bottom:15px;
}

.batch-card p{
  margin-bottom:10px;
  color:#475569;
}

/* RESPONSIVE */
@media(max-width:900px){
  .batch-grid{
    grid-template-columns:1fr;
  }
}

/* 12 WEEK SYLLABUS SECTION */

.syllabus-section{
  background:#f8f9ff;
}

.syllabus-sub{
  margin-top:10px;
  margin-bottom:60px;
  color:#64748b;
}

.syllabus-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.week-card{
  background:white;
  padding:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.4s;
  position:relative;
}

.week-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 50px rgba(79,70,229,0.15);
}

.week-card h3{
  color:#4f46e5;
  margin-bottom:10px;
  font-size:18px;
}

.week-card p{
  color:#475569;
  font-size:14px;
}

.highlight-week{
	background:#fff;
 /* background:linear-gradient(135deg,#4f46e5,#a78bfa);*/
  color:#000;
}

.highlight-week h3,
.highlight-week p{
  color:#000;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .syllabus-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .syllabus-grid{
    grid-template-columns:1fr;
  }
}

/* COURSE FEES SECTION */

.fees-section{
  background:#eef2ff;
}

.fees-sub{
  margin-top:10px;
  margin-bottom:60px;
  color:#64748b;
}

.fees-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.fee-card{
  background:white;
  padding:45px 35px;
  border-radius:0px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
  position:relative;
  transition:0.4s;
}

.fee-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(79,70,229,0.15);
}

.premium-plan{
  border:2px solid #4f46e5;
}

.plan-badge{
  position:absolute;
  top:-15px;
  left:30px;
  padding:6px 16px;
  border-radius:20px;
  font-size:14px;
  font-weight:600;
  color:white;
}

.plan-badge.online{
  background:linear-gradient(135deg,#4f46e5,#a78bfa);
}

.plan-badge.offline{
  background:linear-gradient(135deg,#16a34a,#22c55e);
}

.price{
  margin:20px 0;
}

.old-price{
  text-decoration:line-through;
  color:#94a3b8;
  margin-right:10px;
}

.new-price{
  font-size:28px;
  font-weight:700;
  color:#4f46e5;
}

.features{
  list-style:none;
  margin:25px 0;
  padding:0;
}

.features li{
  margin-bottom:12px;
  color:#475569;
}

@media(max-width:900px){
  .fees-grid{
    grid-template-columns:1fr;
  }
}

/* TESTIMONIAL SECTION */

.testimonial-section{
  background:#f8f9ff;
}

.testimonial-sub{
  margin-top:10px;
  margin-bottom:60px;
  color:#64748b;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.testimonial-card{
  background:white;
  padding:35px;
  border-radius:0px;
  box-shadow:0 15px 40px rgba(0,0,0,0.06);
  transition:0.4s;
  text-align:left;
}

.testimonial-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 60px rgba(79,70,229,0.15);
}

.student-info{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:20px;
}

.student-info img{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
  display:none;
}

.student-info h4{
  margin:0;
  font-size:16px;
}

.student-info span{
  font-size:13px;
  color:#64748b;
}

.stars{
  color:#facc15;
  font-size:18px;
  margin-bottom:15px;
}

/* Responsive */
@media(max-width:900px){
  .testimonial-grid{
    grid-template-columns:1fr;
  }
}