 @font-face {
    font-family: myFirstFont;
    src: url(../Poppins/Poppins-Regular.ttf);
}
@font-face {
  font-family: bold;
  src: url(../Poppins/Poppins-Bold.ttf);
}
  *{
    /* overflow: hidden; */
    /* border: 1px solid yellow; */
  }
  body{
    background-position: center;
    background-size: cover;
    position: relative;
    font-family: myFirstFont;
  }

  
    /* Website Scrollerbar */
    body::-webkit-scrollbar {
      width: 5px !important;
      height: 5px !important;
  }
  body::-webkit-scrollbar-track {
      background: #3838387c !important;
  }
  body::-webkit-scrollbar-thumb {
      background-color: #e0120ba4 !important;
      border: 1px solid #ff020279 !important;
      border-radius: 1px !important;
  }

  
  .header{
    min-height: 100vh;
    width: 100%;
    
    
}
nav{
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
    background-color: #000008;
}
nav img{
    width: 150px;
}
.nav-links{
    flex: 1;
    text-align: right;
   
    
}
.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
  
    
}
.nav-links a{
    text-decoration: none;
    font-size: 16px;
    
}
.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    background: #ff0000;
    display: block;
    margin: auto;
    transition: 0.5s;
    
}
.nav-links ul li:hover::after{
    width: 100%;
}
.icon{
  display:none;
}
.text-box{
  width: 90%;
  color: #fff;
  position:absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%,50%);
  text-align: center;
}
.text-box h1{
  font-size: 62px;
  font-weight: bold;

}
.text-box p{
  margin: 10px 0 40px;
  font-size: 14px;
  color: #fff;
  
}
:root{
--white: #fff;
--text-clr: #000024;
--primary: #3e2093;
--secondary: #000008;
/* --secondary: #c0c1d2; */
--input-bg: #f1f1ff;
--btn-hvr: #1a0065;
--tra: rgba(255, 255, 255, 0.959);
/* --tra: rgba(255, 255, 255, 0.863); */
--bordcolor:rgba(0, 26, 255, 0.082);
/* --bordcolor:rgba(51, 61, 148, 0.521); */
}

*{
margin: 0;
padding: 0;
box-sizing: border-box;
outline: none;
font-family: myFirstFont;
}

body{
font-size: 14px;
color: var(--text-clr);
}


.wrapper {
  padding: 40px 20px;
  background-color: #f7f7f7;
  font-family: Arial, sans-serif;
}

/* Section headers */
.wrapper h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 10px;
}

.wrapper h4 {
  color: #007B7F;
  margin-bottom: 20px;
  font-weight: 600;
}

.wrapper p {
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px;
}


/*sliders*/
.partners-slider {
  overflow: hidden;
  width: 100%;
  background: #f4f4f4;
  margin-top: 20px;
}

.slide-track {
  display: flex;
  width: calc(250px * 6); /* 3 logos x 2 (for loop) */
  animation: scroll 15s linear infinite;
}

.slide {
  width: 250px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

/*whatsapp container*/

.contact h2{
  display: flex;
  justify-content: center;
  align-items: center;
}


.whatsapp-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 15vh; /* Center vertically */
}

.whatsapp-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

.whatsapp-logo {
  width: 24px;
  height: 24px;
}

/*address*/

.address h2{
  display: flex;
  justify-content: center;
  align-items: center;
}

.address p{
  display: flex;
  justify-content: center;
  align-items: center;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Media query for responsive */

@media (max-width: 700px) {

  *{
      overflow-x: hidden;
      margin: 0;
      padding: 0;
  
  }

  #logo-img{
      padding: 10px;
  }
  
  .nav-links ul li{
      display: block;
  }
  .nav-links{
      position: absolute;
      background: #f44336;
      height: 100vh;
      width: 200px;
      top: 0%;
      right: -200px;
      text-align: left;
      z-index: 2;
      transition: 1s;
  }
  .icon{
      display: block;
      color: #fff;
      margin: 10px;
      font-size: 25px;
      cursor: pointer;
  }
  .nav-links ul{
      padding: 30px;
  }
    /* Admission form */
  .input_item{
    overflow: hidden;
  }
}