*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}



/* dropdown */

.dropdown-menu li {
    position: relative;
    }
    .dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
    }
    .dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
    }
    .dropdown-menu > li:hover > .dropdown-submenu {
    display: block;
    }

/* dropdown */

/* navbar */

.sticky{
    position: sticky;
    top: 0%;
    z-index: 1;
}


.nav-item a:hover {
       color: #00B4FF;
       transition: 0.3s;
}



.header{
    background-color: #ffffff !important;
    
}

.nav-item {
    font-size: 16px;
    align-items: center;
    justify-content: center;
    display: flex;
    font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  padding: 10px;


  }

/* navbar */

/* banner image */
  
.bg-banner{
    background-color: #F5FBFF;
}

.bg-text {
    margin-top: 150px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: #F5FBFF;
}

.bg-text h2{
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 46px;
    color: #0F394B;
}

.bg-text p{
    font-family: "Roboto", sans-serif;
    
    font-style: normal;
    font-size: 20px;
    color: #8b8a8a;
}

.bg-button {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.bg-button .btn {
    background-color: #49B5E7;
    padding: 10px 40px;
}

.bg-button .btn a{
    text-decoration: none;
    color: white;
   
}

.bg-img {
    margin-top: 150px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: #F5FBFF;
}

/* banner image */


.about-text{
    display: flex;
    justify-content: center;
    flex-direction: column;
}






.about-text h1 {
    font-size: 36px;
    color: #004a7c;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
}
.section {
    display: flex;
    align-items: flex-start;
    margin-top: 30px;
}
.section i {
    font-size: 30px;
    color: #00a1e0;
    margin-right: 20px;
}
.section h2 {
    font-size: 20px;
    color: #004a7c;
    margin-bottom: 10px;
}
.section p {
    margin: 5px 0 0 0;
}

/* second banner */

.secondbanner{
    margin: 0;
    background: url("../images/second\ banner.avif");
    background-size: cover;
    background-repeat: no repeat;
    height: 500px;
    margin-bottom: 100px;
    margin-top: 50px;
    width: 100%;


    
}

.secondbanner h2{
    color: #00B4FF;
    font-size: 48px;
    font-weight: 500;
    
}

.secondbanner p{
    color: #3f3f3f;
    font-size:16px;
    font-weight: 500;
}


/* second banner */








 .client-logo img {
    padding: 50px;
   width: 80%;
    transition: 0.3s;
}

 .client-logo:hover img {
    transform: scale(1.1);
}

.bord{
    border: 1px solid #6c757d;
     margin-bottom: 75px;
     border-radius: 50px;
     width: 80%;
}

.img-wrapper {  
   
    overflow: hidden; 
  }
.inner-img {
    transition: 0.3s;
  }
  
.inner-img:hover {
    transform: scale(1.1);
  }

/* services */

.ot{
    font-size: 16px;
    margin-bottom: 50px;
   
  }
  
  .tm{
    font-size: 36px;
    color: #004a7c;
    font-weight:700;
    margin-bottom: 20px;
    
   
  }



.services {
    background-color: #F5FBFF;
    padding: 50px;
   
 
    
}




.services .card{
    margin: 10px;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.3s;
 
}

.services .card-icon i{
    color: #00B4FF;
    font-size: 60px;
    font-weight: 500;
    position: relative;
    top: 90px;
    left: -30px;
    
}


.services .card-title:hover{
    color: #00B4FF;
    cursor: pointer;
    

}

.services .card-body{
    padding: 50px;
    margin-top: -50px;
    margin-left: 20px;
    
 }

 .services .card:hover{
    transform: scale(1.1);
 }


 /* services */






 .oot{
    font-size: 16px;
    margin-bottom: 50px;
   
  }
  
  .ttm{
    font-size: 36px;
    color: #004a7c;
    font-weight:700;
    margin-bottom: 20px;
    margin-top: 100px;
    
   
  }







 .portfolioname {
    display: flex;
    justify-content: center;
    padding: 20px;
   
  
}
.portfolioname a {
    margin: 0 15px;
    text-decoration: none;
    color: #8b8a8a;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: 700;
   
}

.portfolioname a:hover{
    color: #00B4FF;
}

.portfolio {
    display: flex;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap;
}
.portfolio .image-container {
    position: relative;
 
}
.portfolio img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.image-container:hover .overlay {
    opacity: 1;
}
.icon {
    color: white;
    font-size: 24px;
    margin: 0 10px;
}

.icon:hover{
color: #00B4FF;
}









/* testimonails */

.testimonial-section {

    
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    margin-top: 80px;
}
.testimonial-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    background-image: url("../images/testimonials-bg.jpg");
    

    background-position: fixed;
}
.testimonial-content img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #fff;
}
.testimonial-content h3 {
    margin: 10px 0 5px;
    font-size: 24px;
}
.testimonial-content h4 {
    margin: 0;
    font-size: 16px;
    color: #ccc;
}
.testimonial-content .stars {
    margin: 10px 0;
}
.testimonial-content .stars i {
    color: #fbc02d;
}
.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin: 20px 0;
}
.testimonial-content .quote {
    font-size: 24px;
    color: #ccc;
}
.testimonial-content .dots {
    margin-top: 20px;
}
.testimonial-content .dots i {
    color: #ccc;
    margin: 0 5px;
    font-size: 12px;
}
.testimonial-content .dots i.active {
    color: #fff;
}
@media (max-width: 768px) {
    .testimonial-content {
        max-width: 90%;
    }
    .testimonial-content p {
        font-size: 16px;
    }
}


