/* RESET */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Poppins', sans-serif; }
body { background:#f4f7fb; color:#222; }

.header {
  width: 100%;
  padding: 15px 30px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.logo img {
  width: 120px;
  height: 40px;
  object-fit: contain;
}

/* NAVIGATION */
.nav {
  display: flex;
  gap: 25px;
}

.nav-link {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #4a6cf7;
}

/* MOBILE MENU ICON */
.menu-icon {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

/* RESPONSIVE NAV MENU */
@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
  }

  .nav.show {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}

/* HERO */
/* PREMIUM HERO */
.hero-section {
  position:relative;
  padding:120px 7%;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  min-height:600px;
}

.hero-background {
  position:absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(135deg,#6a6aff,#2e2e88);
  z-index:0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.hero-card {
  position:relative;
  z-index:2;
  background: rgba(255,255,255,0.95);
  padding:60px 40px;
  border-radius:30px;
  max-width:700px;
  text-align:center;
  box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

.hero-card h1 {
  font-size:44px;
  color:#2e2e88;
  margin-bottom:20px;
  font-weight:700;
}

.hero-card p {
  font-size:18px;
  color:#333;
  margin-bottom:30px;
  line-height:1.6;
}

.hero-btn {
  display:inline-block;
  padding:16px 50px;
  background:#2e2e88;
  color:#fff;
  border-radius:50px;
  font-weight:700;
  font-size:18px;
  text-decoration:none;
  transition:0.3s;
}
.hero-btn:hover { background:#6a6aff; }

/* Decorative Shapes */
.hero-shape {
  position:absolute;
  border-radius:50%;
  background: rgba(255,255,255,0.2);
  z-index:1;
}

.hero-shape.shape1 { width:200px; height:200px; top:50px; left:-50px; }
.hero-shape.shape2 { width:150px; height:150px; bottom:60px; right:-30px; }
.hero-shape.shape3 { width:120px; height:120px; top:200px; right:150px; }

/* Responsive */
@media(max-width:900px){
  .hero-card { padding:40px 25px; }
  .hero-card h1 { font-size:32px; }
  .hero-card p { font-size:16px; }
  .hero-shape.shape1, .hero-shape.shape2, .hero-shape.shape3 { display:none; }
}

/* COUNSELORS CAROUSEL */
.counselors-section { padding:80px 7%; text-align:center; }
.section-title { font-size:36px; color:#2e2e88; margin-bottom:50px; }
.counselors-carousel { display:flex; gap:30px; overflow-x:auto; scroll-behavior:smooth; padding-bottom:10px; }
.counselor-card { min-width:280px; background:#fff; border-radius:20px; box-shadow:0 10px 25px rgba(0,0,0,0.08); padding:20px; transition:0.3s; flex-shrink:0; }
.counselor-card:hover { transform:translateY(-8px); }
.counselor-card img { width:100%; height:200px; object-fit:cover; border-radius:20px; margin-bottom:15px; }
.counselor-card h3 { margin-bottom:10px; color:#2e2e88; }

/* HOW IT WORKS TIMELINE */
.how-section { padding:80px 7%; margin:50px 7%; }
.timeline { display:flex; flex-wrap:wrap; justify-content:center; gap:40px; position:relative; }
.timeline::before { content:''; position:absolute; top:20px; left:50%; width:4px; height:calc(100% - 40px); background:#2e2e88; transform:translateX(-50%); z-index:-1; }
.timeline-item { background:#fff; border-radius:20px; padding:20px; width:250px; text-align:center; box-shadow:0 10px 25px rgba(0,0,0,0.08); position:relative; }
.timeline-item h3 { margin-bottom:10px; color:#2e2e88; }
.timeline-item p { font-size:15px; color:#555; }
.timeline-icon { background:#2e2e88; color:#fff; width:50px; height:50px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:18px; margin:0 auto 15px; }

/* BOOKING FORM */
.booking-form-section {
  padding:100px 7%;
  border-radius:20px;
  margin-bottom:50px;
  position:relative;
  overflow:hidden;
  background: linear-gradient(135deg, #6a6aff 0%, #2e2e88 100%);
  color:#fff;
}
.booking-form-section::before {
  content:"";
  position:absolute;
  top:-50px;
  left:-50px;
  width:200px;
  height:200px;
  background: rgba(255,255,255,0.1);
  border-radius:50%;
  z-index:1;
}

.booking-form-section::after {
  content:"";
  position:absolute;
  bottom:-50px;
  right:-50px;
  width:250px;
  height:250px;
  background: rgba(255,255,255,0.1);
  border-radius:50%;
  z-index:1;
}

/* Booking Form Card */
.booking-form {
  position:relative;
  z-index:2;
  max-width:600px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:20px;
  background: rgba(255,255,255,0.95);
  padding:40px;
  border-radius:30px;
  box-shadow:0 25px 50px rgba(0,0,0,0.2);
}

/* Floating Animation Keyframes (faster) */
@keyframes float1 {
  0% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-20px) translateX(10px); }
  100% { transform: translateY(0px) translateX(0px); }
}

@keyframes float2 {
  0% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(15px) translateX(-10px); }
  100% { transform: translateY(0px) translateX(0px); }
}

@keyframes float3 {
  0% { transform: translateY(0px) translateX(0px); }
  50% { transform: translateY(-10px) translateX(-15px); }
  100% { transform: translateY(0px) translateX(0px); }
}

/* Existing Circles */
.booking-form-section::before {
  animation: float1 4s ease-in-out infinite; /* faster */
}

.booking-form-section::after {
  animation: float2 5s ease-in-out infinite; /* faster */
}

/* New Circle */
.booking-form-section .extra-circle {
  position:absolute;
  width:100px;
  height:100px;
  border-radius:50%;
  background: rgba(255,255,255,0.08);
  top:30%;
  left:70%;
  z-index:1;
  animation: float3 6s ease-in-out infinite;
}


/* Apply animation to floating shapes */
.booking-form-section::before {
  animation: float1 6s ease-in-out infinite;
}

.booking-form-section::after {
  animation: float2 8s ease-in-out infinite;
}

/* Booking Section Heading */
.booking-form-section .section-title {
  color: #fff;  /* White heading */
  font-size:36px;
  text-align:center;
  margin-bottom:50px;
}

.booking-form label { font-weight:500; color:#333; }
.booking-form input, 
.booking-form select, 
.booking-form output { padding:12px; border-radius:10px; border:1px solid #ccc; font-size:16px; width:100%; }

.submit-btn { 
  padding:16px 40px; 
  background:#2e2e88; 
  color:#fff; 
  border:none; 
  border-radius:50px; 
  font-weight:700; 
  font-size:18px; 
  cursor:pointer; 
  transition:0.3s; 
}
.submit-btn:hover { background:#6a6aff; }

/* Responsive */
@media(max-width:900px){
  .booking-form-section { padding:60px 5%; }
  .booking-form { padding:30px; width:100%; }
}
.booking-form { max-width:600px; margin:0 auto; display:flex; flex-direction:column; gap:20px; background:#fff; padding:30px; border-radius:20px; box-shadow:0 10px 25px rgba(0,0,0,0.08); }
.booking-form label { font-weight:500; }
.booking-form input, .booking-form select, .booking-form output { padding:12px; border-radius:10px; border:1px solid #ccc; font-size:16px; width:100%; }
.booking-form input[type="range"] { cursor:pointer; }
.submit-btn { padding:16px 40px; background:#2e2e88; color:#fff; border:none; border-radius:50px; font-weight:700; font-size:18px; cursor:pointer; transition:0.3s; }
.submit-btn:hover { background:#6a6aff; }

/* TESTIMONIALS */
.testimonials-section { padding:80px 7%; margin:50px 7%; }
.testimonials-grid { display:flex; flex-wrap:wrap; gap:30px; justify-content:center; position:relative; }
.testimonial-card { background:#fff; padding:20px; border-radius:20px; width:300px; box-shadow:0 10px 25px rgba(0,0,0,0.08); text-align:center; transform:translateY(0); transition:0.3s; }
.testimonial-card:hover { transform:translateY(-8px); }
.testimonial-card img { width:80px; height:80px; border-radius:50%; margin-bottom:15px; }

/* FOOTER */
.footer { padding:30px; text-align:center; background:#fff; font-size:15px; border-top:1px solid #eee; }

/* RESPONSIVE */
@media(max-width:900px){
  .counselors-carousel, .timeline, .testimonials-grid { flex-direction:column; align-items:center; }
  .booking-form { width:90%; }
  .hero-content h1 { font-size:32px; }
}
