@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* General Reset */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
  scroll-behavior: smooth;
}


:root{
  /* --col1: #ff6501; */
  --col1: #ff0101;
}

body {
  color: #fff;
  background-color: #000; 
}

#actives{
  color: var(--col1);
}


/* General Header Styles */

.desk-nav{
  width: 90vw;
  height: 70px;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 30px;
  z-index: 3;
}

.desk-nav ul{
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  flex: .7;
}

.desk-nav ul li{
  width: 100%;
  margin: 0 15px;
  transform: rotate(0deg);
  letter-spacing: .7px;
  transition: transform .5s, letter-spacing .5s;
  a{
    color: white;
    text-decoration: none;
    font-size: 18px;
  }
}

.desk-nav ul li:hover{
  transform: rotate(-10deg);
}

.slink{
  display: flex;
  align-items: center;
  justify-content: center;
}

.slink svg{
  fill: white;
  margin: 0 20px;
  width: 25px;
  transition: fill .5s;
  &:hover{
    fill: var(--col1);
  }
}

/* -------------- */

/* Home section start */

.homesec{
  max-width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url("./imgs/services.jpeg");
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: start;
  justify-content: start;
}

.hero-content{
  position: relative;
  top: 35%;
  left: 10%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.hero-content p{
  font-size: 32px;
  margin-bottom: 10px;
}

.hero-content h1{
  font-size: 58px;
  margin-bottom: 20px;
  font-weight: normal;
  span{
    color: var(--col1);
    font-weight: bold;
  }
}


.home-btn{
  padding: 15px 20px;
  border: none;
  outline: none;
  border-radius: 10px;
  text-transform: uppercase;
  color: white;
  background-color: var(--col1);
}

/* --------------- */

  
  /* Why Section */
  .why-choose-us {
    overflow: hidden;
    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;
    color: black;
    letter-spacing: 1px;
    text-shadow: -1px -1px #fff, -1px 1px #fff, 1px -1px #fff, 1px 1px #fff;
  }
  
  .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;
    text-align: center;
  }
  
  .feature p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* ----------- */

  /* Class Section */

  .our-classes {
    max-width: 100%;
    min-height: 100vh;
    text-align: center;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 50px;
  }

  .container2{
    width: 100%;
  }
  
  .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;
  }

.class-grid1{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.class-card{
  width: 300px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 30px;
  position: relative;
}

.class-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.class-info{
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  bottom: 10%;
  transition: background-color .5s;
}

.class-card:hover .class-info {
  background-color: var(--col1);
}
  
  /* ------------ */

  /* Registration Section */
  .registration-section {
    position: relative;
    background: url('abgs.jpg') no-repeat center top/cover;
    height: 50vh;
    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;
  }
/* -------------- */


/* Image Section */
.image-gallery {
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.gallery-item {
  flex: 1;
  max-width: 300px;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* ---------------- */


/* Footer Start */

.mainfooter{
  max-width: 100%;
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2a2a2a;
  overflow: hidden;
}

.foot1{
  flex: 1;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 20px;
  height: 100%;
}

.logos{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
}

.logos p:nth-child(1){
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
}

.logos span{
  color: var(--col1);
}

.logos p:nth-child(2){
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.foot2{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  height: 100%;
  padding: 20px;
}

.foot2 h3{
  font-size: 25px;
  margin-bottom: 10px;
}

.foot2 ul{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 3;
  list-style: none;
  a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color .5s;
  }
}

.foot2 a:hover{
  color: var(--col1);
}

.foot3{
  flex: 1;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}

.foot3 h3{
  text-align: center;
  width: 100%;
  font-size: 25px;
  margin-bottom: 20px;
}

.cons1{
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cons1 a{
  color: white;
  text-decoration: none;
  transition: color .5s;
}

.cons1 a:nth-child(3){
  margin: 0 10px;
}

.cons1 a:hover{
  color: var(--col1);
}

.cons1 svg{
  width: 30px;
  fill: var(--col1);
  margin-right: 10px;
}


/* ----------- */
.logo1 {
  font-size: 24px;
  font-weight: bold;
  flex-wrap: wrap;
}

.logo1 span {
  color: var(--col1);
  
}

/* Mobile Nav */

.mob-nav{
  display: none;
}

/* ---------- */

@media screen and (max-width:460px) {
  .desk-nav{
    display: none;
  }
  .mob-nav{
    max-width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background-color: black;
    z-index: 4;
  }

  .logo2 p{
    font-size: 20px;
  }
  .logo2 span{
    color: var(--col1);
  }
  .menusvg svg{
    fill: var(--col1);
    width: 30px;
  }
  .menus{
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 6.5%;
    left: 0;
    background-color: black;
    width: 100%;
    height: 40vh;
    z-index: 50;
  }
  .menu-links{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    list-style: none;
  }
  .menu-links li{
    width: 80%;
    margin: 20px 0;
  }
  .menu-links a{
    text-decoration: none;
    color: var(--col1);
    height: 100%;
  }

  .hero-content{
    top: 20%;
    left: 0;
    margin-left: 15px;
  }
  .hero-content p{
    font-size: 28px;
  }
  .hero-content h1{
    font-size: 40px;
  }

  .class-card{
    margin: 30px 0;
  }

  .content h1{
    font-size: 23px;
  }
  .content p{
    font-size: 16px;
  }

  .gallery-row{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .mainfooter{
    height: fit-content;
    flex-direction: column;
  }

  .foot2{
    width: 100%;
  }
  .foot2 ul{
    width: 100%;
    align-items: start;
    justify-content: start;
  }


}

.show{
  display: flex;
}

.logs{
  text-decoration: none;
  color: white;
}

.lastfooter{
  max-width: 100%;
  height: fit-content;
  padding: 10px 0;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lastfooter p{
  color: white;
  text-align: center;
}

.lastfooter a{
  font-weight: bold;
  text-decoration: none;
  color: var(--col1);
}