* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .hero {
    background-image: url(background.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
  }
  .hero-image img{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit: cover;
    z-index: -1;
  }
  .hero-content{
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
  
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }
  
  .navbar {
    background-color:black;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .navbar :hover{
    color: #e6034f;
    box-shadow: 0 0 10px #e6034f,
    0 0 20px#e6034f
    0 0 30px #e6034f
    0 0 40px #e6034f;
    animation: neonGlow 1.5s infinite alternate;
  }
  @keyframes neonGlow {
    from{
      box-shadow: 0 0 5px #e6034f;
      color: white;
    }
    to {
      box-shadow: 0 0 20px #e6034f,
      0 0 30px #e6034f,
      0 0 40px #e6034f;
      color: #e6034f;
    }
  }
  
  .logo-title {
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 50px;
    margin-right: 15px;
  }
  
  .site-title {
    color: white;
    font-size: 24px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  .hero {
    background: url(background.jpg) center/cover no-repeat;
    height: 700px;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
  }
  
  .hero h2 {
    font-size: 40px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px #000;
  }
  
  .hero .button {
    display: inline-block;
    background-color:black;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    color:white;
    border-radius: 20px;
    margin-top: 40px;
    transition: all ease 0.3s;
    cursor: pointer;
  }
  
  .hero .button:hover{
    color: #e6034f;
    box-shadow: 0 0 10px #e6034f,
    0 0 20px#e6034f
    0 0 30px #e6034f
    0 0 40px #e6034f;
    animation: neonGlow 1.5s infinite alternate;
  }
  @keyframes neonGlow {
    from{
      box-shadow: 0 0 5px #e6034f;
      color: white;
    }
    to {
      box-shadow: 0 0 20px #e6034f,
      0 0 30px #e6034f,
      0 0 40px #e6034f;
      color: #e6034f;
    }
  }
  
  .sec {
    padding: 50px 20px;
    text-align: center;
    background-color: black;
  }
  
  .split-section{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    flex-wrap: wrap;
  }
  .left-image{
    flex: 1;
    max-width: 50%;
  }
  .left-image img{
    width: 388px;
    height:493px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  .left-image:hover img{
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.2)drop-shadow(0 0 10px rgba(255,255,255,0.4))
  }
  .right-info{
    margin-left: 40px;
    max-width: 600px;
    color: white;
  }
  .right-info h2{
    font-size: 28px;
    margin-bottom: 15px;
  }
  .right-info .btn{
    padding: 1px 30px;
    border-radius: 15px;
    color: #e6034f;
    box-shadow: 0 0 10px #e6034f,
    0 0 20px#e6034f
    0 0 30px #e6034f
    0 0 40px #e6034f;
    animation: neonGlow 1.5s infinite alternate;
  }
  @keyframes neonGlow {
    from{
      box-shadow: 0 0 5px #e6034f;
      color: white;
    }
    to {
      box-shadow: 0 0 20px #e6034f,
      0 0 30px #e6034f,
      0 0 40px #e6034f;
      color: #e6034f;
    }
  }
  .right-info p{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  .right-info a {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    font-weight: bold;
  }
  @media(max-width:768px){
    .split-section{
      flex-direction: column;}
      .left-image,
      .right-info{
        flex: unset;
        width: 100%;
        height: auto;
      }
      .left-image img{
        height: 300px;
      }
    }
  
  @media (max-width: 600px) {
    .hero h2 {
      font-size: 28px;
    }
  
    .nav-links {
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }
  }
   .about{
    text-align: center;
    padding:100px;
    background-color: black;
  }
  .about h3{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size:2rem;
    text-align: center;
  }
  .about p{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size:1rem;
    line-height:2;
  }
  .team-members{
    display: flex;
    flex-wrap: wrap;
  }
  .team-member img{
    width:200px;
    height:200px;
    margin:30px;
    object-fit: cover;
  }
  .contact{
    padding:80px;
    text-align:center;
    background-color:transparent;
  }
  .contact h3{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size:3rem;
    color: white;
    margin-top:40px;
  
  }
  .contact p{
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
    font-size:1rem;
    margin-bottom:20px;
    margin-top: 40px;
  }
  .contact-info{
    margin-top:30px
  }
    
  .form{
    width:100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: auto;
    
  }
  input,textarea{
    width:70%;
    padding: 10px;
    margin:20px 0;
    border:none;
    box-shadow:0 0 5% rgb(0,0,0, 0.1);
    border-radius:20px;
    font-size: 1rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  .form-group{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .text-area{
    height:200px;
  }
  .form button{
    display: inline-block;
    background-color:black;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    border-radius: 20px;
    margin-top: 40px;
    transition: all ease 0.3s;
    border: none;
    text-align: center;
  }
  .form button:hover{
    color: #e6034f;
    box-shadow: 0 0 10px #e6034f,
    0 0 20px#e6034f
    0 0 30px #e6034f
    0 0 40px #e6034f;
    animation: neonGlow 1.5s infinite alternate;
  }
  @keyframes neonGlow {
    from{
      box-shadow: 0 0 5px #e6034f;
      color: white;
    }
    to {
      box-shadow: 0 0 20px #e6034f,
      0 0 30px #e6034f,
      0 0 40px #e6034f;
      color: #e6034f;
    }}
  .btn{
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }
  .glow{
  margin-bottom: 20px;
  color:white;
  font-size: 40px;
  
  }
  
  html{
  scroll-behavior: smooth;
  }
  body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  color: white;
  }
  
  .programs-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
  }
  
  .programs-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
  }
  
  .programs-header p {
  color: #ccc;
  font-size: 16px;
  max-width: 700px;
  line-height: 1.6;
  }
  
  .programs-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  }
  
  .program-card {
  background-color: #1e1e1e;
  padding: 25px;
  flex: 1 1 250px;
  border-radius: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .program-card h3 {
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 15px;
  }
  
  .program-card p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ccc;
  }
  
  .program-card a {
  color: #e6034f;
  text-decoration: none;
  font-weight: bold;
  }
  
  .program-card:hover {
  background-color:#e6034f;
  color: white;
  }
  
  .program-card:hover a {
  color: white;
  }
  
  .highlight {
  background-color: #e6034f;
  color: white;
  }
  
  .highlight a {
  color: white;
  }
  
  @media (max-width: 480px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .nav-links {
      flex-direction: column;
      gap: 10px;
      margin-top: 10px;
    }
  
    .hero h2 {
      font-size: 22px;
    }
  
    .hero-content {
      width: 90%;
    }
  
    .split-section {
      flex-direction: column;
      padding: 20px;
    }
  
    .left-image img {
      width: 100%;
      height: auto;
    }
  
    .right-info {
      margin-left: 0;
      padding: 10px;
      text-align: center;
    }
  
    .glow {
      font-size: 28px;
    }
  
    .team-members {
      flex-direction: column;
      align-items: center;
    }
  
    .team-member img {
      width: 150px;
      height: 150px;
      margin: 15px;
    }
  
    .contact {
      padding: 30px 10px;
    }
  
    input,
    textarea {
      width: 90%;
    }
  
    .programs-container {
      flex-direction: column;
      align-items: center;
    }
  
    .program-card {
      width: 100%;
    }
  }
  
  
  @media (max-width: 768px) {
    .hero h2 {
      font-size: 30px;
    }
  
    .hero {
      height: 500px;
      padding: 20px;
    }
  
    .hero-content {
      padding: 10px;
      width: 80%;
    }
  
    .split-section {
      flex-direction: column;
      padding: 30px;
    }
  
    .left-image img {
      width: 100%;
      height: auto;
    }
  
    .right-info {
      margin-left: 0;
      padding: 10px;
    }
  
    .programs-container {
      justify-content: center;
    }
  
    .program-card {
      flex: 1 1 100%;
    }
  
    .contact {
      padding: 50px 20px;
      background-color: #e0e0e0;
      color: white;
    }
  
    input,
    textarea {
      width: 90%;
    }
  
    .form-group {
      padding: 10px20px;
    }
  
    .btn {
      flex-direction: column;
      
    }
  }
  .btn {
    text-align: center; 
    margin-top: 20px;
  }
  
  .btn button {
    padding: 10px 20px;
    background-color: #ff4d00;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .btn button:hover {
    background-color: #e63900;
  }
  .footer {
    background-color: #111;
    color: #e0e0e0;
    text-align: center;
    padding: 30px 10px;
    font-size: 14px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 50px;
    border-top: 2px solid #e6034f;
  }
  
  .footer strong {
    color: #e6034f;
    font-weight: bold;
  }
  
  @media (max-width: 767px) {
    .hamburger {
      display: block;
      font-size: 30px;
      color: white;
      position: absolute;
      top: 25px;
      right: 20px;
      cursor: pointer;
      z-index: 999;
    }
  
    #toggle {
      display: none;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      align-items: center;
      background-color: black;
      position: absolute;
      top: 70px;
      right: 0;
      width: 100%;
      padding: 20px 0;
      z-index: 998;
    }
  
    #toggle:checked + .hamburger + nav .nav-links {
      display: flex;
    }
  
    .nav-links li {
      margin: 15px 0;
    }
  
    .nav-links a {
      color: white;
      text-decoration: none;
    }
}
@media (min-width: 768px) {
    .hamburger,
    .toggle-checkbox {
      display: none !important;
    }
  
    .nav-links {
      display: flex !important;
      justify-content: flex-end;
      gap: 30px;
      flex-direction: row;
      position: static;
      background: none;
      width: auto;
      padding: 0;
    }
  
    .nav-links li {
      margin: 0;
      font-size: 18px;
    }
  }
  
#contact {
    background-color: #111;
    color: white;
    padding: 60px 20px;
    text-align: center;
  }

  
  #contact h2 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  
  #contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  
  #contact input,
  #contact textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    resize: vertical;
  }
  
  
  #contact button {
    padding: 12px 25px;
    background-color:black;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  
  #contact button:hover {
    background-color: #e6034f;
  }
  
  @media (max-width: 500px) {
    #contact h2 {
      font-size: 24px;
    }
  
    #contact button {
      font-size: 16px;
    }
  }