@media (prefers-reduced-motion: no-preference) {
    * {
      scroll-behavior: smooth;
    }
  }
*{
    box-sizing: border-box;
    margin: 0;
   
}
body{
    font-family: 'Poppins',sans-serif;
    font-size: 20px;
}
/* header styling for large screen (desktop and laptop) */
.header{
    overflow: hidden;
    padding: 0;
    box-shadow: 0 3px 5px 0px rgba(0,0,0,0.5);
    position: fixed;
    width: 100%;
    top: 0;
    background-color: white;
    z-index: 1;
}
header img{
    margin-left: 15px;
    float: left;
}
nav{
    margin: 5px;
    float: right;
}
nav a{
    float: left;
    display: block;
    padding: 12px;
    margin: 0;
    text-decoration: none;
    font-size: 16px;
    text-align: center;
    color: black;
    border-radius: 4px;
    text-shadow: 0px 1px 1px rgba(0,0,0,0.3);
}
nav a:hover{
    background-color:#008DD5 ;
    color:white ;
}
.header .icon{
    display: none;
}
/* header styling for other screen sizes */
@media (max-width:700px)  {
    nav{
        float: none;
    }
    nav a{
        display: none;
    }
    .header a.icon {
        float: right;
        display: block;
    }
    .header.responsive {
        position: fixed;
    }
    .header.responsive a.icon{
        position: absolute;
        right: 0;
        top: 0;
        background-color: #008DD5;
        color: white;
    }
    .header.responsive a{
        float: none;
        display: block;
        text-align: left;
    }
    .contact-us,.meet-us{
        width: 100%;
    }
    .em{
        font-size: 14px;
    }
    .copyright{
        font-size: 15px;
    }
    body{
        font-size: 16px;
    }
}
main{
    margin-top: 60px;
}
section{
    min-height: 100vh;
}
.home-container{
    background-image: url("../assets/home.jpg");
    background-size: cover;
    background-repeat: no-repeat; 
    min-height:70vh;
}
.home-text{
    padding: 15vh 15px;
    color: white;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 1);
    background-color: rgba(0, 0, 0, 0.4);
    min-height: 70vh;
}
.home-text h1{
    font-size: 40px;
}
.home-text p{
    font-size: 25px;
    color: whitesmoke;
    text-shadow: 0px 1px 2px rgba(8, 8, 8, 0.7);
}
.key-services{
    padding: 20px;
}
.bold{
    font-weight: bold;
}
#about-us{
    background-color: whitesmoke;
    box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
}
.wrapper{
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}
.about-us-container{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 8px;
    padding: 15px;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 70vw;
}
.about-us-container div{
    width: 350px;
    text-align: left;
}
.center-align{
    text-align: center;
}
#services,#about-us,#contact,#testimonials{
    padding: 15vh 15px;
}
#services{
    box-shadow: 0px 4px 5px 0px rgba(53, 117, 173, 0.55);
}
.sechead{
    text-shadow: 0px 1px 2px rgba(0,0,0,0.4);
}
.services-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items:center;
    gap: 16px;
    flex-wrap: wrap;
}
.services-container div{
    margin: 5px 15px;
    width: 350px;
    height: auto;
    border-radius: 10px ;
    background-color:white;
    box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
    padding: 10px;
    color: white;
    background-color: #008DD5;
}
.services-container div h3{
    margin-bottom: 5px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.4);
    font-size: 20px;
}
.services-container div p{
    text-align:center;
}
#testimonials{
    box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
}
.slideshow-container {
    max-width: 1000px;
    position: relative;
    min-height: 40vh;
    margin:20px auto;
    
  }
  .my-slides {
    display: none;
  }
  .dot-container{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
   
  }
  .tes-image{
    border-radius: 50%;
    box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
    font-style: italic;
  }
  .quote{
    font-style: bold;
  }
  .tes-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px auto;
    gap: 10px;
    padding: 5px;

  }
  .tes-name{
    display: block;
    color: #008DD5;
  }
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 30%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  .active, .dot:hover {
    background-color: #717171;
  }
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }
.contact-container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    width: 80%;
    margin: 20px auto;
    height: auto;
    border-radius: 5px;
    font-family:'Poppins';
   
}
.meet-us{
    min-width: 50%;
    padding: 15px;
    background-color: whitesmoke;
    box-shadow: 0px 5px 3px 0px rgba(0,0,0,0.75);
}
.meet-us p{
    margin-top: 10px;
}
.meet-sub-head{
    font-weight: bold;
}
.meet-sub-head i{
    margin-right: 10px;
    color: #cc3f0c;
}
.contact-us{
    min-width: 50%;
    padding: 15px;
    background-color: white;
}
.contact-container h4{
    padding: 5px;
    font-size: 25px;
    font-weight: bold;
}
.contact-us input,.contact-us label{
    display: block;
}
.contact-us input{
    height: 2.375rem;
    width: 100%;
    padding: 0.375rem 0.75rem;
    color: #000;
    background-color: whitesmoke;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.contact-us input:focus{
    border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(63, 139, 220, 0.25);
}
.contact-us label{
    font-size: 18px;
    padding: 3px 0;
}
.contact-us button{
    height: 2.375rem;
    padding: 0.375rem 0.75rem;
    color: white;
    background-color: #cc3f0c;
    border-radius: 0.25rem;
    margin: 10px 0;
    width: 100%;
    font-family:'Poppins';
}
.footer{
    min-height: 70vh;
    background-color: whitesmoke;
    position: relative;
}
.footer-items-container{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    gap: 16px;
}
.footer-items-container h4{
    background-color: #008DD5;
    color: white;
    font-size: 20px;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.4);
    text-align: center;
    border-radius: 4px;
    height: 40px;
    padding: 10px;
}
.quick-links,.follow-us{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.footer a{
    text-decoration: none;
    margin: 2px;
    color: black;
}
.footer a:active,.footer a:visited{
    color:black;
}
.footer a:hover{
    cursor: pointer;
}
.copyright{
 position: absolute;
 bottom: 0;
 left: 0; 
 right: 0; 
 margin-inline: auto; 
 width: fit-content;
}
