/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #333;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo img {
  height: 50px;
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #ff6600;
}

header .cta {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

header .cta:hover {
  background-color: #e65c00;
}

header .apply-now {
  background-color: #28a745;
}

header .apply-now:hover {
  background-color: #218838;
}

.hero {
  background: url('img/cover.jpeg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-content .cta {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-content .cta:hover {
  background-color: #218838;
}

.services, .about, .why-choose-us, .testimonials, .contact {
  padding: 80px 20px;
  text-align: center;
}

.services h2, .about h2, .why-choose-us h2, .testimonials h2, .contact h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-cards, .testimonial-cards, .reasons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.card, .reason {
  width: 30%;
  margin: 20px 0;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover, .reason:hover {
  transform: translateY(-10px);
}

.card img, .reason img {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.card h3, .reason h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card p, .reason p {
  font-size: 1rem;
  color: #666;
}

.about {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  flex: 1;
  text-align: left;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.about-content .cta {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.about-content .cta:hover {
  background-color: #e65c00;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.why-choose-us {
  background-color: #f9f9f9;
}

.contact {
  background-color: #fff;
  padding: auto;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.contact-form {
  flex: 1;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

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

.form-group textarea {
  resize: vertical;
}

.contact-form .cta {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.contact-form .cta:hover {
  background-color: #e65c00;
}

.contact-info {
  flex: 1;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #333;
}

.contact-info p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.contact-info ul li strong {
  color: #ff6600;
}

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

.social-links .social-icon img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-links .social-icon:hover img {
  transform: scale(1.2);
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
}

footer p {
  margin: 0;
}

footer .footer-links {
  margin-top: 10px;
}

footer .footer-links a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer .footer-links a:hover {
  color: #ff6600;
}

/* Animations */
.animate__animated {
  animation-duration: 1s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .service-cards, .testimonial-cards, .reasons {
    gap: 15px;
  }

  .card, .reason {
    width: 45%;
  }

  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    text-align: center;
  }

  .about-image {
    margin-top: 20px;
  }

  .contact-container {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }

  header .apply-now {
    display: block;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .card, .reason {
    width: 100%;
  }

  .about-content h2 {
    font-size: 2rem;
  }

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

  .contact-form, .contact-info {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.8rem;
  }

  .services h2, .about h2, .why-choose-us h2, .testimonials h2, .contact h2 {
    font-size: 2rem;
  }

  .card h3, .reason h3 {
    font-size: 1.2rem;
  }

  .card p, .reason p {
    font-size: 0.9rem;
  }

  .contact-info h3 {
    font-size: 1.5rem;
  }

  .contact-info p, .contact-info ul li {
    font-size: 0.9rem;
  }
}