    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #fffaf5;
      color: #000;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 50px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-buttons button {
      background: #50307C;
      color: #fff;
      border: none;
      padding: 10px 20px;
      margin-left: 15px;
      border-radius: 25px;
      font-weight: 600;
      cursor: pointer;
    }

    .hero {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 50px;
    }

    .hero-text {
      max-width: 50%;
    }

    .hero-text h1 {
      font-size: 28px;
      font-weight: 700;
    }

    .hero-text span {
      color: #46B45D;
    }

    .hero-text .highlight {
      color: #E23E3E;
    }

    .hero-text p {
      margin-top: 10px;
      font-size: 16px;
      color: #666;
      line-height: 1.6;
    }

    .hero-image img {
      width: 400px;
      border-radius: 10px;
    }

    .features {
      display: flex;
      justify-content: center;
      background-color: #50307C;
      padding: 25px;
      margin-top: 30px;
      gap: 20px;
      border-radius: 12px;
      width: 90%;
      margin-left: auto;
      margin-right: auto;
    }

    .feature-box {
      color: white;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .feature-box img {
      width: 28px;
    }

    .promise {
      padding: 30px 50px;
    }

    .promise ul {
      margin-top: 10px;
      list-style: none;
    }

    .promise ul li::before {
      content: '✅';
      margin-right: 10px;
      color: green;
    }

    .note {
      margin-top: 15px;
      font-style: italic;
      font-size: 15px;
    }

        .latest-courses {
      text-align: center;
      margin-top: 40px;
    }

    .latest-courses h2 {
      font-size: 28px;
      font-weight: 700;
    }

    .latest-courses p {
      font-size: 14px;
      color: #888;
      margin-top: 5px;
    }

    .course-container {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin: 30px auto;
      flex-wrap: wrap;
      max-width: 1200px;
    }

    .course-box {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      width: 300px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .course-box img {
      width: 120px;
      margin-bottom: 10px;
    }

    .course-box p {
      text-align: left;
      font-size: 14px;
      margin-top: 10px;
      line-height: 1.5;
    }

    .why-choose {
      margin-top: 50px;
      background: #fff1df;
      padding: 50px 20px;
    }

    .why-container {
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 1200px;
      margin: auto;
      gap: 50px;
      flex-wrap: wrap;
    }

    .why-text h2 {
      font-size: 28px;
      font-weight: 700;
    }

    .why-text span {
      color: #f26938;
    }

    .why-text ul {
      margin-top: 20px;
      list-style: none;
      font-size: 15px;
      line-height: 1.8;
    }

    .why-text ul li::before {
      content: '📌';
      margin-right: 10px;
    }

    .why-image img {
      width: 280px;
    }

    /* Testimonials */
.testimonials {
  text-align: center;
  background: #fff;
  padding: 60px 20px;
}
.testi-subheading {
  font-size: 13px;
  color: #777;
}
.testi-heading {
  font-size: 26px;
  font-weight: bold;
  margin: 10px 0 40px;
}
.testimonial-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}
.testimonial-card {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: left;
}
.testimonial-card p {
  font-style: italic;
  margin-bottom: 15px;
}
.testimonial-card strong {
  display: block;
  font-weight: bold;
}
.testimonial-card small {
  font-size: 12px;
  color: #555;
}
.happy-students {
  margin-top: 30px;
  font-size: 14px;
  color: #555;
}

/* Connect With Us Section */
.connect {
  background: #4a2a7a;
  padding: 60px 20px;
  color: #fff;
  text-align: center;
  background-image: url("pattern-circles.png"); /* optional for decoration */
  background-repeat: no-repeat;
  background-position: left top;
}
.connect-wrapper h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
.connect-wrapper p {
  font-size: 14px;
  margin-bottom: 25px;
}
.form-button {
  background: orange;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid white;
  transition: 0.3s;
}
.form-button:hover {
  background: white;
  color: orange;
}

/* Footer */
.footer {
  background-color: #222;
  color: #ddd;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Courier New', monospace;
}
.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}
.footer p {
  margin: 8px 0;
  font-size: 14px;
}
.social-icons {
  margin: 15px 0;
  text-decoration: none;
}
.social-icons a {
  margin: 0 10px;
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}
.social-icons a:hover {
  color: orange;
}
/* ...existing code... */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 2.5rem;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  background: #128C7E;
  color: #fff;
}

/* ...existing code... */

.whatsapp-float-message {
  position: fixed;
  bottom: 100px;
  right: 40px;
  background: #fff;
  color: #25D366;
  border: 2px solid #25D366;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 1001;
  max-width: 260px;
  text-align: center;
  opacity: 1;
  transition: opacity 0.8s;
}

.whatsapp-float-message.fade-out {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 8px;
    gap: 0;
  }
  .logo {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  .logo h2 {
    display: none; /* Hide College Saarthi name */
  }
  .logo img {
    width: 36px;
    height: 36px;
    margin-right: 0;
  }
  .nav-buttons {
    flex-direction: row;
    gap: 6px;
    margin: 0;
    width: auto;
  }
  .nav-buttons button {
    font-size: 0.85rem;
    padding: 6px 10px;
    border-radius: 6px;
    background:  #50307C;
    color: #fff;
    border: none;
    font-weight: 600;
    box-shadow: none;
    min-width: unset;
    margin: 0;
    transition: background 0.2s;
  }
  .nav-buttons button:active {
    background: #128C7E;
  }
}

@media (max-width: 600px) {
  .hero {
    flex-direction: column-reverse;
    align-items: center;
    padding: 20px 8px 8px 8px;
    text-align: center;
    gap: 0;
  }
  .hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
  }
  .hero-image img {
    max-width: 90vw;
    height: auto;
    display: block;
  }
  .hero-text {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  .hero-text h1 {
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .features {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 18px !important;
    padding: 18px 0 0 0 !important;
  }
  .feature-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 2px 12px rgba(37,211,102,0.10);
    margin: 0 10px;
    border: 1px solid #e6e6e6;
  }
  .feature-box img {
    width: 40px;
    height: 40px;
  }
  .feature-box div {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
  }
}