*{
    margin: 0;
    padding: 0;
}

body{
    background:white;
    line-height: 1.5;
}
header{
  z-index: 1000;
  top: 0;
  position: sticky;
    background: #026969;
    padding: 20px 9%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    font-size: 50px;
    font-weight: bold;
    color: white;
    font-style: oblique;
    text-decoration: none;
  
  }
  .logo img{
    height: 70px;
    width: auto;
    margin-left: 10px;
    border-radius: 50px;
    padding-top: 20px;
  }
  
  ul{
    list-style: none;
    background:white;
    border-radius: 30px;
  }ul li{
    display: inline-block;
    position: relative;
  }
  ul li a{
    display: block;
    padding: 20px 25px;
    color: black;
    text-decoration:none ;
    text-align: center;
    font-size: 20px;
  }
  ul li  ul.dropdown li{
    display: block;
  }
  ul li ul.dropdown {
    width: 100%;
    background: white;
    position: absolute;
    z-index: 999;
    display: none;
  }
  ul li a:hover{
    background:  #023e3a;
    }
    ul li:hover ul.dropdown{
        display: block;
    }


.page-header h1{
    font-size:45px;
}

.main{
  margin: 0;
  
}
/* SERVICES LIST */
.services-list{
    padding:40px 10%;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
    grid-gap:30px;
    
}

.box{
  align-items: center;
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 4px 10px;
    border-left:#0a728f solid 5px;
    border-right:#0a728f solid 5px;
}

.box h2{
    color:#0a728f;
    margin-bottom:10px;
}

.box p{
    font-size:18px;
    margin-bottom:20px;
}

.box img{
width: 250px;
height: 220px;
border-radius: 15px;
}

.btn{
    display:inline-block;
    padding:10px 15px;
    background:#026969;
    color:white;
    text-decoration:none;
    border-radius:6px;
}

/* WHY CHOOSE US SECTION */
.why-choose-us{
  padding:60px 10%;
  background:white;
  margin-top:40px;
  border-radius:10px;
}

.why-choose-us h2{
  font-size:40px;
  color:#026969;
  text-align:center;
  margin-bottom:10px;
}

.why-choose-us p{
  text-align:center;
  font-size:20px;
  color:#333;
  margin-bottom:40px;
}

.why-container{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
  gap:25px;
}

.why-box{
  box-shadow:0 4px 10px;
  background:white;
  padding:20px;
  border-left: #0a728f solid 5px;
  border-right: #0a728f solid 5px;
  border-radius:10px;
  box-shadow:0 4px 10px rgba(0,0,0,0.2);
}

.why-box h3{
  color:#0A728F;
  margin-bottom:10px;
  font-size:22px;
}

.why-box p{
  font-size:17px;
  color:#444;
}

.why-box img{
  width: 250px;
height: 220px;
border-radius: 15px;
}

.fa{
  margin-right: 6px;
  vertical-align: middle;
  font-size: 30px;
  color: black;
}

footer{
    background:#023e3a;
    color:white;
    text-align:center;
    padding:20px;
    margin-top:40px;
}
