body{
  margin: 0;
  padding: 0;
  height: 100vh;;
}
.hero {
  background: linear-gradient(to right, #4a90e2, #9013fe);
  color: white;
  padding: 100px 20px;
  text-align: center;
  transition: background 0.5s ease;
}

.hero h1 {
  font-size: 2.5rem;
  animation: fadeInDown 1s ease forwards;
}

.hero p {
  font-size: 1.2rem;
  animation: fadeInUp 1.2s ease forwards;
}

.ctaBtn {
  padding: 12px 24px;
  border: none;
  background-color: white;
  color: #9013fe;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#ctaBtn:hover {
  transform: scale(1.05);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}







#navbar {
  position: fixed;
  width: 100%;
  background: transparent;
  transition: background 0.3s ease;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4a90e2;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #4a90e2;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    flex-direction: column;
    width: 200px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .menu-toggle {
    display: block;
  }
}






.subject-cards {
  padding: 80px 20px;
  background-color: #f9f9ff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #9013fe;
  margin-bottom: 40px;
}

.card-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: white;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 30px;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.card h3 {
  color: #4a90e2;
  font-size: 1.5rem;
}

.card p {
  font-size: 1rem;
  margin-top: 10px;
}







.tuition-options {
  padding: 80px 20px;
  background: linear-gradient(to right, #f0f4ff, #ffffff);
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #4a90e2;
  margin-bottom: 40px;
}

.tuition-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.tuition-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tuition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.tuition-card h3 {
  color: #9013fe;
  font-size: 1.5rem;
}

.tuition-card p {
  font-size: 1rem;
  margin: 10px 0 20px;
}

.tuition-card a {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.tuition-card a:hover {
  background-color: #9013fe;
}


.faq-section {
  padding: 60px 20px;
  background: #f9f9ff;
  text-align: center;
}

.faq-title {
  font-size: 2.5rem;
  color: #4a90e2;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  background: none;
  border: none;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  width: 100%;
  text-align: left;
  padding: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #9013fe;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  color: #555;
}






.booking-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #f0f4ff, #ffffff);
  text-align: center;
}

.booking-title {
  font-size: 2.5rem;
  color: #4a90e2;
  margin-bottom: 10px;
}

.booking-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.booking-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: #9013fe;
  outline: none;
}

.booking-form button {
  background-color: #4a90e2;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.booking-form button:hover {
  background-color: #9013fe;
}
.review-section {
  padding: 80px 20px;
  background: #fefefe;
  text-align: center;
}

.review-title {
  font-size: 2.5rem;
  color: #4a90e2;
  margin-bottom: 40px;
}

.review-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.review-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  padding: 30px;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
}

.review-author {
  font-weight: bold;
  color: #9013fe;
  margin-bottom: 10px;
}

.stars {
  font-size: 1.2rem;
  color: gold;
}


.about-section {
  padding: 80px 20px;
  background: linear-gradient(to right, #eef2ff, #ffffff);
  color: #333;
  text-align: center;
}

.about-title {
  font-size: 2.5rem;
  color: #4a90e2;
  margin-bottom: 40px;
}

.about-block {
  max-width: 700px;
  margin: 0 auto 60px;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  text-align: left;
}

.about-block h3 {
  color: #9013fe;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-block p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.interpreting-section {
  padding: 80px 20px;
  background-color: #f8f9fc;
  color: #222;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #0088cc;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.info-block {
  background: #ffffff;
  max-width: 700px;
  margin: 30px auto;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.info-block h3 {
  color: #9013fe;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.info-block ul {
  list-style: none;
  padding-left: 0;
}

.info-block li {
  font-size: 1rem;
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}

.info-block li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0088cc;
  font-weight: bold;
}

.rate-text {
  font-size: 1.1rem;
  margin-top: 40px;
  color: #444;
}



.site-footer {
  background: linear-gradient(to right, #4a90e2, #9013fe);
  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.icon {
  font-size: 1.5rem;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon:hover {
  transform: scale(1.2);
  color: #ffd700;
}

.instagram:hover {
  color: #e1306c;
}

.facebook:hover {
  color: #3b5998;
}

@media (max-width: 600px) {
  .social-icons {
    flex-direction: column;
    gap: 10px;
  }
}





