/* boilerplate */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}
body{
  width: 100%;
  height: 100%;
  background-color: #F1F2F4;
}
header{
    width: 100%;
    height: 80px;
    /* border: 1px solid black; */
    display: flex;
    /* justify-content: center; */
    align-items: center;
    justify-content: space-around;
    background-color: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  
}

#logo img{
   width: 100px;
   height: 60px;
   border-radius: 30px;
   /* border: 5px solid teal; */

  
}

#searchBar{
    width: 38%;
    height: 50px;
    /* border: 1px solid teal; */
    /* margin: auto; */
    /* border-radius: 8px; */
    display: flex;
   float: left;
   align-items: center;
}

 input::placeholder{
    font-size: medium;
    padding: 20px;
   position: relative;
 }

 #searchBar #searchIcon{
  z-index: 1;
  position: absolute;
 
  font-size: larger;
  font-weight: 100;
  opacity: 0.5;
  margin: 10px;
 }
#searchBar input{
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    /* margin: auto; */
    border-radius: 10px;
    background-color:#F0F5FF;
    border: none;
    padding: 0 0 0 40px;
    font-size: medium;
    color: teal;
}


nav{
    width: 40%;
    z-index: 999;
}
nav ul{
     display: flex;
     align-items: center;
     gap: 30px;
     /* font-weight: 100; */
     font-size: larger;
     justify-content: center;
     width: 100%;
     
}
li{
    list-style: none;
    opacity: 0.8;
    cursor: pointer;
   
}

ul li:first-child:hover .fa-chevron-down{
    transform: rotate(180deg);

}



                   /* dropDown-content */

         
ul li {
            margin: 0 15px;
            position: relative;
            cursor: pointer;
  }
          
ul li i {
            margin-right: 5px;
  }
          
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FAFAFA;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1; /* Ensure it's above the Swiper */
    width: 300px;
    opacity: 100;
}

.dropdown-content a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    display: block;
    padding: 10px 15px;
    white-space: nowrap;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight:400;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Ensure Swiper has a lower z-index */
.swiper {
    z-index: 999; /* Lower than the dropdown */
    position: relative; /* Ensure positioning context */
}
   