/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: row-reverse; /* Mirror navigation */
}

.nav-brand .logo {
  height: 50px;
  width: auto;
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  flex-direction: row-reverse; /* Mirror menu items */
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu a:hover {
  color: #00A3E4;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  right: 0; /* Changed from left: 0 to right: 0 */
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  text-align: right; /* Mirror text alignment */
}

.dropdown-content a:hover {
  background-color: #f8f9fa;
  color: #00A3E4;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0%;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  width:100%;
  /* height:100%; */
  object-fit: scale-down;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content:center;
  margin:0 auto;
  
}

.hero-cta {
  display: flex;
  gap: 1rem;
  max-width: 1200px;
  margin-top: 500px;
}

.cta-btn {
  padding: 18px 30px;
  border: none;
  border-radius: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 400px;
}

.primary-cta {
  background-color: #000;
  color: white;
}

.primary-cta:hover {
  background-color: #00A3E4;
  transform: translateX(-5px); /* Mirror hover effect */
}

.secondary-cta {
  background-color: transparent;
  color: #000;
  border: 2px solid #000;
}

.secondary-cta:hover {
  background-color: #000;
  color: white;
  transform: translateX(-5px); /* Mirror hover effect */
}

/* About Section */
.about-section {
  padding: 6rem 0;
  margin-top: 0%;
  background-color: #f8f9fa;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  order: 2; /* Mirror content order */
  text-align: right; /* Mirror text alignment */
}

.about-image {
  order: 1; /* Mirror image order */
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.about-content h3 {
  font-size: 1.5rem;
  color: #00A3E4;
  margin-bottom: 2rem;
  font-weight: 400;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: #666;
  line-height: 1.8;
  font-size: 1.1rem;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: flex-end; /* Mirror stats alignment */
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #B8B7B9;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Classes Section */
.classes-section {
  padding: 6rem 0;
  background-color: white;
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.class-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.class-card:hover {
  transform: translateY(-5px);
}

.class-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.class-content {
  padding: 2rem;
  text-align: right; /* Mirror text alignment */
}

.class-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.class-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.class-features {
  list-style: none;
  margin-bottom: 2rem;
}

.class-features li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-right: 1.5rem; /* Changed from padding-left */
  text-align: right;
}

.class-features li:before {
  content: "✓";
  position: absolute;
  right: 0; /* Changed from left: 0 */
  color: #00A3E4;
  font-weight: bold;
}

.class-btn {
  width: 100%;
  padding: 12px;
  background-color: #00A3E4;
  color: white;
  border: none;
  border-radius: 5px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.class-btn:hover {
  background-color: #00A3E4;
}

/* Instructors Section */
/* .instructors-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.instructor-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.instructor-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.instructor-info {
  padding: 2rem;
}

.instructor-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.instructor-title {
  color: #00A3E4;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.instructor-bio {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.instructor-credentials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.instructor-credentials span {
  background-color: #f0f0f0;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
} */

/* Timetables Section */
.timetables-section {
  /* padding: 6rem 0; */
  background-color: white;
}

.timetable-container {
  /* max-width: 800px; */
  margin: 0 auto;
}

.timetable-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 1rem;
}

.tab-btn {
  padding: 12px 24px;
  background-color: transparent;
  border: 2px solid black;
  color: #00A3E4;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.tab-btn.active,
.tab-btn:hover {
  background-color: #00A3E4;
  color: white;
}

.timetable {
  display: none;
}

.timetable.active {
  display: block;
}

.timetable-grid {
  display: flex;
  /* flex-direction: column; */
  gap: 2rem;
}

.time-slot {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 10px;
  border-right: 4px solid #00A3E4; /* Changed from border-left */
  flex-direction: row-reverse; /* Mirror time slot layout */
}

.time {
  font-family: "Oswald", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: black;
  min-width: 100px;
  text-align: right; /* Mirror text alignment */
}

.class-info {
  flex: 1;
  margin-right: 2rem; /* Changed from margin-left */
  text-align: right; /* Mirror text alignment */
}

.class-name {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}

.instructor {
  color: #666;
  font-size: 0.9rem;
}

/* Memberships Section */
.memberships-section {
  padding: 6rem 0;
  background-color: #f8f9fa;
}

.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.membership-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.membership-card:hover {
  transform: translateY(-5px);
}

.membership-card.featured {
  border: 3px solid #00A3E4;
  transform: scale(1.05);
}

.membership-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00A3E4;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.membership-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.price {
  margin-bottom: 2rem;
}

.currency {
  font-size: 1.5rem;
  color: #666;
}

.amount {
  font-size: 3rem;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #B8B7B9;
}

.period {
  font-size: 1rem;
  color: #666;
}

.membership-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: right; /* Mirror text alignment */
}

.membership-features li {
  padding: 0.75rem 0;
  color: #666;
  position: relative;
  padding-right: 2rem; /* Changed from padding-left */
  border-bottom: 1px solid #f0f0f0;
}

.membership-features li:before {
  content: "✓";
  position: absolute;
  right: 0; /* Changed from left: 0 */
  color: #00A3E4;
  font-weight: bold;
  font-size: 1.2rem;
}

.membership-btn {
  width: 100%;
  padding: 15px;
  background-color: #00A3E4;
  color: white;
  border: none;
  border-radius: 5px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.membership-btn:hover {
  background-color: black;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  border-right: 4px solid #00A3E4; /* Changed from border-left */
}

.testimonial-content {
  margin-bottom: 2rem;
  text-align: right; /* Mirror text alignment */
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial-content p {
  color: #666;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-direction: row-reverse; /* Mirror author layout */
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info {
  text-align: right; /* Mirror text alignment */
}

.author-info h4 {
  color: #333;
  margin-bottom: 0.25rem;
}

.author-info span {
  color: #666;
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background-color: #1f2937;
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  order: 2; /* Mirror contact info order */
  text-align: right; /* Mirror text alignment */
}

.contact-form-container {
  order: 1; /* Mirror form order */
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  color: #d1d5db;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: row-reverse; /* Mirror contact item layout */
}

.contact-item i {
  color: #00A3E4;
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.contact-item h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #d1d5db;
  margin: 0;
}

.contact-form-container {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
}

.contact-form h3 {
  color: #333;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: right; /* Mirror text alignment */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid #e5e5e5;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: "Open Sans", sans-serif;
  text-align: right; /* Mirror input text alignment */
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00A3E4;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-direction: row-reverse; /* Mirror checkbox layout */
}

.checkbox-group input {
  width: auto;
  margin-top: 0.25rem;
}

.checkbox-group label {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: right; /* Mirror text alignment */
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: #00A3E4;
  color: white;
  border: none;
  border-radius: 5px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: black;
}

/* Footer */
.footer {
  background-color: #111827;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Mirror footer columns */
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  order: 2; /* Mirror footer brand order */
  text-align: right; /* Mirror text alignment */
}

.footer-links {
  order: 1; /* Mirror footer links order */
}

.footer-logo {
  height: 60px;
  width: auto;
  border-radius: 50%;
  align-self: flex-end; /* Mirror logo alignment */
}

.footer-brand p {
  color: #9ca3af;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-end; /* Mirror social links alignment */
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #374151;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #00A3E4;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: white;
  font-size: 1.1rem;
  text-align: right; /* Mirror text alignment */
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
  text-align: right; /* Mirror text alignment */
}

.footer-column ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-column ul li i {
  margin-left: 0.5rem; /* Changed from margin-right */
  color: #00A3E4;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: white;
  margin: 3% auto;
  padding: 0;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.close {
  color: #aaa;
  float: left; /* Changed from float: right */
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  left: 15px; /* Changed from right: 15px */
  top: 10px;
  cursor: pointer;
  z-index: 2001;
}

.close:hover {
  color: #000;
}

.modal-body {
  padding: 2rem;
  text-align: right; /* Mirror text alignment */
}

.modal-body h2 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.modal-body p {
  color: #666;
  margin-bottom: 2rem;
}

.trial-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.trial-form .form-group {
  margin-bottom: 1rem;
}

.trial-form input,
.trial-form select {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e5e5;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  text-align: right; /* Mirror input text alignment */
}

.trial-form input:focus,
.trial-form select:focus {
  outline: none;
  border-color: #00A3E4;
}

/* Success/Error Messages */
.success-message {
  background-color: #10b981;
  color: white;
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 1rem;
}

.error-message {
  background-color: red;
  color: white;
  padding: 1rem;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav {
    flex-direction: row; /* Reset on mobile */
  }

  .nav-menu {
    flex-direction: column; /* Reset on mobile */
  }

  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding-left: 2%; /* Reset on mobile */
    padding-right: 2%;
    justify-content: center; /* Reset on mobile */
  }

  .hero-cta {
    text-align: center; /* Reset on mobile */
  }
  .hero-image {
padding-top: 40%;
    width: 100%;
    height: auto;
  }

  .cta-btn {
    min-width: auto;
    width: 100%;
    font-size: 0.9rem;
    padding: 15px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-content {
    order: 1; /* Reset on mobile */
    text-align: center; /* Reset on mobile */
  }

  .about-image {
    order: 2; /* Reset on mobile */
  }

  .stats {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    order: 1; /* Reset on mobile */
    text-align: center; /* Reset on mobile */
  }

  .contact-form-container {
    order: 2; /* Reset on mobile */
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    order: 1; /* Reset on mobile */
    text-align: center; /* Reset on mobile */
  }

  .footer-links {
    order: 2; /* Reset on mobile */
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trial-form .form-row {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .membership-card.featured {
    transform: none;
  }

  .timetable-tabs {
    flex-direction: column;
    align-items: center;
  }

  .time-slot {
    flex-direction: column; /* Reset on mobile */
    text-align: center;
  }

  .class-info {
    margin-left: 0;
    margin-right: 0; /* Reset on mobile */
    margin-top: 1rem;
    text-align: center; /* Reset on mobile */
  }

  .class-content {
    text-align: center; /* Reset on mobile */
  }

  .class-features {
    text-align: left; /* Reset on mobile */
  }

  .class-features li {
    text-align: left; /* Reset on mobile */
    padding-left: 1.5rem; /* Reset on mobile */
    padding-right: 0; /* Reset on mobile */
  }

  .class-features li:before {
    left: 0; /* Reset on mobile */
    right: auto; /* Reset on mobile */
  }

  .membership-features {
    text-align: left; /* Reset on mobile */
  }

  .membership-features li {
    text-align: left; /* Reset on mobile */
    padding-left: 2rem; /* Reset on mobile */
    padding-right: 0; /* Reset on mobile */
  }

  .membership-features li:before {
    left: 0; /* Reset on mobile */
    right: auto; /* Reset on mobile */
  }

  .testimonial-card {
    border-left: 4px solid #00A3E4; /* Reset on mobile */
    border-right: none; /* Reset on mobile */
  }

  .testimonial-content {
    text-align: left; /* Reset on mobile */
  }

  .testimonial-author {
    flex-direction: row; /* Reset on mobile */
  }

  .author-info {
    text-align: left; /* Reset on mobile */
  }

  .contact-item {
    flex-direction: row;
    align-self: center; /* Reset on mobile */
  }

  .contact-form h3 {
    text-align: center; /* Reset on mobile */
  }

  .modal-body {
    text-align: center; /* Reset on mobile */
  }

  .trial-form input,
  .trial-form select,
  .form-group input,
  .form-group select,
  .form-group textarea {
    text-align: left; /* Reset on mobile */
  }

  .checkbox-group {
    flex-direction: row; /* Reset on mobile */
  }

  .checkbox-group label {
    text-align: left; /* Reset on mobile */
  }

  .footer-column h4 {
    text-align: center; /* Reset on mobile */
  }

  .footer-column ul li {
    text-align: center; /* Reset on mobile */
  }

  .footer-column ul li i {
    margin-right: 0.5rem; /* Reset on mobile */
    margin-left: 0; /* Reset on mobile */
  }

  .social-links {
    justify-content: center; /* Reset on mobile */
  }

  .footer-logo {
    align-self: center; /* Reset on mobile */
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-content {
    padding-left: 2%;
    padding-right: 2%;
  }

  .cta-btn {
    font-size: 0.8rem;
    padding: 12px 15px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .stats {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%; /* Changed from left: -100% */
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white; /* Already white, keeping it */
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 2rem;
    transition: right 0.3s ease; /* Changed from left transition */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0; /* Changed from left: 0 */
  }

  .nav-menu li {
    margin: 1rem 0;
    width: 90%;
    text-align: center; /* Center the navigation items */
  }

  .nav-menu a {
    font-size: 1.1rem;
    padding: 1rem;
    width: 100%;
    text-align: center; /* Center the text in navigation links */
    border-bottom: 1px solid #f0f0f0;
    justify-content: center; /* Center flex content */
  }

  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #f8f9fa;
    margin-top: 0.5rem;
  }

  .dropdown-content a {
    text-align: center; /* Center dropdown items */
  }
.timetable-grid {
  display: inline;
}
  }

