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

body {
    font-family: 'Oswald';
    background-color: #000;
    color: #fff;
}

/* Header styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000000;
    padding: 20px;
  }
  
  header .logo {
    color: #fff;
    padding-left: 20px;
  }
  header nav img{
    margin: 10px;
  }
  /* Desktop Navigation */
  header nav ul {
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  header nav ul li {
    margin-left: 80px;
  }
  
  header nav ul li a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
  }
  
  header nav ul li a:hover {
    color: #e6c200;
  }
  
  /* Burger icon (hidden on desktop) */
  .burger {
    display: none;
    cursor: pointer;
  }
  
  .burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
  }
  
  /* Mobile View */
  @media (max-width: 1200px) {
    /* Hide desktop menu */
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: -100%;
        background-color: #333;
        transition: transform 0.5s ease-in-out;
        z-index: 99;
    }
  
    /* Burger icon display */
    .burger {
        display: block;
    }
  
    /* When the menu is active */
    nav.active ul {
        display: flex;
        left: 0;
        transform: translateX(0);
    }
  
    nav ul li {
        margin: 20px 60px;
        text-align: center;
    }
  
    nav ul li a {
        font-size: 1.5rem;
    }
  
    /* Burger menu animation */
    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
  
    .toggle .line2 {
        opacity: 0;
    }
  
    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
  }

/* About Section */
.program-section {
    background-color: #000;
    color: #fff;
    padding: 0;
  }
  
  .program-banner {
    position: relative;
    text-align: center;
  }
  
  .program-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    opacity: 0.8;
  }
  
  .program-banner h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    color: #fff;
    font-weight: bold;
    margin: 0;
  }
  

  /* Feature Section */


  .feature-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .feature-item {
    margin-bottom: 60px;
  }
  
  .feature-item h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
  }
  
  .content img {
    max-width: 35%;
    border-radius: 10px;
    flex: 1;
  }
  
  .text {
    flex: 1;
    padding: 20px;
  }
  
  .text h3 {
    color: #e6c200;
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .text p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .cta-button a {
    display: inline-block;
    background-color: #ffd700;
    color: #000;
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 30px;
}

.cta-button a:hover {
    background-color: #ffcc00;
}

.program-section h1 {
    font-size: 3rem;
    text-align: center;
    padding: 20px;
}
/* Program Section */
.program-section {
  text-align: center;
  padding: 50px 0;
}

.program-section h1 {
  font-size: 4em;
  color: #fff;
  margin-bottom: 30px;
}

/* Program Cards */
.program-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;

}

.program-card-1 {
  background-color: #1a1a1a;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  outline: 2px solid yellow;
}
.program-card-1 h2 {
  color:#e6c200;
}
.program-card-2 {
  background-color: #1a1a1a;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  outline: 2px solid red;
}
.program-card-2 h2 {
  color:red;
}

.program-card-3 {
  background-color: #1a1a1a;
  width: 300px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  outline: 2px solid green;
}
.program-card-3 h2 {
  color:green;
}
.program-card-1:hover {
  transform: scale(1.05);
}
.program-card-2:hover {
  transform: scale(1.05);
}
.program-card-3:hover {
  transform: scale(1.05);
}
.card-image img {
  width: 100%;
  height: 20%;
  display: block;
}

.card-content {
  padding: 20px;
  color: #fff;
}

.card-content h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.card-content ul {
  text-align: left;
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px;
}

.card-content ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.card-content ul li::before {
  content: "✔️";
  margin-right: 10px;
  color: #ffd700;
}



/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
.program-cards {
    flex-direction: column; /* Stack cards vertically on mobile */
    align-items: center; /* Center align the stacked cards */
    gap: 30px;
    padding: 0 20px;
}

.program-card-1, .program-card-2, .program-card-3 {
    width: 100%; /* Full width for cards on mobile */
    max-width: 70%; /* Ensures the card doesn’t exceed the screen width */
}

.program-section h1 {
    font-size: 2.5em;
}

.card-content h2 {
    font-size: 1.2rem;
}

.card-content {
    padding: 15px;
}
}

/* Tablets (600px to 768px) */
@media (min-width: 600px) and (max-width: 768px) {
.program-cards {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 40 20px;
}

.program-card-1, .program-card-2, .program-card-3 {
    width: 70%; /* Full width on tablets as well */
    max-width: 70%; 
}

.program-section h1 {
    font-size: 3em;
}

.card-content h2 {
    font-size: 1.4rem;
}
}

/* Desktops (768px and up) */
@media (min-width: 768px) {
.program-cards {
    flex-direction: row; /* Maintain horizontal layout on larger screens */
}

.program-card-1, .program-card-2, .program-card-3 {
    width: 300px;
}
}

  



