* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Animations */
@keyframes slideIn_other {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

body,
html {
    background-color: #04C2E9;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    /* padding: 10px 20px; */
}

/* 
.navbar .logo {
    height: 100px;
} */

.nav-list {
    list-style-type: none;
    display: flex;
    margin-right: 50px;
}

.nav-list li {
    padding: 0 20px;
}

.nav-list li a {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease-in-out;
}

.nav-list li a:hover {
    color: #04C2E9;
}


.navbar .logo {
    height: 70px;
    width: 70px;
    padding:3.5px;
    /* Adjust to maintain aspect ratio */
    margin-left: 75px;
    /* Maximum height to align with the navbar height */
    float: left;
    /* Adjust width automatically */
    /* Remove padding if necessary */
}

.nav-list li a.Active {
    color: #04C2E9;
    /* or any other color you want for the active state */
    font-weight: bold;
    /* optional, if you want to make it bold */
}

/* services */
.services {
    position: relative;
    width: 100%;
    min-height: 50vh;
    /* padding: 100px; */
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 180px;
    padding-right: 180px;
    display: flex;
    text-align: center;
    opacity: 1;
    justify-content: center;
    background-position: center center;
    align-items: center;
    background-size: cover;
    background-color: #83A342;
}

.all_services {
    position: relative;
    margin: 0;
    padding: 0;
}

.services_title {
    color: #fff;
    font-size: 45px;
    font-weight: bolder;
    font-family: 'Arial Narrow Bold';
    text-align: center;
}

.services-details {
    color: #fff;
    text-align: center;
    /* font-weight: bold; */
    font-size: 24px;
    font-family: 'Calibri';
    /* animation: slideIn_other 2s ease-in-out forwards; */
}

.services-details .services-main {
    /* color: black; */
    padding-top: 8px;
    /* color: black; */
}

.services-details p {
    font-family: 'Calibri';
}

/* .services-details p{
    color: black;
} */


/* Product Section */
.employ_sect {
    width: 100%;
    height: 80vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(https://rapidmooverz.com.pk/assets/images/image.jpg);
    background-position: center;
    background-size: cover;
}

.employee {
    display: flex;
    color: #fff;
    height: 88%;
    justify-content: center;
    align-items: center;
    text-align: left;
}

.col_emp {
    flex-basis: 40%;
    margin: 0 20px;
    /* animation: slideIn 2s ease-in-out forwards; */
}

.col_emp h1 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 20px;
}


.col_emp p {
    color: #fff;
    font-size: 1.2em;
    line-height: 1.6;
    align-items: left;
}

.card-container {
    display: flex;
    justify-content: left;
    align-items: left;
    margin-top: 20px;
    /* animation: slideIn_other 2s ease-in-out forwards; */
}

.card {
    width: 100%;
    width: 250px;
    height: 300px;
    display: inline-block;
    border-radius: 10px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 0 10px;
    /* Adjusted margin for better spacing */
    background-image: url(https://rapidmooverz.com.pk/assets/images/packaging.png);
    background-position: center;
    background-size: cover;
    /* transition: transform 0.3s; */
}

.card_1 {
    width: 100%;
    width: 250px;
    height: 300px;
    display: inline-block;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 0 10px;
    /* Adjusted margin for better spacing */
    background-image: url(https://rapidmooverz.com.pk/assets/images/promotional.png);
    background-position: center;
    background-size: cover;
    /* transition: transform 0.3s; */
    /* animation: fadeIn 1s forwards; */
}

.card_2 {
    width: 100%;
    width: 250px;
    height: 300px;
    display: inline-block;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 0 10px;
    /* Adjusted margin for better spacing */
    background-image: url(https://rapidmooverz.com.pk/assets/images/box.png);
    background-position: center;
    background-size: cover;
    /* transition: transform 0.3s; */

}

.card_3 {
    width: 100%;
    width: 250px;
    height: 300px;
    display: inline-block;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
    margin: 0 10px;
    /* Adjusted margin for better spacing */
    background-image: url(https://rapidmooverz.com.pk/assets/images/blister.png);
    background-size: cover;
    /* transition: transform 0.3s; */

}

.card:hover,
.card_1:hover,
.card_2:hover,
.card_3:hover {
    transform: scale(1.12);
}

/* Slider */
.counter_sect{
    width: 100%;
    height: 20vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(https://rapidmooverz.com.pk/assets/images/counter_bg.png);
    background-position: center;
    background-size: cover;
}



/* Counter */

.wrapper {
    position: absolute;
    width: 80vw;
    transform: translate(-50%, -50%);
    /* top: 50%; */
    left: 50%;
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.counter-container {
    width: 28vmin;
    height: 28vmin;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1em 0;
    position: relative;
    font-size: 16px;
    border-radius: 0.5em;
    background-color: #21242b;
    border-bottom: 10px solid #18f98f;
}

.counter-container i {
    color: #18f98f;
    font-size: 2.5em;
    text-align: center;
}

span.num {
    color: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 3em;
}

span.text {
    color: #e0e0e0;
    font-size: 1em;
    text-align: center;
    pad: 0.7em 0;
    font-weight: 400;
    line-height: 0;
}






/* Footer */
.footer {
    /* background: #252525; */
    background-image: url(https://rapidmooverz.com.pk/assets/images/Web_Footer.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
    line-height: 20px;
}

.contain {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    /* margin-left: 20px; */
}

ul {
    list-style: none;

}

.footer-col_corner,
.footer-col {
    margin-left: 78px;
    width: 15%;
    /* padding: 0 8px; */
}


.footer-col_corner h4,
.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}

.footer-col_corner h4::before,
.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #84A052;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col_corner ul li a,
.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;

}

.footer-col_corner ul li,
.footer-col ul li {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col_corner ul li:hover,
.footer-col ul li:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-col_corner ul li a:hover .footer-col ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.4s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #fff;
}

.footercopyright {
    width: 100%;
    background-color: #33B6EA;
    height: 30px;
    justify-self: center;
}