@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --primary: #0073ba;
  --primary-dark: #3a56d4;
  --secondary: #e6b122;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --success: #28a745;
}

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

body {
  font-family: 'Montserrat','Poppins', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
}
.btn .btn-primary{
  background-color: #F47C2C;
}

/* Header & Navigation */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  color: var(--primary);
  text-decoration: none;
}

.logo img {
  margin-right: 10px;
  height: 40px;
}
.yallow{
  color: var(--secondary);
}
.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav ul {
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 15px;
}

.mobile-nav a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 18px;
  display: block;
  padding: 8px 0;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* Hero Carousel */
.carousel {
  position: relative;
  height: 90vh;
  margin-top: 70px;
  overflow: hidden;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-item.active {
  opacity: 1;
  z-index: 1;
}

.carousel-item video,
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 80%;
  max-width: 800px;
}

.carousel-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.carousel-text p {
  font-size: 18px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin: 10px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Section Styling */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--secondary);
}

.section-title p {
  font-size: 18px;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
}

/* Services Section */
#services {
  background-color: #f9f9f9;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

.service-icon {
  font-size: 48px;
  color: var(--secondary);
  margin-bottom: 20px;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
}

.service-link {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.service-link:hover {
  color: var(--primary-dark);
}

/* Contact Section */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.contact-form-container {
  flex: 1;
  min-width: 300px;
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .input-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.submit-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.submit-btn i {
  margin-right: 8px;
}

.submit-btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.map-container {
  flex: 1;
  min-width: 300px;
}

.map-container h3 {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 24px;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Info Section */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
  padding: 0 15px;
}

.contact-info-item {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-info-icon {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 15px;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  background-color: rgba(67, 97, 238, 0.1);
  border-radius: 50%;
}

.contact-info-item h3 {
  margin-bottom: 10px;
  color: var(--dark);
}

.contact-info-item p, .contact-info-item a {
  color: var(--gray);
  transition: color 0.3s;
}

.contact-info-item a:hover {
  color: var(--primary);
}

/* Form Success Message */
.form-success {
  display: none;
  background-color: var(--success);
  color: white;
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.form-success.active {
  display: block;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

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

.footer-column ul li {
  margin-bottom: 10px;
}

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

.footer-column ul li a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #32383e;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Media Queries */
@media (max-width: 992px) {
  .carousel-text h1 {
      font-size: 36px;
  }
  
  .contact-container {
      flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
      display: none;
  }
  
  .mobile-menu-btn {
      display: block;
  }
  
  .carousel-text h1 {
      font-size: 30px;
  }
  
  section {
      padding: 60px 0;
  }
  
  .section-title h2 {
      font-size: 30px;
  }
  
  .contact-content {
      flex-direction: column;
  }
}

@media (max-width: 576px) {
  .carousel-text h1 {
      font-size: 24px;
  }
  
  .carousel-text p {
      font-size: 16px;
  }
  
  .btn {
      padding: 10px 18px;
      font-size: 14px;
  }
  
  .contact-info-item {
      width: 100%;
  }
  
  .service-card {
      padding: 20px;
  }
}
.alpha{
  width: 50px;
  height: 50px;
}
#testimonials {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
/* Testeminoal */
  #testimonials {
       padding: 80px 0;
 background-color: #ffffff;
  }
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }
  .section-title {
      text-align: center;
      margin-bottom: 60px;
  }
  .section-title h2 {
      font-size: 2.5rem;
      color: #333;
      margin-bottom: 15px;
      font-weight: 700;
  }
  .section-title p {
      font-size: 1.1rem;
      color: #666;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
  }
  /* Testimonials Slider Container */
  .testimonials-slider-wrapper {
      position: relative;
      max-width: 100%;
      overflow: hidden;
  }
  .testimonials-container {
      display: flex;
      transition: transform 0.5s ease-in-out;
      gap: 30px;
  }
  .testimonial-card {
      background: white;
      border-radius: 15px;
      padding: 40px 30px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      border: 1px solid #e9ecef;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex: 0 0 calc(33.333% - 20px);
      min-height: 450px;
      position: relative;
      overflow: hidden;
      justify-content: space-between;
  }
  .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #007bff, #0056b3);
      transform: scaleX(0);
      transition: transform 0.3s ease;
  }
  .testimonial-card:hover::before {
      transform: scaleX(1);
  }
  .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
      border-color: #007bff;
  }
  .student-photo {
      margin-bottom: 25px;
      position: relative;
  }
  .student-image {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #007bff;
      box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  }
  .default-avatar {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.2rem;
      font-weight: 700;
      text-transform: uppercase;
      box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  }
  .testimonial-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      width: 100%;
  }
  .testimonial-text {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #495057;
      margin-bottom: auto;
      font-style: italic;
      position: relative;
      padding: 0 20px;
      flex: 1;
      display: flex;
      align-items: center;
  }
  .testimonial-text::before {
      content: '"';
      font-size: 4rem;
      color: #007bff;
      position: absolute;
      top: -20px;
      left: -10px;
      opacity: 0.3;
      font-family: serif;
  }
  .testimonial-author {
      border-top: 2px solid #f8f9fa;
      padding-top: 20px;
      margin-top: 20px;
      width: 100%;
  }
  .author-name {
      font-size: 1.2rem;
      font-weight: 700;
      color: #007bff;
      margin: 0 0 10px 0;
  }
  .author-details {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
  }
  .detail {
      font-size: 0.9rem;
      color: #6c757d;
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      padding: 6px 14px;
      border-radius: 20px;
      border: 1px solid #e9ecef;
      font-weight: 500;
  }
  /* Navigation Arrows */
  .slider-arrows {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
  }
  .arrow {
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  }
  .arrow:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
      background: linear-gradient(135deg, #0056b3, #004085);
  }
  .arrow:active {
      transform: translateY(0);
  }
  .arrow:disabled {
      background: #6c757d;
      cursor: not-allowed;
      opacity: 0.5;
      transform: none;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  /* Dots Indicator */
  .slider-dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 30px;
  }
  .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #dee2e6;
      cursor: pointer;
      transition: all 0.3s ease;
  }
  .dot.active {
      background: #007bff;
      transform: scale(1.2);
  }
  .dot:hover {
      background: #6c757d;
  }
  .no-testimonials {
      text-align: center;
      padding: 80px 20px;
      color: #6c757d;
      font-size: 1.1rem;
  }
  /* Responsive Design */
  @media (max-width: 1024px) {
      .testimonial-card {
          flex: 0 0 calc(50% - 15px);
      }
  }
  @media (max-width: 768px) {
      .section-title h2 {
          font-size: 2rem;
      }
      
      .testimonial-card {
          flex: 0 0 100%;
          padding: 30px 20px;
      }
      
      .student-image, .default-avatar {
          width: 70px;
          height: 70px;
      }
      
      .default-avatar {
          font-size: 1.8rem;
      }
      .testimonial-text {
          font-size: 1rem;
          padding: 0 10px;
      }
      .arrow {
          width: 45px;
          height: 45px;
          font-size: 1rem;
      }
  }
  @media (max-width: 480px) {
      #testimonials {
          padding: 60px 0;
      }
      
      .container {
          padding: 0 15px;
      }
      
      .testimonial-card {
          padding: 25px 15px;
      }
      
      .author-details {
          flex-direction: column;
          gap: 8px;
      }
      .slider-arrows {
          gap: 15px;
          margin-top: 30px;
      }
  }
