
:root{
  /* --col1: #ff6501; */
  --col1: #ff0101;
}

/* Hero content */
  
  .hero-content1 {  
    max-width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url("./imgs/bg2.jpeg");
    background-position: center;
    background-size: cover;
  }

  .hero-content1 span{
    color: var(--col1);
  }

  
  .hero-content1 h1 {
    font-size: 40px;
    font-weight: bold;
    line-height: 1.5;
  }
  
  .hero-content1 .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--col1);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .hero-content1 .btn:hover {
    background-color: var(--col1);
  }

  /* ---------- */



    /* Why Section */
    .why-choose-us {
        text-align: center;
        padding: 50px 20px;
      }
      
      .why-choose-us h3 {
        color: var(--col1);
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
      }
      
      .why-choose-us h1 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 50px;
      }
      
      .features {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 20px;
      }
      
      .feature {
        text-align: center;
        max-width: 300px;
      }
      
      .feature .icon {
        width: 100px;
        height: 100px;
        margin: 0 auto 20px;
        background-color: #222;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      
      .feature .icon img {
        width: 50%;
        height: 50%;
      }
      
      .feature h4 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
      }
      
      .feature p {
        font-size: 14px;
        line-height: 1.6;
      }
    
      .our-classes {
        text-align: center;
        padding: 50px 20px;
      }
      
      .our-classes h3 {
        color: var(--col1);
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
      }
      
      .our-classes h1 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 50px;
      }
      /* ----------------- */

      /* About Section */
      .about-us {
        overflow: hidden;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 50px;
        gap: 20px;
        max-width: 100%;
        height: 100vh;
      }
      
      .about-image {
        position: relative;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .about-image img {
        width: 500px;
        height: auto;
        border-radius: 5px;
      }

      .about-content {
        flex: 1;
        padding: 20px;
      }
      
      .about-content h3 {
        color: var(--col1);
        font-size: 16px;
        margin-bottom: 10px;
      }
      
      .about-content h1 {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 20px;
      }
      
      .about-content p {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 20px;
        text-align: left;
      }
      /* ------------- */

/* Registration Section */
.registration-section {
  position: relative;
  background: url('imgs/page-header3.jpg') no-repeat center center/cover;
  height: 50vh; /* Fullscreen height */
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  text-align: center;
}

.content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.btn1 {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--col1);
  border: 2px solid var(--col1);
  background: transparent;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn1:hover {
  background-color: var(--col1);
  color: #fff;
}

/* -------------- */

@media screen and (max-width:460px) {
  .hero-content1{
    background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url("./imgs/bg2.1.jpeg");
  }
  .hero-content1 h1 {
    font-size: 40px;
  }
  .about-us{
    height: fit-content;
    flex-direction: column;
    padding: 20px;
  }
  .about-image img{
    width: 350px;
  }
}