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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow Condensed', sans-serif;
  background-color: #000000;
  color: #FFFFFF;
}

.hero-section {
  height: 100vh;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.hero-section p {
  font-size: 5rem;
  margin-bottom: 30px;
  color: #f36100;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.618);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.overlay {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.logo {
  position: absolute;
  top: 8px;
  left: 30px;
  z-index: 3;
  height: 120px;
  width: auto;
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 10px 30px;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-top: 35px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #f36100;
}

.navbar ul li a.contact-link {
  color: #f36100 !important;
  font-weight: bold;
}

.navbar ul li a.contact-link:hover {
  color: #ffffff !important;
}

.cta-button {
  display: inline-block;
  padding: 15px 20px;
  background-color: #f36100;
  color: #eaeaea;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 40px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-transform: uppercase;
}

.cta-button:hover {
  background-color: #e05d00;
  transform: scale(1.05);
}

.choose-program {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.subheading {
  color: #f36100;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.main-heading {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 50px;
  font-family: 'Bebas Neue', sans-serif;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.feature-box {
  max-width: 250px;
  padding: 20px;
}

.icon-container {
  background-color: #1c1c1c;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container img {
  width: 50px;
  height: 50px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(91%) saturate(690%) hue-rotate(355deg) brightness(105%) contrast(101%);
}

.feature-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #cccccc;
}

.pricing {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: #1a1a1a;
  border: 1px solid #f36100;
  border-radius: 15px;
  padding: 30px 20px;
  width: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(243, 97, 0, 0.4);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.card p {
  font-size: 1.2rem;
  color: #f36100;
  margin-bottom: 20px;
  font-weight: bold;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.card ul li {
  margin: 10px 0;
  font-size: 1rem;
  color: #cccccc;
}

.gallery {
  background-color: #0d0d0d;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.contact {
  background-color: #000000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #f36100;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #444;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 1rem;
}

.footer {
  background-color: #0d0d0d;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  margin-bottom: 20px;
}

.footer-content p {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #cccccc;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.footer-links a {
  color: #f36100;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

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

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  color: #ffffff;
  font-size: 32px;
  transition: transform 0.3s, color 0.3s;
}

.social-links a:hover {
  transform: scale(1.2);
  color: #f36100;
}

@media (max-width: 768px) {
    
  .navbar ul {
    flex-direction: flex;
    gap: 15px;
  }

  .hero-section p {
    font-size: 3rem;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }

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

  form {
    padding: 0 10px;
  }

  .footer-links {
    flex-direction: row;
    gap: 10px;
  }
}
