body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    background: linear-gradient(90deg,#dddddd 0%,#fff 30%,#fff1ff 30%,#fff 100%);
}

@font-face {
    font-family: 'Inter';
    src: url('fonts/Inter-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Anek Expanded';
  src: url('fonts/AnekLatin_Expanded-ExtraBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Anek Regular';
  src: url('fonts/AnekLatin-Regular.ttf') format('truetype');
}


/*---HERO SECTION----*/
.hero-banner {
    background-color: #fff;
    /*background-image: url('images/ten.jpg');*/
    background-size: cover;
    background-position: center;
    object-fit: cover;
    height: 100px; /* Adjust height as needed */
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.20);
    align-items: center;
  }
  
  .container {
    width: 80%;
    margin: 0 auto;
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Manrope Regular', sans-serif;
  }
  
  .logo img {
    width: 17rem; /* Adjust size as needed */
    height: auto;
    cursor: pointer;
  }

  .nav-tabs ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .nav-tabs ul li {
    display: inline-block;
    margin-right: 50px;
  }
  
  .nav-tabs ul li a {
    color: black;
    text-decoration: none;
    justify-content: space-between;
    font-family: 'Inter', sans-serif; 
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .nav-tabs ul li a:hover {
    color: #a5a5a5;
    transition: 0.5s;
  }
  
  .cta-button .button {
    background-color: #e4e4e4;
    color: black;
    font-weight: bolder;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .cta-button .button:hover{
    background-color: #000000;
    color: #fff;
    transition: 0.5s;
  }
  
  .menu{
    display: none;
  }
  
  .aside-menu {
    position: fixed;
    top: 0;
    right: -250px; /* Initially hide the menu off-screen */
    width: 250px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
    transition: right 2s ease-in; /* Add a smooth transition effect */
    z-index: 1000;
  }
  
  .aside-menu ul {
    list-style: none;
    padding: 0;
  }
  
  .aside-menu ul li {
    padding: 15px 20px;
    border-bottom: 1px solid #ccc;
  }
  
  .aside-menu ul li:last-child {
    border-bottom: none;
  }
  
  .aside-menu ul li a {
    color: black;
      text-decoration: none;
      justify-content: space-between;
      font-family: 'Inter', sans-serif; 
      font-size: 1.2rem;
      font-weight: 600;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 900; /* Ensure the overlay is below the aside menu */
    display: none; /* Initially hide the overlay */
  }
  
  .show-menu {
    right: 0; /* Show the menu */
  }
  
  .show-overlay {
    display: block; /* Show the overlay */
  }
  

  .text-box{
    padding-top: 0;
    width: 80%;
    color: white;
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
  }
  
  .text-box h1{
    color: #1e7a1e;
    font-size: 40px;
    font-family: 'Anek Expanded', sans-serif; 
    margin-bottom: 0;
    margin-top: 0;
    /*text-shadow: black -10px -5px 20px;*/
  }
  
  /* Styles for dropdown menu */
  #dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  #dropdown-menu ul li {
    padding: 10px;
  }
  
  #dropdown-menu ul li a {
    text-decoration: none;
    color: black;
  }
  
  /* Show the dropdown menu when menu icon is clicked */
  #dropdown-menu.show {
    display: block;
  }
  
    @media(max-width: 700px){
      .text-box{
        top:12%
      }
      .logo img{
          width: 13rem;
     }
     .nav-tabs{
       display: none;
     }
     .cta-button .button{
       display: none;
     }
     .menu{
       display: inline;
       width: 30px;
       cursor: pointer;
     }
    }
  /*---HERO SECTION----*/





  /*---INPUT SECTION--*/

  .contactUs{
    position: relative;
    width: 80%;
    padding: 40px 100px;
  }

  .contactUs .title{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
  }
  
 /* .contactUs .title h2{
    color: #fff;
    font-weight: 500;
  }*/

  .form{
    grid-area: form;
  }
  
  .info{
    grid-area: info;
  }

  .map{
    grid-area: map;
  }

  .contact{
    padding: 40px;
    background: #fff;
    box-shadow: 0 5px 35px rgba(0, 0, 0, 0.50);
    border-radius: 10px;
  }

  .box{
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas:
    "form info"
    "form map";
    gap: 20px;
    margin-top: 20px;
  }

  .contact h3{
    color: black;
    font-weight: 600;
    font-size: 1.5em;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
  }

  /*--FORM--*/
  .formBox{
    position: relative;
    width: 100%;
  }

  .formBox .row50{
    display: flex;
    gap: 20px;
  }

  .inputBox{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
  }

  .formBox .row100 .inputBox{
    width: 100%;
  }

  .inputBox span{
    color: #000;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
  }

  .inputBox input{
    padding: 10px;
    font-size: 0.8em;
    outline: none;
    border: 1px solid #333;
    font-family: 'Inter', sans-serif;
  }

  .inputBox textarea{
    padding: 10px;
    font-size: 1em;
    outline: none;
    border: 1px solid #333;
    resize: none;
    min-height: 220px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
  }
  
  .inputBox input[type="submit"]{
    background: #143314;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.3em;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;
    letter-spacing: 1px;
    font-family: 'Anek Expanded', sans-serif;
  }

  .inputBox ::placeholder{
    color: #999;
  }


  /*--INFO--*/
  .info{
    background: #143314;
  }

  .info h3{
    color: #fff;
    font-family: 'Inter', sans-serif;
  }

  .info .infoBox div{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .info .infoBox div span{
    min-width: 40px;
    height: 40px;
    color: #fff;
    background: #23fa23;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%;
    margin-right: 15px;
  }

  .info .infoBox div p{
    color: #fff;
    font-size: 1.1em;
    font-family: 'Inter', sans-serif;
  }

  .info .infoBox div a{
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
    font-family: 'Inter', sans-serif;
  }

  .sci{
    margin-top: 40px;
    display: flex;
  }
  
  .sci li{
    list-style: none;
    margin-right: 15px;
  }

  .sci li a{
    color: #fff;
    font-size: 2em;
    color: #ccc;
  }

  .sci li a:hover{
    color: #fff;
  }
  .map{
    padding: 10px;
    
  }
  .map iframe{
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

   /*---INPUT SECTION--*/




   /*---Responsive--*/

   @media (max-width: 991px) {
    
    body{
        background: #c9c9c9;
    }
    .contactUs{
      padding: 20px;
    }
    .box{
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      grid-template-areas: 
      "form"
      "info"
      "map";
    }
    
    .formBox .row50{
      display: flex;
      gap: 0;
      flex-direction: column;
    }
    .inputBox{
      width: 100%;
    }
    .contact{
      padding: 30px;
    }
    .map{
      min-height: 300px;
      padding: 10px;
    }
   }


   footer .bottom-details{
    width: 100%;
    background: black;
  }
  footer .bottom-details .bottom_text{
    max-width: 1250px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
  }
  .bottom-details .bottom_text a:hover{
    opacity: 1;
    text-decoration: underline;
  }
  .bottom-details .bottom_text a{
    margin-right: 10px;
  }

  @media (max-width: 700px){
    footer{
      position: relative;
    }
   
    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a{
      font-size: 12px;
    }
  }
  