
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200..1000&display=swap');

.nunito-sans-custom {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400; /* Choose from 200 to 1000 */
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}

:root{
    --red:#E50914;
    --black:#181818;
    --light-color:#000000;
    --border-shadow:0 .5rem 1.5rem rgba(0,0,0,.1);

}
 

*{
    font-family: 'nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline:none;
    border:none;
    text-transform:capitalize; 
    transition: all .2s linear;
}

html {

   overflow-x: hidden;
    font-size: 62.5%;
    width: 100vw;
   
    background-color: white;
    
}

section {

   width: 100%;
   overflow-y: scroll;
   background-color: #181818;
}

header
{
    position:relative;
    width: 100%;
    top: 0px;
    left: 0px;
    right: 0;
    background: linear-gradient(to bottom,grey , rgba(0, 0, 0, 0.7), transparent);;
    padding: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    z-index: 1000;
    box-shadow: var(--box-shadow);
    font-size: large;
    text-decoration-color: aliceblue;
    -moz-text-decoration-color: aliceblue;
   
}


#menu-icon {
   color: aliceblue;
   font-size: 1.9rem;
   display: none;
}


.navibar a{
     
   margin-right: 1px;
   color: white;
   text-decoration: none;
   padding: 14px;
   font-size: 15px;
   
 
}


header .content-media a{

    color: #16e0e7;
    margin: 1rem;
 }
 
 .navibar a:hover{ 
     color: #16e0e7;
     
 }
  .navibar a:visited:hover{
     color: #16e0e7;
  }

 .home { 
    padding: 0;
  
 }

 .container {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #181818;
}



.content {
    position: relative;
    width: 800px;
    height: 400px;
    top: 45%;
    left: 50%;
    color: white;
    text-align: center;
    z-index: 1;
    box-shadow: 2px 0px 30px #08cfe9;
    background-color: #63606069 ;
    transform: translate(-50% , -50%);
    -webkit-transform: translate(-50% , -50%);
    -moz-transform: translate(-50% , -50%);
    -ms-transform: translate(-50% , -50%);
    -o-transform: translate(-50% , -50%);
    overflow-y: scroll;
   

    
}

.about-us h1 
{
    padding-top: 100px;
    font-size: 5rem;
    text-align: center;
    color: #faf8f8;
    z-index: 2;
    text-shadow: 2px 0px 10px #08cfe9;
}


.box-container {

    display: grid;
    grid-template-columns: repeat(4,1fr);
    margin-top: 3rem;
    justify-content: space-around;
    gap: 1rem;
 
}




button {
    background-color: #181818;
    color: white;
    border: #08cfe9 solid 2px;
    height: 25px;
    width: auto;
    padding: 5px 15px;
    cursor: pointer;
}

button:hover {

    color: #0b0c0c;
    background-color: #08cfe9;
  

}

.btn.active {
    background-color: #08cfe9;
    color: #0b0c0c;
    box-shadow: 1px 2px 30px #08cfe9 ;
   
}

 .box:visited:hover{
    color: #0b0c0c;
    background-color: #08cfe9;
    padding: 5px; 
}

.images {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 3 equal-width columns */
  gap: 10px;
  padding: 10px;
}

/* Adjust spacing and sizing for smaller screens if needed */
.images img,
.images video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.item {
  display: none;
}

.item.show {
  display: block;
}

.contact {
    background-color: #000000;
    color: #ccc;
  
  padding:50px
  }
  
  .contact-container{
  
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    
  }
  
  .contact h3 {
    
    font-size: 42px;
    color: #fff8f8;
    position: relative;
    display: inline-block;
    padding-bottom: 2px; /* Space for the underline */
    word-wrap: break-word;
    width: 450px;
   
  }
  
  .contact a {
    padding: 1.5rem;
    background-color: #16e0e7;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  
  .contact .heading::after {
    content: "";
    display: block;
    width: 100%; /* Adjust line width */
    height: 1px; /* Adjust thickness */
    background-color: #ff5733; /* Adjust line color */
    margin: 8px auto 0;
  }
  .contact p{
  
    max-width: 450px;
    width: 100%;
  }
  
  .footer-container {
  
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 2rem;
    background-color: #666;
  
  }
  
  .footer-section {
    position: relative;
  
    margin: 5px;
    padding: 2rem;
   
  }
  
  .footer-section h1
  {
    font-size: 1.5rem;
    
  }
  
  .footer-section h2{
    margin-bottom: 1rem;
  }
  
  .footer-section p{
    word-wrap: break-word;
    width: 250px;
    margin-bottom: 1rem;
  
  }
  
  .icons-2 i{
    margin: 10px;
    font-size: 1.4rem;
    background-color: #08cfe9;
    color: black;
    padding: 5px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
  
@media  (max-device-width: 481px )   

{

   
      html {
          font-size: 85%;
          
      }
   
      body{

         overflow-x: hidden;
      }

      header {
         display: block;
          flex-direction: column;
          align-items: center;
          text-align: center;
      }

      
      header .logo img {
        width: 280px;  /* or whatever size you want */
       height: auto;
        margin: 0 auto;
        justify-content: end;
    }


.navibar{
   position: absolute;
   top: 100%;
   left:0;
   width:100%;
   padding: 1rem 3%;
   border-top: .1rem solid #ec8105;
   display: none;
   justify-content: space-between;
   background: linear-gradient(to bottom, grey, black);
  } 

        
#menu-icon {
   display: flex;
   align-items: center;
   justify-content: start;
   font-size: 5rem;
   cursor: pointer;
}

      .navibar a {

         display:block;
         padding: 25px;
         font-size: 3.5rem;
         

      }
      .navibar.active{

         display: block;
        }

        header .content-media i{

          font-size: 5rem;
        }


        .contact p {

          font-size: 2.5rem;
        }
        
        .contact a {
        
          padding: 2rem 5rem;
          font-size: 2.5rem;
        }
        .footer-container {
        
        
          display: flex;
          flex-direction: column;
          justify-content: center;
        }
        
        
        .footer-section p {
        
        
          font-size: 2.5rem;
          width:350px;
        }
          

    }

    
    @media  (max-device-width: 940px) {
  
  
    .content {

      height: 100vh;
      width: auto;
      overflow-y: scroll;
      padding-top:6rem ;
     
    }
   


    .box-container{

      display: grid;
      grid-template-columns: repeat(4,1fr);
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }

    
    .images {
    grid-template-columns: repeat(2,1fr);

     
    }

    button {

      height: 100px;
      width: 200px;
      font-size: 3rem;
    }
    button:hover {

      color: #0b0c0c;
      background-color: #08cfe9;
    
  
  }


    }