*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
}
.search-box{
    background-color: #fff;
    border: 1px solid #ababab;
    border-radius: 20px;
    overflow: hidden;
}
.search-box input{
    border: none;
    outline: none;
}
.search-box i{
    color: #ababab;
}
.nav-bar{
    background-color: #0c0c1d;
}
.nav-link{
    color: #fff;
}
.navbar-toggler-icon{
    color: #fff;
}
.nav-link:hover{
    color: #f9af2c;
}
.active{
    color: #f9af2c;
}
.banner{
    height: 240px;
}

.slider{
    height: 240px;
    /* border: 1px solid; */
    overflow: hidden;
}

.carousel-indicators [data-bs-target]{
    width: 15px;
    height: 15px;
    border-radius: 50%;
}
.img-container{
    background-color: #dadada80;
    border-radius: 50%;
    overflow: hidden;
}
.img-container i{
    /* color: #f9af2c; */
    color: #2174c2;
}
.categories-container{
    height: 240px;
    
}
.categories{
    display: flex;
    justify-content: center; 
    align-items: center;
}
.categories img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.categories:hover .img-container{
    box-shadow: 2px 2px 10px 1px #ebebeba7,
    -2px -2px 10px 1px #ebebeba7;
}
.breadcrumb-area{
    background-image: url(../image/background.jpg);
    height: 145px;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.know-more{
    background-color: #f9af2c;
    border-radius:30px ;
}

.client-section .heading{
    position: relative;
    margin-bottom: 20px;
}
.SeeMoreBtn{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0c0c1d;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #f9af2c;
    position: absolute;
    right: 16px;
    top: 0;
    animation: moving 2s linear infinite;
}
  
.client-card{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #f9af2c;
}  
.client-card img {
    height: 346px;
    object-fit: cover;
    object-position: center;
    
}  
.client-details {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0c0c1d80;
    color: #f9af2c;
    display: flex;
    justify-content: center;
    /* align-items: start; */
    /* opacity: 0; */
    transform: translatey(80%);
    transition: transform 0.3s ease-in-out; 
}

.client-name{
    font-size: 35px;
}
  
  
.client-card:hover .client-details {
    transform: translate(0);
}
.cli-container{
    border: 1px solid #f9af2c;
    border-radius: 10px;
}
.img-name{
    box-shadow: 3px 0px 2px 0px var(--bs-warning);
    /* height: 178px; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.img-name img{
    /* height: 100%; */
    width: auto;
    object-fit: contain;
    object-position:center ;
}
.service-card{
    height: 10rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
    border: 1px solid #f9af2c;
} 
.service-details{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0c0c1d80;
    color: #ffffff;
    display: flex;
    justify-content: center;
    opacity: 0.7;
    transition: transform 0.3s ease-in-out;
}

.service-details p{
    font-size: 24px;
}

.service-details:hover{
    opacity: 1;
    color: #f9af2c;
}
.footer-section{
    background-color: #0c0c1d;
    color: #fff;
}
.read-more{
    color: blue;
}
.copy-right{
    background: #f9af2c;
}
.copy-right>p>span{
    color: rgb(255, 25, 0);
}

.detail-card{
    display: flex;
    gap: 20px;
    border: 1px solid #f9af2c;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.detail-card .img-section{
    background-color: #f9ae2cd7;
    border-bottom-right-radius: 200% ;
    border-right:5px solid #2174c2 ;    
}
.detail-card .image-container{
    width: 100px;
    height: 100px;
    border: 1px solid #f9af2c;
    border-radius: 50%;
    overflow: hidden;
    margin: 10px ;
}
.detail-card .image-container img{
    height: 100px;
    object-fit: cover;
    object-position: center;
}
.detail-section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
}
.detail-section i{
    padding-right: 5px;
}
/* .detail-section .fa-location-dot{
    animation: up-down 3s linear infinite;
    
} */
/* .detail-section .fa-phone{
    animation: ring 1s ease-in-out infinite ;
} */
/* .detail-section .fa-dollar-sign{
    animation: spin 10s steps(2, end) infinite ;
} */
@keyframes moving {
    50%{
        transform: translatex(5px);
    }
}
/* @keyframes up-down {
    50%{
        transform: translatey(-3px);
    }
    
    
}
@keyframes ring {
    25%{
        transform: rotate(15deg);
    }
    75%{
        transform: rotate(-3deg);
    }
    
} */
@media only screen and (max-width: 768px) {
    .slider {
      height: 118px;
    }
    .img-container{
        width: 60px;
        height: 60px;
    }
    .service-card{
        height: 4rem;
    }
    .service-details p{
        font-size: 13px;
    }
    .detail-section{
        font-size: 10px;
    }
    .client-card img {
        height: 150px;
        object-fit: cover;
        object-position: center;    
    } 
    .client-name{
        font-size: 12px;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1440px) {
    .img-container{
        width: 80px;
        height: 80px;
    }
}