*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav{
     background: linear-gradient(to bottom, #000, #807c7c);
    color: white;
    padding: 10px 20px;
    display: flex;              
    justify-content: space-between; 
    align-items: center;        
}

.logo img{
    width: auto;
    height: 80px;
}

.nav-links {
    margin-right: 20px;
    list-style: none;
    display: flex;
    gap: 20px;   
}

.nav-links li a{
    color: white;
    text-decoration: none;
}


.banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #fed403; 
}
.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: circle(60% at 50% 0);
}







.search-box {
  position: fixed;      
  top: 150px;           
  left:0px;          
  display: flex;
  align-items: center;
  background: black;
  border-radius: 5px;
  overflow: hidden;
  transition: width 0.4s ease;
  width: 45px;         
  height: 45px;
  z-index: 1000;
}

.search-box img {
  width: 45px;
  height: 45px;
  cursor: pointer;
}

.search-box input {
  border: none;
  outline: none;
  border-radius: 25px;
  flex: 1;
  padding: 0 10px;
  font-size: 14px;
  
}

.search-box:hover {
  width: 270px; 
}

.search-box:hover input {
  display: block;
}


.academy-logos {
  position: absolute;
  bottom: 165px;   
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;     
}

.logo-box {
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.logo-box img {
  width: 150px;
  height: auto;
}



main{
    margin:0px 150px ;
}
.about-us {
  width: 80%;
  margin: 80px auto;
}

.about-us h2 {
  text-align: center;
  color: #2e46c2;
  margin-bottom: 5px;
}

.about-us hr {
  border: none;
  border-top: 1px solid #ccc;
  width: 50%;
  margin: 10px auto 30px;
}


.about-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px; 
}

.about-text {
  flex: 1;        
  line-height: 1.8; 
}


.about-text h3 {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.4;
}

.about-text p {
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
}

.about-us img {
  width: 400px;
  height: auto;
  border-radius: 6px;
}


.our_schedule {
  width: 80%;
  margin: 40px auto;
  text-align: center;
}

.our_schedule h2 {
  color: #2e46c2;
  margin-bottom: 10px;
}

.our_schedule hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 5px auto 20px;
  width: 50%;
}

.our_schedule table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.our_schedule td {
  padding: 12px;
  font-size: 15px;
  text-align: center;
}


.our_schedule tr:nth-child(even) {
  background-color: #f2f2f2;
}





.container {
  display: flex;
  gap: 20px; 
  justify-content: space-between;
  margin-bottom: 10px;
}

.news {
  flex: 1;
  border: 1px solid gray;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 10px;
  
}

.news img {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.news h2 {
  margin: 10px 0;
  font-size: 20px;
}
.news p {
  font-size: 14px;
  line-height: 1.5;
}
.news {
  border: 1px solid gray;
  border-radius: 5px;
  width: 33%;
  overflow: hidden; 
}

.news img {
  padding: 5px;

  width: 100%;    
  height: 150px;  
  object-fit: cover; 
  display: block; 
}

.news h3,
.news p {
  margin: 10px;   
  padding: 0;     
}




.new1 {
             
    margin: 0px 200px;
  background-color: yellow;   
  display: flex;              
  gap: 2px;                   
  align-items: center;        
}

.new1 iframe {
  order: 2;  
  padding: 5px; 
  width: 50%;

 

}

.new1 img {
  order: 1;   
 
  height: auto;
  width: 50%;

  
  padding: 5px;             
  box-sizing: border-box;   
}


.foote{
    background-color: black;
    text-align: center;
   

    font-size: x-large;
    line-height: 50px;
    height: 50px;
    color: white;
}



