 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #F9FAFB;
  color: #1F2937;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
:root {
  --color-primary: #4F46E5;   
  --color-accent: #FACC15;    
  --color-bg: #F9FAFB;        
  --color-text: #1F2937;      
  --color-white: #FFFFFF;
}
header
{
  background-color: var(--color-white);
  padding: 20px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .logo h1 span
{
  color: var(--color-primary);
}
nav ul 
{
  list-style: none;
  display: flex;
  gap: 25px;
}
nav ul li a 
{
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  transition: color 0.3s;
}
nav ul li a:hover
{
  color: var(--color-primary);
}
/* ---------- Navbar Flex & Mobile ---------- */
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 25px;
}
/* ---------- How It Works Section ---------- */
#how {
  background-color: var(--color-bg);
  padding: 80px 0;
  text-align: center;
}

#how h3 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--color-primary);
}

#how .cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

#how .card {
  background-color: var(--color-white);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1 1 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

#how .card h4 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 15px;
}

#how .card p {
  font-size: 1rem;
  color: #4B5563;
}

#how .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
/* ---------- For Students Section ---------- */
#students {
  background-color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

#students h3 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--color-primary);
}

#students .cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

#students .card {
  background-color: var(--color-bg);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1 1 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

#students .card i {
  color: var(--color-primary);
  margin-bottom: 15px;
}

#students .card h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

#students .card p {
  font-size: 1rem;
  color: #4B5563;
}

#students .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
/* ---------- For Clients Section ---------- */
#clients {
  background-color: var(--color-bg);
  padding: 80px 0;
  text-align: center;
}

#clients h3 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--color-primary);
}

#clients .cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

#clients .card {
  background-color: var(--color-white);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1 1 250px;
  transition: transform 0.3s, box-shadow 0.3s;
}

#clients .card i {
  color: var(--color-primary);
  margin-bottom: 15px;
}

#clients .card h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

#clients .card p {
  font-size: 1rem;
  color: #4B5563;
}

#clients .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}
/* ---------- Pricing Section ---------- */
#pricing {
  background-color: var(--color-bg);
  padding: 80px 0;
  text-align: center;
}

#pricing h3 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--color-primary);
}

#pricing .cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

#pricing .card {
  background-color: var(--color-white);
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

#pricing .card h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

#pricing .card p {
  font-size: 1rem;
  color: #4B5563;
  margin-bottom: 15px;
  text-align: center;
}

#pricing .card.popular {
  border: 2px solid var(--color-primary);
  transform: scale(1.05);
}

#pricing .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#pricing .btn-primary {
  margin-top: 10px;
}
/* ---------- Contact Section ---------- */
#contact {
  background-color: var(--color-white);
  padding: 80px 0;
  text-align: center;
}

#contact h3 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: var(--color-primary);
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

#contact form input,
#contact form textarea {
  padding: 15px;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

#contact form input:focus,
#contact form textarea:focus {
  border-color: var(--color-primary);
}

#contact .btn-primary {
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

#contact .btn-primary:hover {
  background-color: #3730a3;
  transform: translateY(-3px);
}
/* ---------- Footer Section ---------- */
footer {
  background-color: var(--color-primary); 
  color: var(--color-black);
  padding: 50px 0 30px 0;
  font-family: 'Poppins', sans-serif;
}

footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

footer .footer-left h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-black);
}

footer .footer-left h4 span {
  color: var(--color-accent); /* Golden Yellow */
}

footer .footer-left p {
  margin-top: 10px;
  color: #000000; 
  font-size: 0.95rem;
}

footer .footer-right p {
  font-weight: 500;
  margin-bottom: 10px;
}

footer .social-icons a {
  color: var(--color-black);
  margin-right: 15px;
  font-size: 1.4rem;
  transition: color 0.3s, transform 0.3s;
}

footer .social-icons a:hover {
  color: var(--color-accent); /* Golden Yellow */
  transform: translateY(-3px);
}

footer .footer-bottom {
  text-align: center;
  margin-top: 25px;
  font-size: 0.9rem;
  color: #E5E7EB;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}

@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer .social-icons {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  #how .cards {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px)
{
 .hero h2 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  nav ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    background-color: var(--color-white);
    position: absolute;
    top: 70px;
    right: 20px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  nav ul.show {
    display: flex;
  }

  .menu-toggle
  /* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.hero h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.hero p {
  font-size: 1.2rem;
  color: #374151;
  max-width: 600px;
  margin-bottom: 30px;
}
.hero .btn-primary:hover {
  background-color: #3730a3; /* Slightly darker Indigo */
  transform: translateY(-3px);
}

.hero .btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero .btn-primary {
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 8px;
}

.hero .btn-secondary {
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 8px;
}

  {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-primary);
  }
}

