.topNav {
    background-color: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 2rem;
    flex-wrap: wrap;
}

.topNav a {
    display: flex;
    gap: 3px;
    align-items: center;
    color: #fff;
}

.topNav_left,
.topNav_right {
    display: flex;
    gap: 1rem;
}

.myNav.sticky {
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--black-color);
    z-index: 999;
    width: 100%;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
}

.myNav_content {
    display: flex;
    justify-content: space-between;
}

.logo img {
    width: 130px;
    padding: 1rem 0;
}

.menu ul {
    display: flex;
    gap: 3rem;
    height: 100%;
}

.menu ul li {
    display: flex;
    justify-content: center;
    height: 100%;
    align-items: center;



}

.header_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu ul li a {
    text-transform: capitalize;
    font-size: 16px;
    color: var(--white-color);
    font-weight: 600;
}

.menu ul li a:hover {
    color: var(--main-color);
}

.dropdown_menu {
    position: relative;
}

.dropdown_menu__list {
    position: absolute;
    top: 100%;
    left: -50%;
    width: 320px;
    z-index: 999;
    visibility: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: .5s ease all;
    background-color: var(--white-color);
    box-sizing: 0px 4px 30px 0px rgba(0, 0, 0, .06);
}

.dropdown_menu:hover .dropdown_menu__list {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    visibility: visible;
    transition: .5s ease all;
}

.dropdown_menu__list ul li a {
    display: block;
    border-bottom: 1px solid #ccc;
    color: var(--black-color);
    padding: 1rem;
    width: 100%;
}

.dropdown_menu__list ul li {
    width: 100%;
}

.dropdown_menu__list ul {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 0 !important;
}

.myNav {
    padding: 0 2rem;
    background-color: var(--black-color);
    border-bottom: 1px solid #ccc;
}

/* banner_box__img */
.banner_box__img img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.banner_box__img {
    position: relative;
}

.banner_box__img::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
}

.banner_content {
    color: var(--white-color);
}

.banner_content h1 {
    font-size: 75px;
    font-weight: 600;
}

.banner_content p {
    margin-top: 1rem;
    font-size: 22px;
}

.banner_box {
    position: relative;
}

.banner_content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 60%;
}

.myBtn {
    margin-top: 2rem;
}

/* about */
.global_wrapper {
    padding: 80px 0;
}

.global_content {
    margin-top: 3rem;
}

.about_img,
.about_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.about_content b {
    color: var(--main-color);
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 16px !important;
    display: block;
}

.about_content h2 {
    font-size: 36px;
    text-transform: capitalize;
}
.about_content h3{
    margin-top: 1rem;
}
.about_content p {
    font-size: 18px;
    line-height: 30px;
    color: #434343;
    margin-top: 16px;
}

.about_content ul li {
    margin-bottom: 12px;
    font-size: 18px;
    color: #434343;
    list-style: disc !important;
}

.about_content ul li::marker {
    color: var(--main-color);
}

.about_content ul {
    /*margin-top: 2rem;*/
    padding-left: 2rem !important;
}

/* box_content */
.box_content {
    display: flex;
    gap: 1rem;
}

.box_wrapper {
    padding-bottom: 80px;
}

.box_icon img {
    width: 82px;
}
.box_icon{
    width: 100%;
}

.box_info h3 {
    text-transform: capitalize;
    font-size: 24px;
}

.box_info p {
    font-size: 16px;
    margin-top: 5px;
    line-height: 26px;
}

.back-bg {
    background-color: #fffce3;
}



/* services */
.main_heading {
    text-align: center;
}

.main_heading h2 {
    text-transform: capitalize;
    font-size: 50px;
    color: var(--main-color);
}

.main_heading p {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 1rem !important;
    font-size: 18px;
}

