/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Mobile viewport height fix */
  height: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  /* Mobile viewport height fix */
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}

/* Mobile viewport height variable */
:root {
  --vh: 1vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 2rem;
}
h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-phone {
  background: #007bff;
  color: white;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-logo i {
  color: #667eea;
  margin-right: 10px;
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style-type: none;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #667eea;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #667eea;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.register-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  padding: 10px 20px;
  border-radius: 25px;
}

.register-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23667eea" width="1200" height="800"/><circle fill="%23764ba2" cx="300" cy="200" r="100"/><circle fill="%23667eea" cx="900" cy="600" r="150"/></svg>');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: slideInLeft 1s ease 0.3s both;
}

.hero-subtitle {
  color: #c6c6c6;
  font-size: 1.7rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: slideInRight 1s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.9s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  font-size: 2rem;
  color: white;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  color: #333;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Introduction Section */
.intro {
  background: #f8f9fa;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-content h2 {
  color: #333;
  margin-bottom: 1.5rem;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: left 0.3s ease;
  z-index: 1;
}

.feature-card:hover::before {
  left: 0;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.feature-card:hover .feature-icon {
  color: white;
}

.feature-card h3 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.feature-card p {
  position: relative;
  z-index: 2;
}

.feature-card:hover h3,
.feature-card:hover p {
  color: white;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.testimonials .section-title {
  color: white;
}

.testimonials-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-card {
  display: none;
  text-align: center;
  padding: 2rem;
}

.testimonial-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: white;
}

.testimonial-author h4 {
  color: white;
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  opacity: 0.8;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: white;
  color: #667eea;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
}

/* Courses Section */
.courses-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #667eea;
  background: transparent;
  color: #667eea;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
  background: #667eea;
  color: white;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
  gap: 2rem;
}

.course-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-image {
  height: 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
}

.course-content {
  padding: 2rem;
}

.course-content h3 {
  color: #333;
  margin-bottom: 1rem;
}

.course-details {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
  font-size: 0.9rem;
  color: #666;
}

.course-details span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.course-features,
.course-requirements {
  margin: 1.5rem 0;
}

.course-features h4,
.course-requirements h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.course-features ul,
.course-requirements ul {
  list-style: none;
  padding-left: 0;
}

.course-features ul li,
.course-requirements ul li {
  padding: 0.3rem 0;
  color: #666;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.course-features ul li::before,
.course-requirements ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: bold;
}

/* About Section */
.about {
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  color: #333;
  margin-top: 2rem;
}

.about-text h3:first-child {
  margin-top: 0;
}

.values-list,
.benefits-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.values-list li,
.benefits-list li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.values-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #667eea;
  font-weight: bold;
  font-size: 1.2rem;
}

.benefits-list li {
  color: #333;
  font-weight: 500;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-item h3 {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #666;
  font-weight: 500;
}
.management-team {
  padding: 3rem 1rem 2rem 1rem;
  background: #f8f9fa;
  text-align: center;
}

.management-team h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}

.team-member {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.08);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid var(--primary);
}

.team-member h3 {
  margin-bottom: 0.5rem;
  color: var(--secondary);
  font-size: 1.15rem;
  font-weight: 600;
}

