```css
/* Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

/* Top Bar Links */
.top-bar-links {
  background: #f1f1f1;
  border-bottom: 1px solid #ccc;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar-left, .top-bar-center, .top-bar-right {
  flex: 1;
  text-align: center;
}
.top-bar-left {
  text-align: left;
}
.top-bar-right {
  text-align: right;
}
.top-bar-links a, .top-bar-links p {
  text-decoration: none;
  font-size: 14px;
  color: #333;
  margin: 0 10px;
}
.top-bar-links a:hover {
  color: #0055a5;
}
.top-bar-center p {
  font-weight: bold;
  font-size: 14px;
  color: #0055a5;
  white-space: nowrap;
}
.top-bar-btn {
  display: inline-block;
  padding: 6px 10px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 12px;
  margin: 0 5px;
  transition: background-color 0.3s, transform 0.3s;
}
.top-bar-btn:hover {
  transform: scale(1.05);
}
.student-login-btn, .center-login-btn {
  background-color: #ffff33;
  border: 2px solid #002a55;
  animation: blink 1.5s infinite;
}
.student-login-btn:hover, .center-login-btn:hover {
  background-color: #002a55;
}
.link-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 10px;
  max-width: 1200px;
  margin: 10px auto;
  overflow-x: auto;
  white-space: nowrap;
}
.link-row a {
  text-decoration: none;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}
.link-row a:hover {
  color: #0055a5;
}

/* Blinking Animation */
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Marquee */
.announcement-bar {
  background-color: #ffefc3;
  border-bottom: 1px solid #f0c040;
  color: #b34700;
  font-weight: bold;
  font-size: 16px;
  padding: 6px 10px;
}

/* Logo Section */
.logo-section {
  background: #fff;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.logo-img:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.logo-img.logo-clicked {
  animation: clickEffect 0.4s ease-in-out;
}

/* Navigation */
.main-nav {
  background-color: #0055a5;
}
.menu {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
}
.menu li a {
  display: block;
  padding: 14px 20px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.menu li a:hover {
  background-color: #003f7f;
}
.menu li.highlight-btn a {
  background-color: #ffcc00;
  color: #333;
  border: 2px solid #e6b800;
  border-radius: 5px;
  padding: 10px 18px;
  margin: 4px;
  transition: background-color 0.3s, color 0.3s;
}
.menu li.highlight-btn a:hover {
  background-color: #e6b800;
  color: #333;
}

/* Slider Section */
.slider {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.slider img {
  width: 100%;
  height: auto;
  display: none;
  transition: opacity 1s ease-in-out;
}
.slider img.active {
  display: block;
  opacity: 1;
}

/* Login Cards Section */
.login-section {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}
.login-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.login-card {
  background: #0055a5;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  width: 100%;
  max-width: 250px;
}
.login-card:hover {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  background-color: #003f7f;
}
.login-card i {
  font-size: 30px;
  margin-bottom: 15px;
}
.login-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.login-card.student-login h3, .login-card.center-login h3 {
  color: #fff;
}
.login-card a {
  color: #ffcc00;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}
.login-card a:hover {
  color: #e6b800;
}

/* Who Are We Section */
.who-are-we {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}
.who-are-we-container {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.who-are-we-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: scaleUp 1s ease-out forwards;
}
.who-are-we-info {
  text-align: left;
}
.who-are-we-info h2 {
  font-size: 32px;
  color: #0055a5;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}
.who-are-we-info p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
}
.who-are-we-info p:nth-child(3) {
  animation-delay: 0.7s;
}
.who-are-we-info .learn-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0055a5;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
  animation: fadeInUp 1s ease-out 0.9s forwards;
  opacity: 0;
}
.who-are-we-info .learn-more-btn:hover {
  background-color: #003f7f;
}

/* What You Will Get From Us Section */
.what-you-get {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.what-you-get h2 {
  font-size: 32px;
  color: #0055a5;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}
.what-you-get h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}
.what-you-get-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.benefit-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.benefit-item:hover h3 {
  color: #007BFF; /* blue highlight */
}
.benefit-item:hover img {
  transform: scale(1.2);
}
.benefit-item:nth-child(n) {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}
.benefit-item:nth-child(1) { animation-delay: 0.3s; }
.benefit-item:nth-child(2) { animation-delay: 0.6s; }
.benefit-item:nth-child(3) { animation-delay: 0.9s; }
.benefit-item:nth-child(4) { animation-delay: 1.2s; }
.benefit-item:nth-child(5) { animation-delay: 1.5s; }
.benefit-item:nth-child(6) { animation-delay: 1.8s; }
.benefit-item:nth-child(7) { animation-delay: 2.1s; }
.benefit-item:nth-child(8) { animation-delay: 2.4s; }
.benefit-item:nth-child(9) { animation-delay: 2.7s; }
.benefit-item:nth-child(10) { animation-delay: 3.0s; }
.benefit-item:nth-child(11) { animation-delay: 3.3s; }
.benefit-item:nth-child(12) { animation-delay: 3.6s; }
.benefit-item h3 {
  font-size: 20px;
  color: #0055a5;
  margin-bottom: 15px;
}
.benefit-item img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}
.benefit-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.benefits-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.benefit-segment {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-left 0.3s ease;
  border-left: 5px solid transparent;
}
.benefit-segment:hover {
  transform: translateY(-5px);
  background-color: #e6f0ff; /* Light blue background */
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.2);
  border-left: 5px solid #0066cc; /* Bright blue accent on hover */
}
.benefit-segment h2 {
  font-size: 28px;
  color: #0055a5;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}
.benefit-segment ul {
  list-style: none;
  padding: 0;
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
}
.benefit-segment ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}
.benefit-segment ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #0055a5;
  position: absolute;
  left: 0;
  top: 2px;
}

/* Highlights Section */
.highlights {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.highlight-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.highlight-card {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-left 0.3s ease;
  border-left: 4px solid transparent;
}
.highlight-card:hover {
  transform: translateY(-5px);
  background-color: #e6f3ff; /* light blue hover */
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.15); /* blue glow */
  border-left: 4px solid #007BFF; /* deep blue accent */
}
.highlight-card i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #0055a5;
}
.highlight-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0055a5;
}
.highlight-card p {
  font-size: 14px;
  color: #333;
}

/* Popular Courses Section */
.popular-courses {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.popular-courses h2 {
  font-size: 32px;
  color: #0055a5;
  margin-bottom: 40px;
}
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.course-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.course-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
}
.course-card .enquire-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #0055a5;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.course-card .enquire-btn:hover {
  background-color: #003f7f;
}

/* Franchise Enquiry Section */
.franchise-enquiry {
  padding: 60px 20px;
  background: #e0f7fa;
  text-align: center;
}
.franchise-enquiry h2 {
  font-size: 32px;
  color: #0055a5;
  margin-bottom: 40px;
}
.enquiry-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.enquiry-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
.enquiry-form {
  background: #aeb3f5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}
.enquiry-form h3 {
  font-size: 24px;
  color: #0055a5;
  margin-bottom: 20px;
}
.enquiry-form label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}
.enquiry-form button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0055a5;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
  cursor: pointer;
}
.enquiry-form button:hover {
  background-color: #003f7f;
}
.enquiry-form .whatsapp-btn {
  background-color: #25d366;
  margin-left: 10px;
}
.enquiry-form .whatsapp-btn:hover {
  background-color: #1da851;
}

/* Director's Message Section */
.director-message {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.director-message h2 {
  font-size: 32px;
  color: #0055a5;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}
.director-message-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.director-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: scaleUp 1s ease-out forwards;
}
.director-info {
  flex: 1;
  text-align: left;
}
.director-info p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
}
.director-info .director-name {
  font-size: 20px;
  font-weight: bold;
  color: #0055a5;
  margin-top: 20px;
  animation: fadeInUp 1s ease-out 0.7s forwards;
  opacity: 0;
}

/* Meet Our Team Section */
.meet-team {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.meet-team h2 {
  font-size: 32px;
  color: #0055a5;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}
.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.team-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-left 0.3s ease;
  border-left: 4px solid transparent;
}
.team-card:hover {
  transform: translateY(-5px);
  background-color: #e6f3ff; /* light blue */
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15); /* blue glow */
  border-left: 4px solid #007BFF; /* accent border */
}
.team-card:nth-child(1) { animation-delay: 0.3s; }
.team-card:nth-child(2) { animation-delay: 0.6s; }
.team-card:nth-child(3) { animation-delay: 0.9s; }
.team-card img {
  width: 100%;
  max-width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
.team-card h3 {
  font-size: 20px;
  color: #0055a5;
  margin-bottom: 10px;
}
.team-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* Students Review Section */
.students-review {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}
.students-review h2 {
  font-size: 32px;
  color: #0055a5;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}
.review-container {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  padding: 20px;
  margin: 10px;
  border-radius: 10px;
  min-width: 300px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-left 0.3s ease;
  border-left: 4px solid transparent;
}
.review-card:hover {
  transform: translateY(-5px);
  background-color: #e6f3ff; /* Light blue on hover */
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15); /* Blue glow */
  border-left: 4px solid #007BFF; /* Blue accent border */
}
.review-slider {
  display: flex;
  animation: scroll 20s linear infinite;
}
.review-card {
  flex: 0 0 300px;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 20px;
  margin: 0 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.review-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
.review-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 15px;
}
.review-card .student-name {
  font-size: 16px;
  font-weight: bold;
  color: #0055a5;
}
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Google Map Location Section */
.google-map {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}
.google-map h2 {
  font-size: 32px;
  color: #0055a5;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
}
.map-container {
  max-width: 1200px;
  margin: 0 auto;
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
}

/* Animation Keyframes */
@keyframes scaleUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes clickEffect {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.2) rotate(5deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* Footer Section */
footer {
  background-color: #0055a5;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #ffcc00;
}
.footer-section p, .footer-section a {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  text-decoration: none;
}
.footer-section a:hover {
  color: #ffcc00;
}
.footer-section ul {
  list-style: none;
  padding: 0;
}
.footer-section ul li {
  margin-bottom: 10px;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-icons a {
  font-size: 24px;
  color: #fff;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #ffcc00;
}
.footer-bottom {
  border-top: 1px solid #003f7f;
  padding-top: 20px;
  margin-top: 30px;
  font-size: 14px;
  color: #ccc;
}

/* Help Button */
.help-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffcc00;
  color: #333;
  border: 2px solid #e6b800;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s, transform 0.3s;
}
.help-button:hover {
  background-color: #e6b800;
  transform: scale(1.1);
}
.help-button i {
  font-size: 24px;
}

/* Help Form Modal */
.help-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  align-items: center;
  justify-content: center;
}
.help-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: fadeInUp 0.3s ease-out;
}
.help-modal-content h3 {
  font-size: 24px;
  color: #0055a5;
  margin-bottom: 20px;
  text-align: center;
}
.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}
.close-modal:hover {
  color: #0055a5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .top-bar-links {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }
  .top-bar-left, .top-bar-center, .top-bar-right {
    text-align: center;
    margin-bottom: 10px;
  }
  .top-bar-right a {
    display: inline-block;
    margin: 5px 5px;
  }
  .top-bar-btn {
    padding: 5px 8px;
    font-size: 11px;
  }
  .logo-container {
    gap: 15px;
  }
  .logo-img {
    width: 100px;
    height: 100px;
  }
  .enquiry-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .enquiry-image img {
    max-width: 100%;
    height: auto;
  }
  .enquiry-form {
    padding: 15px;
  }
  .enquiry-form h3 {
    font-size: 20px;
  }
  .enquiry-form input,
  .enquiry-form select,
  .enquiry-form textarea {
    padding: 8px;
    font-size: 14px;
  }
  .enquiry-form button,
  .enquiry-form .whatsapp-btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  .franchise-enquiry {
    padding: 40px 15px;
  }
  .franchise-enquiry h2 {
    font-size: 28px;
  }
  .who-are-we-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .who-are-we-image img {
    max-width: 100%;
  }
  .who-are-we-info {
    text-align: center;
  }
  .who-are-we-info h2 {
    font-size: 28px;
  }
  .who-are-we-info p {
    font-size: 14px;
  }
  .who-are-we {
    padding: 40px 15px;
  }
  .benefits-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .benefit-segment {
    padding: 20px;
  }
  .benefit-segment h2 {
    font-size: 24px;
  }
  .benefit-segment ul li {
    font-size: 14px;
  }
  .what-you-get-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .benefit-item h3 {
    font-size: 18px;
  }
  .benefit-item p {
    font-size: 12px;
  }
  .menu li a {
    padding: 12px 15px;
    font-size: 14px;
  }
  .menu li.highlight-btn a {
    padding: 8px 14px;
    font-size: 14px;
  }
  .director-message-container {
    flex-direction: column;
    text-align: center;
  }
  .director-info {
    text-align: center;
  }
  .director-image img {
    max-width: 200px;
  }
  .review-card {
    flex: 0 0 250px;
    margin: 0 10px;
  }
  .review-card img {
    width: 60px;
    height: 60px;
  }
  .map-container iframe {
    height: 300px;
  }
  .login-cards {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    padding: 15px;
  }
  .login-card {
    padding: 15px;
    max-width: 200px;
  }
  .login-card h3 {
    font-size: 16px;
  }
  .login-card a {
    font-size: 12px;
  }
  .login-card i {
    font-size: 24px;
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .help-button {
    width: 50px;
    height: 50px;
  }
  .help-button i {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .top-bar-links a, .top-bar-links p {
    font-size: 12px;
    margin: 0 5px;
  }
  .top-bar-center p {
    font-size: 12px;
  }
  .top-bar-btn {
    padding: 4px 6px;
    font-size: 10px;
  }
  .logo-container {
    gap: 10px;
  }
  .logo-img {
    width: 80px;
    height: 80px;
  }
  .enquiry-form {
    padding: 10px;
  }
  .enquiry-form h3 {
    font-size: 18px;
  }
  .enquiry-form label {
    font-size: 12px;
  }
  .enquiry-form input,
  .enquiry-form select,
  .enquiry-form textarea {
    padding: 6px;
    font-size: 12px;
  }
  .enquiry-form button,
  .enquiry-form .whatsapp-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  .franchise-enquiry h2 {
    font-size: 24px;
  }
  .who-are-we-info h2 {
    font-size: 24px;
  }
  .who-are-we-info p {
    font-size: 12px;
  }
  .benefit-segment h2 {
    font-size: 20px;
  }
  .benefit-segment ul li {
    font-size: 12px;
    padding-left: 20px;
  }
  .benefit-segment ul li::before {
    top: 1px;
  }
  .what-you-get h2 {
    font-size: 28px;
  }
  .what-you-get h4 {
    font-size: 16px;
  }
  .benefit-item {
    padding: 15px;
  }
  .menu li a {
    padding: 10px 12px;
    font-size: 12px;
  }
  .menu li.highlight-btn a {
    padding: 6px 12px;
    font-size: 12px;
  }
  .director-message h2 {
    font-size: 28px;
  }
  .director-info p {
    font-size: 14px;
  }
  .director-info .director-name {
    font-size: 18px;
  }

@media (max-width: 480px) {
  .meet-team h2 {
    font-size: 28px;
  }
  .team-card {
    padding: 15px;
  }
  .team-card img {
    width: 120px;
    height: 120px;
  }
  .team-card h3 {
    font-size: 18px;
  }
  .team-card p {
    font-size: 12px;
  }
  .students-review h2 {
    font-size: 28px;
  }
  .review-card {
    flex: 0 0 200px;
    padding: 15px;
    margin: 0 5px;
  }
  .review-card p {
    font-size: 12px;
  }
  .review-card .student-name {
    font-size: 14px;
  }
  .popular-courses h2 {
    font-size: 28px;
  }
  .course-card {
    padding: 15px;
  }
  .course-card img {
    height: 120px;
  }
  .course-card .enquire-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  .google-map h2 {
    font-size: 28px;
  }
  .map-container iframe {
    height: 250px;
  }
  .footer-section h3 {
    font-size: 18px;
  }
  .footer-section p, .footer-section a {
    font-size: 12px;
  }
  .footer-section ul li {
    font-size: 12px;
  }
  .social-icons a {
    font-size: 20px;
  }
  .footer-bottom p {
    font-size: 12px;
  }
  .help-modal-content {
    padding: 15px;
    max-width: 300px;
  }
  .help-modal-content h3 {
    font-size: 20px;
  }
  .help-modal-content label {
    font-size: 12px;
  }
  .help-modal-content input,
  .help-modal-content textarea {
    padding: 6px;
    font-size: 12px;
  }
  .help-modal-content button {
    padding: 6px 12px;
    font-size: 12px;
  }
  .close-modal {
    font-size: 16px;
  }
}

  .slider img {
  width: 100%;
  max-height: 628px;
  display: none;
  transition: opacity 1s ease-in-out;
}
.slider img.active {
  display: block;
}

  
  .slider img {
  display: none;
  width: 100%;
  height: auto;
  transition: opacity 1s ease-in-out;
}

.slider img.active {
  display: block;
}


.map-container iframe { width: 100%; height: 400px; border: 0; }

.google-map iframe {
  width: 100% !important;
  height: 450px;
  border: 0;
}
 
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  background: #fff;
  padding: 25px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.modal-content input,
.modal-content textarea {
  width: 100%;
  margin: 8px 0 16px;
  padding: 10px;
  border: 1px solid #ccc;
}

.modal-content button {
  padding: 10px 20px;
  background-color: #0074d9;
  color: #fff;
  border: none;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