/* End Testeminoal */

/* Footer Improvements */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  color: #fff;
}

.footer-column h5 {
  margin: 15px 0 5px;
  color: #ddd;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary);
}

.footer-column p {
  color: #bbb;
  margin-bottom: 15px;
  line-height: 1.6;
}

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

.footer-column ul li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.footer-column ul li i {
  margin-right: 10px;
  color: var(--secondary);
}

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

.footer-column ul li a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.app-download {
  margin-top: 15px;
}

.app-download a {
  display: inline-block;
  margin: 5px 0;
  transition: transform 0.3s ease;
}

.app-download a:hover {
  transform: translateY(-3px);
}

.app-download img {
  max-width: 140px;
  height: auto;
}

.footer-column iframe {
  width: 100%;
  max-width: 300px;
  height: 150px;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid #444;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #3a3a3a;
}

.footer-bottom p {
  color: #999;
  font-size: 14px;
}

/* Media Queries for Responsive Footer */
@media (max-width: 992px) {
  .footer-column {
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    gap: 40px;
  }
  
  .footer-column {
    flex: 0 0 calc(50% - 20px);
  }
  
  .footer-column iframe {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .footer-column {
    flex: 0 0 100%;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .app-download {
    text-align: center;
  }
}
/* App Download Styling */
.app-download {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-item {
  margin-bottom: 5px;
}

.app-link {
  display: flex;
  align-items: center;
  background-color: #333;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.app-link:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.app-link i {
  font-size: 24px;
  margin-right: 10px;
  color: var(--secondary);
}

.app-link span {
  font-weight: 500;
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .app-download {
      align-items: center;
  }
  
  .app-link {
      min-width: 160px;
      justify-content: center;
  }
}