.service_box {
    background-color: var(--white-color);
    padding: 2rem;
    border: 1px solid #ccc;
    display: flex;
    gap: 1rem;
    height: 94%;
    margin-bottom: 24px;
    transition: .3s ease all;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.service_box:hover::before {
    transition: .3s ease all;
    left: 0;
}

.service_box::before {
    content: '';
    position: absolute;
    left: -99%;
    transition: .3s ease all;
    top: 0;
    background-color: var(--main-color);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.service_box__icon img {
    width: auto;
}

.service_box__content h3 {
    font-size: 24px;
}

.service_box__content a {
    display: flex;
    gap: 3px;
    align-items: center;
    margin-top: 1rem;
    text-transform: capitalize;
    color: var(--main-color);
    font-weight: 500;
    font-size: 18px;
}

.service_box__content a i {
    font-size: 25px;
}

.service_box__content p {
    margin-top: 10px;
}

.service_box:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
    transform: translateY(-5px);
    transition: .3s ease all;
    color: var(--white-color);
}

.service_box:hover a {
    color: var(--white-color);
}

/* team_box */
.team_box__img img {
    width: 100%;
    height: 400px;
    object-position: top;
    object-fit: cover;
}

.team_box:hover img {
    opacity: .8;
}

.team_box__content {
    background-color: #fffce3;
    text-align: center;
    padding: 10px 0;
}

.team_box {
    border: 1px solid #ccc;
}

.team_box__content h3 {
    font-size: 25px;
    font-weight: 500;
    text-transform: capitalize;
}

.team_box__content p {
    font-style: 18px;
    font-style: italic;
}

/* client_slider__box */
.client_slider__box img {
    width: 140px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.client_slider__box {
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    margin: 0 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 5px;
}

.client_wrapper {
    background-color: var(--main-color);
    padding: 50px 0;
}

.white_heading h2,
.white_heading p {
    color: var(--white-color);
}

/* testimonial_box */
.testimonial_box {
    background-color: whitesmoke;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 2rem;
    margin: 0 14px;
    text-align: center;
}

.testimonial_box__img img {
    height: 120px;
    width: 120px;
    border-radius: 100%;
    object-fit: cover;
}

.testimonial_box__img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial_box__content p {
    font-size: 16px;
    margin-top: 12px;
    line-height: 28px;
}

.testimonial_box__content h3 {
    text-transform: capitalize;
    margin-top: 10px;
    font-weight: 600;
    font-size: 24px;
    color: var(--main-color);
    text-transform: capitalize;
}

.testimonial_box__content span {
    font-style: italic;
    text-transform: capitalize;
}

.slick-dots {
    line-height: 0;
    bottom: -3rem !important;
}

.slick-dots li button::before {
    display: none;
}

.slick-dots li {
    height: 12px !important;
    width: 12px !important;
    border-radius: 100%;
    background-color: #ddd;
}

.slick-dots li.slick-active {
    background-color: var(--main-color);
    transition: .3s ease all;
}


.menu_icon {
    display: none;
}

.mobile_navbar {
    position: fixed;
    right: -100%;
    top: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: .3s ease-in;
    backdrop-filter: blur(3px);
}

.mobile_navbar.show {
    right: 0;
    transition: .3s ease-in;
}

.mobile_navbar__contnet {
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--white-color);
    width: 50%;
    height: 100%;
}

.mobile_navbar__header {
    border-bottom: 1px solid #ccc;
    padding: 0px 1rem;
    background-color: var(--black-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cancel_icon i {
    color: var(--white-color);
    font-size: 35px;
    cursor: pointer;
}

.mobile_menu ul li a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    text-transform: capitalize;
    font-size: 18px;
    color: var(--black-color);
    font-weight: 500;
}

.menu_btn__list {
    height: 0;
    overflow: hidden;
}

.menu_btn.active .menu_btn__list {
    height: auto;
    background-color: #fffce3;
}

.mobile_menu {
    height: 550px;
    overflow-y: scroll;
}

.menu_btn.active .active_menu {
    background-color: var(--main-color);
    color: var(--white-color);
}

.menu_icon i {
    color: var(--white-color);
    font-size: 32px;
}

@media(max-width:1440px) {
    .banner_box__img img{
        height: 550px;   
    }
    .banner_content h1 {
    
        font-size: 36px;
    }
    .banner_content p{
        font-size: 18px;
    }
    .myNav {
        padding: 0 16px;
    }
    .logo img{
        width: 82px;
        padding: 10px 0;
    }

    .menu ul {
        gap: 2rem;
    }
}

@media(max-width:1200px) {
    .logo img {
        width: 100px;
    }

    .menu ul {
        gap: 1.5rem;
    }

    .menu ul li a {
        font-size: 16px;
    }

    .banner_content {
        width: 80%;
    }

    .team_box__img img {
        height: 290px;
    }

    .team_box__content h3 {
        font-size: 22px;
    }

    .myNav {
        padding: 0;
    }
}

@media(max-width:992px) {
    .menu ul {
        display: none;
    }

    .menu_icon {
        display: block;
    }

    .header_btn {
        gap: 1rem;
    }

    .center_box {
        margin: 0 50%;
        width: 100%;
        margin-top: 2rem !important;
    }

    .about_content {
        margin-top: 1rem;
    }

    .banner_box__img img {
        height: 680px;
    }

    .banner_content h1 {
        font-size: 50px;
    }

    .banner_content p {
        font-size: 18px;
    }

}

@media(max-width:768px) {
    .mobile_navbar__contnet {
        width: 90%;
    }

    .global_wrapper {
        padding: 50px 0;
    }

    .global_content {
        margin-top: 2rem;
    }

    .center_box {
        margin: auto;
        margin-top: auto !important;
    }

    .mybox {
        border-right: 0;
        margin-bottom: 32px;
    }

    .about_content b {
        font-size: 18px;
        margin-bottom: 10px !important;
    }

    .about_content h2 {
        font-size: 25px;
    }

    .about_content p,
    .box_info p,
    .main_heading p,
    .service_box__content p,
    .testimonial_box__content p {
        font-size: 14px;
        line-height: 25px;
    }

    .banner_box__img img {
        height: 550px;
    }

    .banner_content {
        width: 96%;
    }

    .banner_content h1 {
        font-size: 34px;
    }

    .about_content p,
    .main_heading p,
    .service_box__content p {
        margin-top: 6px !important;
    }

    .service_box {
        padding: 1.2rem;
        height: auto;
        margin-bottom: 1rem;
    }

    .main_heading h2 {
        font-size: 28px;
    }

    .service_box__content h3 {
        font-size: 20px;
    }

    .team_box {
        margin-bottom: 1rem;
    }

    .team_box__img img {
        height: 453px;
    }

    .testimonial_box__img img {
        height: 80px;
        width: 80px;
    }

    .testimonial_box {
        padding: 1rem;
    }

    .testimonial_slider .slick-track {
        margin-bottom: 3px;
    }
}

@media(max-width:576px) {
    .mobile_navbar__contnet {
        width: 100%;
    }

    .about_content h2 {
        font-size: 22px;
    }
   

    .topNav {
        padding: 10px 12px;
    }

    .topNav a {
        font-size: 14px;
    }

    .box_info h3 {
        font-size: 20px;
    }

    .banner_content p {
        font-size: 15px;
    }

    .client_slider__box {
        margin: 0 5px;
        border-radius: 5px;
    }

    .client_wrapper {
        padding: 25px 0 35px 0;
    }
}

@media(max-width:450px){
    .topNav{
        gap:3px;
        justify-content: center;
    }
}

@media(max-width:420px) {
    .topNav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 5px;

    }
        .topNav a {
        font-size: 11px;
    }
}