@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');
* {
    font-family: "Arimo", sans-serif;
    font-optical-sizing: auto;

    font-style: normal;
    
}

.body {
    text-decoration: none;
    color: #333;
}

.main {
    background-image: url('../images/back.jpg');
    background-size: cover;
    background-position: center;
    margin-top: -20px;
    height: 90vh;
    width: 100%;
    position: relative;
}

/* Add this CSS to overlay the company name on the background image */
.company-overlay {
    position: absolute;
    top: 40%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgb(212, 212, 249);
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}



#serviceSection {
    /* background: #222429; */
    /* background: #10182F; */
    background: #eff1f9;
    padding: 50px 0;
    overflow-x: hidden;
    margin-bottom: 100px;
}

#serviceSection .sec-header h2 {
    color: #fff;
    margin-bottom: 30px;
}

#serviceSection .sec-header h2 span {
    color: #fb383b;
}

#serviceSection .sec-header p {
    color: #9ca3a9;

    font-size: 16px;
    margin-bottom: 0;
}

#serviceSection .service-box {
    display: flex;
    background: #1d1e22;
    align-items: top;
    border-radius: 10px;
    justify-content: space-between;
    padding: 50px 40px;
    margin: 15px 0;
    cursor: pointer;
    transition: .4s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#serviceSection .service-box .txt-area h3 {
    color: #9ca3a94d;
    margin-bottom: 50px;
    transition: .4s;
}

#serviceSection .service-box .txt-area h4 {
    color: #9ca3a9;
    margin-bottom: 0;
    font-size: 20px;
    transition: .4s;
}

#serviceSection .service-box .img-box {
    position: relative;
}

#serviceSection .service-box .img-box img {
    width: 70px;
    transition: .4s;
}

#serviceSection .service-box .img-box .img01 {
    position: absolute;
    top: 0;
    left: 0;
}

#serviceSection .service-box .img-box .img02 {
    opacity: 0;
}

#serviceSection .service-box:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);

}

#serviceSection .service-box:hover .txt-area h3 {
    color: #fff;

}

#serviceSection .service-box:hover .txt-area h4 {
    color: #1d1e22;
}

#serviceSection .service-box:hover .img-box .img01 {
    opacity: 0;
}

#serviceSection .service-box:hover .img-box .img02 {
    opacity: 1;
}



/*team section */
.team_section {
    text-align: center;
    /* background-color: #00204a; */
    background-color: #10182F;
    color: #ffffff;
    padding: 20px;
    margin-top: -100px;
}

.team_section .heading_container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.team_section .team_container {
    padding: 0 15px;
}

.team_section .team_container .box {
    padding: 35px 0 0 0;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all .1s;
    transition: all .1s;
    margin-top: 45px;
    background: -webkit-gradient(linear, left top, left bottom, from(#002759), to(#002b64));
    background: linear-gradient(to bottom, #002759, #002b64);
}

.team_section .team_container .box .img-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.team_section .team_container .box .img-box img {
    width: 120px;
    border-radius: 100%;
    border: 5px solid #ffffff;
}

.team_section .team_container .box .detail-box {
    margin: 25px 0;
}

.team_section .team_container .box .detail-box h5 {
    color: #00bbf0;
    font-weight: 600;
    position: relative;
}

.team_section .team_container .box .social_box {
    padding: 10px 45px 20px 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.team_section .team_container .box .social_box a {
    color: #ffffff;
    font-size: 22px;
}

.team_section .team_container .box .social_box a:hover {
    color: #00bbf0;
}

/*team section end*/


/*client section */
.client-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.client-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.client-image {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 50%;
    align-self: flex-start;
    margin-bottom: 10px;
}

.client-details {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.client-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}


.client-info {
    flex: 1;
}


.client-comment {
    font-size: 14px;
}

.client_section {
    padding: 50px 0;
}

/* Client Card Hover Effect */
.client-card:hover {
    transform: translateY(-10px);
    /* Move the card slightly up on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Add box shadow for elevation */
}

/* Heading Container CSS */
.heading_container {
    text-align: center;
    /* Center align the heading */
}

/* See All Button CSS */
.see-all-btn {
    color: #007bff;
    /* Set button text color */
    text-decoration: none;
    /* Remove underline */
    border: 2px solid #007bff;
    /* Add border */
    padding: 10px 20px;
    /* Add padding */
    border-radius: 5px;
    /* Add border radius */
    transition: all 0.3s ease;
    /* Add transition effect */
    display: inline-block;
    margin-top: 20px;
    /* Add margin to the button */
}

.see-all-btn:hover {
    background-color: #007bff;
    /* Change background color on hover */
    color: #fff;
    /* Change text color on hover */
}

.see-all-btn span {
    margin-right: 5px;
    /* Add spacing between text and icon */
}

.see-all-btn i {
    font-size: 16px;
    /* Set icon size */
}