/* Mobile Devices (up to 600px) */
@media (max-width: 600px) {
    .program-cards {
        flex-direction: column; /* Stack cards vertically on mobile */
        align-items: center; /* Center align the stacked cards */
        gap: 30px;
        padding: 0 20px;
    }
  
    .program-card-1, .program-card-2, .program-card-3 {
        width: 100%; /* Full width for cards on mobile */
        max-width: 70%; /* Ensures the card doesn’t exceed the screen width */
    }
  
    .program-section h1 {
        font-size: 2.5em;
    }
  
    .card-content h2 {
        font-size: 1.2rem;
    }
  
    .card-content {
        padding: 15px;
    }
  }
  
  /* Tablets (600px to 768px) */
  @media (min-width: 600px) and (max-width: 768px) {
    .program-cards {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 0 20px;
    }
  
    .program-card-1, .program-card-2, .program-card-3 {
        width: 100%; /* Full width on tablets as well */
        max-width: 100%; 
    }
  
    .program-section h1 {
        font-size: 3em;
    }
  
    .card-content h2 {
        font-size: 1.4rem;
    }
  }
  
  /* Desktops (768px and up) */
  @media (min-width: 768px) {
    .program-cards {
        flex-direction: row; /* Maintain horizontal layout on larger screens */
    }
  
    .program-card-1, .program-card-2, .program-card-3 {
        width: 300px;
    }
  }
  
  
  
  /* Button Styling */
  .find-out-more {
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
      padding: 10px 20px;
      border-radius: 4px;
      text-transform: uppercase;
      font-size: 1rem;
      transition: background-color 0.3s ease;
  }
  
  .yellow-btn {
      background-color: #ffd700;
      color: #000;
  }
  
  .green-btn {
      background-color: #ff4500;
      color: #fff;
  }
  
  .red-btn {
      background-color: #4caf50;
      color: #000;
  }
  
  .find-out-more:hover {
      opacity: 0.8;
  }
  
  /* Call-to-action Button */
  .cta-button a {
      display: inline-block;
      background-color: #ffd700;
      color: #000;
      padding: 15px 30px;
      font-weight: bold;
      text-transform: uppercase;
      font-size: 1.2rem;
      border-radius: 5px;
      text-decoration: none;
      margin-top: 30px;
  }
  
  .cta-button a:hover {
      background-color: #ffcc00;
  }





  
/* Contact Section */
.contact-section {
    padding: 50px;
    background-color: #333; /* Dark background */
    color: #fff;
  }
  
  /* Container for contact information and form */
  .contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap; /* Ensures responsive layout */
    margin: 0 100px;
  }
  
  /* Contact Info Styles */
  .contact-info {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
  }
  
  .contact-info h2 {
    font-size: 4em;
    margin-bottom: 20px;
    
  }
  
  .contact-info h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
  
  }
  
  .contact-info p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.6;
  
  }
  
  .contact-info h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
  
  }
  
  .phone-number {
    font-size: 2em;
    color: #ffd700; /* Yellow color */
    margin-bottom: 20px;
  
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    justify-content: center; /* Center icons */
  }
  
  .social-icons a {
    color: #fff;
    font-size: 2em;
    text-decoration: none;
  }
  
  /* Contact Form Styles */
  .contact-form {
    flex: 1;
    max-width: 45%;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Form Layout */
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  /* Form Group Styles */
  .form-group {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  /* Input Styles */
  .form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
    color: #333;
  }
  
  /* Placeholder Text */
  .form-group input::placeholder {
    color: #999;
  }
  
  /* Button Styles */
  .btn-yellow {
    background-color: #ffd700; /* Yellow background */
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
  }
  
  .btn-yellow:hover {
    background-color: #e6c200;
  }
  
  /* Responsive Media Queries */
  
  /* Mobile Devices (up to 600px) */
  @media (max-width: 600px) {
    .contact-container {
        flex-direction: column; /* Stack items vertically on mobile */
        margin: 0 20px; /* Reduce margin for mobile view */
    }
  
    .contact-info {
        max-width: 100%; /* Full width on mobile */
        padding-right: 0; /* Remove right padding */
        padding-left: 0; /* Remove left padding */
    }
  
    .contact-form {
      padding: 50px;
      max-width: 100%;
    }
    .contact-info h2 {
        text-align: center; /* Center text */
        font-size: 2.5em; /* Adjust title size for mobile */
    }
  
    .contact-info h3 {
      text-align: center; /* Center text */
        font-size: 1.5em; /* Adjust heading size for mobile */
    }
  
    .contact-info h4 {
      text-align: center; /* Center text */
        font-size: 1.3em; /* Adjust heading size for mobile */
    }
  
    .phone-number {
      text-align: center; /* Center text */
        font-size: 1.5em; /* Adjust phone number size for mobile */
    }
  
    .contact-form {
        padding: 20px; /* Reduce padding for mobile */
    }
  
    .btn-yellow {
        font-size: 1em; /* Adjust button size */
        padding: 10px 20px; /* Adjust button padding */
    }
  }
  
  /* Tablets (600px to 768px) */
  @media (min-width: 600px) and (max-width: 768px) {
    .contact-container {
        flex-direction: column; /* Stack items on tablets */
        margin: 0 40px; /* Slightly larger margin for tablets */
    }
  
    .contact-info,
    .contact-form {
        max-width: 100%; /* Full width on tablets */
    }
  
    .contact-info h2 {
        font-size: 3em; /* Adjust title size for tablets */
    }
  }
  
  
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
      align-items: center;
    }
  
    .text, .content img {
      width: 100%;
      max-width: 400px;
    }
  
    .text {
      padding: 10px;
    }
  
    .feature-item h2 {
      font-size: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .text h3 {
      font-size: 1.2rem;
    }
  
    .text p {
      font-size: 0.9rem;
    }
  
    .feature-item h2 {
      font-size: 1.2rem;
    }
  }
  
  