/* testimonials */



/* team */


.cover p{
color:#fff;
font-size: 16px;
}

.cover h3{
    font-size: 24px;
}

.cover h3:hover{
    color:#00B4FF;
}


@media (max-width:767px) {
h2 {
margin-bottom:25px;
padding-top:25px;
font-size:24px;
}
}



.people {
padding:50px 0;
cursor: pointer;
}
.item {
margin-bottom:30px;
}

.item .box {
text-align:center;
background-repeat:no-repeat;
background-size:cover;
background-position:center;
height:280px;
position:relative;
overflow:hidden;
}

.item .cover {
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background-color:rgba(5, 5, 5, 0.75);
transition:opacity 0.15s ease-in;
opacity:0;
padding-top:80px;
color:#fff;
text-shadow:1px 1px 1px rgba(0,0,0,0.15);
}

.item:hover .cover {
opacity:1;
}


.social {
font-size:24px;

}

.social a {
color:#ffffff;
margin:0 5px;
display:inline-block;
opacity:0.5;
}
.social a:hover {
opacity:1;
}


/* team */



.ooot{
    font-size: 16px;
    margin-bottom: 50px;
   
  }
  
  .tttm{
    font-size: 36px;
    color: #004a7c;
    font-weight:700;
    margin-bottom: 20px;
    margin-top: 50px;
    
   
  }




























/* google map */


.map-container {
    position: relative;
    width: 100%;
    height: 300px;
  
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 300px;
    border: 0;
}


/* google map */






/* contact */
.info-item i{
    font-size: 30px;
    margin-right: 20px;
    color: #00B4FF;
    margin-top: 10px;
}

.info-item h3{
    font-size: 20px;
    color: #0F394B;
    margin-top: 10px;
}

.info-item p{
    font-size: 16px;
    color:#6c757d;
}


.btnnn{
    padding: 15px 40px;
    background-color: #00B4FF;
}

.btnnn:hover{
    padding: 15px 40px;
    background-color: #00B4FF;
}


/* footer */





.footer {
    background-color: #fff;
    padding: 40px 0;
   
}
.footer h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 20px;
}
.footer h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}
.footer p {
    color: #6c757d;
    line-height: 1.6;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    color: #6c757d;
    text-decoration: none;
}
.footer ul li a:hover {

    color: #00B4FF;
}
.footer .social-icons {
    margin-top: 20px;
}
.footer .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-right: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    color: #6c757d;
    text-decoration: none;
}
.footer .social-icons a:hover {
    background-color: #00B4FF;
    color: #ffffff;
}
.footer .copyright {
    text-align: center;
    padding: 20px 0;
    background-color: #F5F5F5;

   
}
.footer .copyright a {
    color: #007bff;
    text-decoration: none;
}
.footer .copyright a:hover {
    text-decoration: underline;
}

/* footer */

/* topbutto */

/* .topbutton{
    position: fixed;
    left: 1500px;
    bottom: 20px;
}

.btnn{
    background-color: #004a7c;
    color: white;
}

.btnn:hover{
    background-color: #004a7c;
    color: white;
} */

.btnn{
   font-size: 20px;
   background-color: #00B4FF;
}

.btnn:hover{
    font-size: 20px;
    background-color: #00B4FF;
 }