.team-member p {
  color: #444;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .team-list {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}

/* Instructors Section */
.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.instructor-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.instructor-image {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 3rem;
  color: white;
}

.instructor-info h3 {
  color: #333;
  margin-bottom: 0.5rem;
}

.instructor-info p {
  color: #667eea;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.instructor-skills {
  text-align: left;
}

.skill-bar {
  margin-bottom: 1rem;
}

.skill-bar span {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.skill-progress {
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 4px;
  width: 0;
  transition: width 1s ease;
}

/* Registration Section */
.registration {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.registration .section-title {
  color: white;
}

.registration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.registration-info h3 {
  color: white;
  margin-bottom: 1rem;
}

.registration-info p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.registration-benefits {
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.benefit-item i {
  color: #25d366;
  font-size: 1.2rem;
}

.registration-form {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.contact-info h3 {
  color: #333;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #666;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  color: #667eea;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.contact-item h4 {
  color: #333;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #666;
  margin-bottom: 0;
}

.contact-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-container {
  height: 400px;
  background: #f8f9fa;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.map-placeholder i {
  font-size: 4rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.map-placeholder p {
  color: #666;
  margin-bottom: 0.5rem;
}

.map-placeholder h3 {
  color: #333;
  margin-bottom: 1rem;
}

.location-details {
  margin-top: 1.5rem;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #666;
}

.detail-item i {
  color: #667eea;
  width: 20px;
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: #667eea;
  margin-right: 10px;
  font-size: 2rem;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #667eea;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #667eea;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #764ba2;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555;
  color: #ccc;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.back-to-top.show {
  display: flex;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  text-align: center;
  animation: slideInUp 0.3s ease;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #333;
}

.modal-body i {
  font-size: 4rem;
  color: #25d366;
  margin-bottom: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ Section */
.faq {
  background: #f8f9fa;
  padding: 4rem 0;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.08);
  margin-bottom: 1.5rem;
  border: none;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: 0 6px 24px rgba(102, 126, 234, 0.13);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-size: 1.18rem;
  border-radius: 12px 12px 0 0;
}

.faq-answer {
  padding: 0 2rem;
  font-size: 1.08rem;
  background: #f8f9fa;
  border-radius: 0 0 12px 12px;
}

.faq-toggle:checked ~ .faq-answer {
  padding: 1.2rem 2rem 1.5rem 2rem;
}

.about-achievements {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin: 0 auto 2.5rem auto;
  max-width: 900px;
  padding: 2rem 1rem 0 1rem;
}
.achievement-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.08);
  text-align: center;
  padding: 1.2rem 1.5rem;
  min-width: 140px;
}
.achievement-item h3 {
  color: var(--primary, #667eea);
  font-size: 2.2rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.achievement-item p {
  color: #444;
  font-size: 1.05rem;
  margin: 0;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.about-section.reverse {
  flex-direction: row-reverse;
}
.about-text {
  flex: 1 1 0;
  min-width: 260px;
}
.about-text h3 {
  color: var(--secondary, #764ba2);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.about-text p,
.about-text ul {
  font-size: 1.08rem;
  color: #333;
  line-height: 1.7;
}
.about-img {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-img img {
  width: 100%;
  max-width: 340px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.1);
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-achievements {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 0.5rem 0 0.5rem;
  }
  .about-section,
  .about-section.reverse {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .about-img img {
    max-width: 95vw;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .registration-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .courses-filter {
    flex-direction: column;
    align-items: center;
  }

  .filter-btn {
    width: 200px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-buttons {
    justify-content: center;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* Enhanced mobile styles */
  .container {
    padding: 0 15px;
  }

  .section-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .instructors-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .course-card {
    margin-bottom: 1rem;
  }

  .course-features,
  .course-requirements {
    margin: 1rem 0;
  }

  .course-features ul li,
  .course-requirements ul li {
    font-size: 0.95rem;
  }

  .registration-form,
  .contact-form-container {
    padding: 1.5rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    margin-bottom: 0.5rem;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .contact-buttons .btn {
    width: 100%;
    max-width: 250px;
  }

  .map-container {
    height: 300px;
  }

  .testimonials-carousel {
    padding: 0 1rem;
  }

  .testimonial-content p {
    font-size: 1.1rem;
  }

  .carousel-controls {
    gap: 1rem;
  }

  .modal-content {
    width: 95%;
    margin: 20px auto;
  }

  /* Increased font sizes for better readability */
  p {
    font-size: 1.05rem;
  }

  .feature-card h3,
  .course-card h3,
  .instructor-card h3 {
    font-size: 1.4rem;
  }

  .feature-card p,
  .course-card p,
  .instructor-card p {
    font-size: 1rem;
  }

  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1.05rem;
  }

  .values-list li,
  .benefits-list li {
    font-size: 1rem;
  }

  .stat-item h3 {
    font-size: 2.8rem;
  }

  .stat-item p {
    font-size: 1.1rem;
  }

  .faq-question h3 {
    font-size: 1.2rem;
  }

  .faq-answer p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-card,
  .course-card,
  .instructor-card {
    padding: 1.5rem;
  }

  .registration-form,
  .contact-form-container {
    padding: 1.2rem;
  }

  .modal-content {
    padding: 1.2rem;
  }

  .nav-container {
    padding: 0 15px;
  }

  .hero-content {
    padding: 0 15px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .about-text h3 {
    font-size: 1.4rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .values-list li,
  .benefits-list li {
    font-size: 0.95rem;
  }

  .stat-item {
    padding: 1.5rem;
  }

  .stat-item h3 {
    font-size: 2.6rem;
  }

  .instructor-image {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .course-image {
    height: 150px;
    font-size: 3rem;
  }

  .course-details {
    flex-direction: column;
    gap: 0.5rem;
  }

  .course-details span {
    font-size: 0.9rem;
  }

  .footer-content {
    gap: 1.5rem;
  }

  .social-links {
    justify-content: center;
  }

  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }

  /* Increased font sizes for better readability */
  p {
    font-size: 1rem;
  }

  .feature-card h3,
  .course-card h3,
  .instructor-card h3 {
    font-size: 1.3rem;
  }

  .feature-card p,
  .course-card p,
  .instructor-card p {
    font-size: 0.95rem;
  }

  .course-features ul li,
  .course-requirements ul li {
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 1rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 1rem;
  }

  .btn {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .container {
    padding: 0 10px;
  }

  .feature-card,
  .course-card,
  .instructor-card {
    padding: 1.2rem;
  }

  .registration-form,
  .contact-form-container {
    padding: 1rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.95rem;
  }

  .nav-logo span {
    font-size: 1.3rem;
  }

  .nav-logo i {
    font-size: 1.6rem;
  }

  .stat-item h3 {
    font-size: 2.2rem;
  }

  .course-image {
    height: 120px;
    font-size: 2.5rem;
  }

  .instructor-image {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  /* Increased font sizes for better readability */
  p {
    font-size: 0.95rem;
  }

  .feature-card h3,
  .course-card h3,
  .instructor-card h3 {
    font-size: 1.2rem;
  }

  .feature-card p,
  .course-card p,
  .instructor-card p {
    font-size: 0.9rem;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .values-list li,
  .benefits-list li {
    font-size: 0.9rem;
  }

  .course-features ul li,
  .course-requirements ul li {
    font-size: 0.85rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.95rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .nav-menu {
    max-height: 70vh;
    overflow-y: auto;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .feature-icon,
  .course-image i,
  .instructor-image i {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  .nav-link {
    padding: 12px 8px;
  }

  .filter-btn {
    min-height: 44px;
  }

  .carousel-btn {
    min-width: 44px;
    min-height: 44px;
  }

  .feature-card,
  .course-card,
  .instructor-card {
    cursor: default;
  }

  .feature-card:hover,
  .course-card:hover,
  .instructor-card:hover {
    transform: none;
  }
}

/* Print styles */
@media print {
  .navbar,
  .nav-toggle,
  .back-to-top,
  .carousel-controls,
  .courses-filter,
  .contact-buttons {
    display: none !important;
  }

  .hero {
    height: auto;
    background: none !important;
    color: black !important;
  }

  .section {
    page-break-inside: avoid;
  }

  .course-card,
  .feature-card,
  .instructor-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0.5rem;
}
.faq-toggle {
  display: none;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 1.2rem 0;
  font-weight: 600;
  color: #222;
  transition: color 0.2s;
}
.faq-question:hover {
  color: var(--primary, #667eea);
}
.faq-question h3 {
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}
.faq-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #667eea;
  transition: transform 0.3s;
}
.faq-icon::before {
  top: 10px;
  left: 4px;
  width: 14px;
  height: 2px;
  border-radius: 1px;
}
.faq-icon::after {
  left: 10px;
  top: 4px;
  width: 2px;
  height: 14px;
  border-radius: 1px;
}
.faq-toggle:checked + .faq-question .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
  padding: 0 0.5rem;
  color: #444;
  background: #f8f9fa;
}
.faq-toggle:checked ~ .faq-answer {
  max-height: 300px;
  padding: 1rem 0.5rem 1.2rem 0.5rem;
}
.hero-slideshow {
  position: relative;
  width: 100%;
  min-height: 80vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slideshow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-slideshow-bg .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  will-change: opacity;
}
.hero-slideshow-bg .slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(34, 39, 63, 0.5) 0%,
    rgba(102, 126, 234, 0.4) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn.btn-primary {
  background: var(--primary, #667eea);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  border: none;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.btn.btn-primary:hover {
  background: var(--secondary, #764ba2);
  color: #fff;
}
.btn.btn-secondary {
  background: #fff;
  color: var(--primary, #667eea);
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  border: 2px solid var(--primary, #667eea);
  transition: background 0.2s, color 0.2s;
}
.btn.btn-secondary:hover {
  background: var(--primary, #667eea);
  color: #fff;
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-content {
    max-width: 98vw;
  }
  .hero-slideshow {
    min-height: 60vh;
    height: 70vh;
  }
}
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.2rem;
  }
  .hero-subtitle {
    font-size: 0.97rem;
  }
  .hero-content {
    padding: 0 0.5rem;
  }
  .hero-slideshow {
    min-height: 50vh;
    height: 60vh;
  }
}

/* Add to styles.css */
.course-car-types {
  margin: 1em 0 0.5em 0;
}
.course-car-types h4 {
  margin-bottom: 0.5em;
  font-size: 1rem;
  font-weight: 600;
}
.course-car-types ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.5em;
}
.course-car-types li {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}
.course-car-types i {
  color: #2ecc40;
  margin-right: 0.5em;
}
/* Branches Section Styles */
.branches {
  padding: 3em 0;
  background: #f8f9fa;
}
.branches-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}
.branch-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}
.branch-card:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}
.branch-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.branch-info {
  padding: 1em;
  text-align: center;
}
.branch-info h3 {
  margin-bottom: 0.5em;
  color: #2c3e50;
}
@media (max-width: 900px) {
  .branches-grid {
    flex-direction: column;
    align-items: center;
  }
  .branch-card {
    max-width: 95%;
  }
}