.menu-toggle {
  display: none; /* Hidden on desktop */
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #3730a3; /* Slightly darker Indigo */
}

.btn-secondary {
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.hero {
  background: linear-gradient(135deg, #E0E7FF, #C7D2FE);
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  color: #374151;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
section h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

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

.card {
  background-color: var(--color-white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  flex: 1 1 250px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

form input, form textarea {
  padding: 12px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

form input:focus, form textarea:focus {
  border-color: var(--color-primary);
}
footer
{
  background-color: var(--color-white);
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid #E5E7EB;
}
@media (max-width: 768px) {
  #contact form {
    width: 90%;
  }
}

footer p
{
  font-size: 0.9rem;
  color: #6B7280;
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--color-accent);
}
.hero-student {
  text-align: center;
  background: linear-gradient(to right, #f0f4ff, #e5eaff);
  padding: 80px 20px;
}

.benefits {
  text-align: center;
  padding: 50px 20px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.benefit-grid .card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.steps {
  text-align: center;
  padding: 50px 20px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.step-grid .card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hero-clients {
  text-align: center;
  background: linear-gradient(to right, #e8ecff, #f2f5ff);
  padding: 80px 20px;
}

.why-clients {
  text-align: center;
  padding: 60px 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.step {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to right, #f0f4ff, #e3e8ff);
}
.hero-pricing {
  text-align: center;
  background: linear-gradient(to right, #e8ecff, #f2f5ff);
  padding: 80px 20px;
}

.pricing-section {
  padding: 80px 20px;
  background: #fafbff;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 40px 25px;
  width: 300px;
  text-align: center;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.pricing-card.popular {
  border: 2px solid #4a6cf7;
  background: linear-gradient(to bottom right, #edf0ff, #ffffff);
}

.pricing-card h2 {
  font-size: 2.5rem;
  color: #4a6cf7;
  margin: 10px 0;
}

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

.pricing-card ul li {
  margin: 10px 0;
  color: #555;
}

.btn-primary {
  background-color: #4a6cf7;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #354ac8;
}
.hero-contact {
  text-align: center;
  background: linear-gradient(to right, #e8ecff, #f3f5ff);
  padding: 80px 20px;
}

.contact-section {
  padding: 60px 20px;
  background: #f9faff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.contact-form, .contact-info {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 30px;
  width: 400px;
}

.contact-form h2, .contact-info h2 {
  color: #4a6cf7;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-top: 15px;
  color: #333;
  font-weight: 500;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.contact-form input:focus, .contact-form textarea:focus {
  border-color: #4a6cf7;
  outline: none;
}

.contact-info p {
  margin: 10px 0;
  color: #555;
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .contact-form, .contact-info {
    width: 90%;
  }
}
.hero-about {
  text-align: center;
  background: linear-gradient(to right, #e8ecff, #f3f5ff);
  padding: 80px 20px;
}

.about-story, .about-mission, .founder {
  padding: 60px 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-story h2, .about-mission h2, .founder h2 {
  color: #4a6cf7;
  margin-bottom: 20px;
}

.about-story p, .mission-card p, .founder p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

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

.mission-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 30px;
  width: 300px;
}

.founder-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.founder-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #4a6cf7;
}

.founder-text h3 {
  color: #333;
  margin: 10px 0;
}

@media (max-width: 900px) {
  .mission-grid {
    flex-direction: column;
    align-items: center;
  }
  .founder-box {
    flex-direction: column;
    text-align: center;
  }
}
.hero-about {
  text-align: center;
  background: linear-gradient(to right, #e8ecff, #f3f5ff);
  padding: 80px 20px;
}

.about-story, .about-mission, .founder {
  padding: 60px 20px;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.about-story h2, .about-mission h2, .founder h2 {
  color: #4a6cf7;
  margin-bottom: 20px;
}

.about-story p, .mission-card p, .founder p {
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

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

.mission-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 30px;
  width: 300px;
}

.founder-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.founder-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #4a6cf7;
}

.founder-text h3 {
  color: #333;
  margin: 10px 0;
}

@media (max-width: 900px) {
  .mission-grid {
    flex-direction: column;
    align-items: center;
  }
  .founder-box {
    flex-direction: column;
    text-align: center;
  }
}

