.whatsapp_icon img {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    width: 60px;
    z-index: 999;
}

.myNav_content {
    display: flex;
    justify-content: space-between;
}

.myNav.sticky {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.logo img {
    width: 220px;
}

.menu ul {
    display: flex;
    gap: 2rem;
    height: 100%;
}

.menu ul li {
    display: flex;
    align-items: center;
    padding: 2rem 0;
    cursor: pointer;
}

.header-btn,
.logo {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    margin: auto 0;
}

.header-btn .global_btn i,
.download-btn .global_btn i {
    transform: rotate(0);
}

.global_btn i {
    margin-right: 4px;
}

.header_right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login-btn {
    position: relative;
}

.login-list {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 200px;
    border: 1px solid #ccc;
    z-index: 99;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease all;
}

.login-btn:hover .login-list {
    opacity: 1;
    visibility: visible;
}

.login-list a {
    display: block;
    font-size: 16px;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    text-transform: capitalize;
    color: var(--black-color) !important;
    font-weight: 500;
    transition: .3s ease all;
}

.login-list a:hover {
    background-color: #000;
    color: #fff !important;
    transition: .3s ease all;
}

.menu ul li a {
    text-transform: capitalize;
    font-size: 18px;
    color: var(--black-color);
    font-weight: 500;
}

.myNav {
    border-bottom: 1px solid #ccc;
}

.myNav_content {
    position: relative;
}

.dropdown_menu {
    position: relative;
}

.dropdown_menu__list {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: 350px;
    background-color: #000;
    padding: 1rem;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    border: 1px solid #ccc;
    z-index: 99;
    transition: .57s ease all;
    opacity: 0;
    visibility: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);

}

.about-list {
    width: 210px;
}

.dropdown_menu:hover .dropdown_menu__list {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transition: .57s ease all;
    opacity: 1;
    visibility: visible;
}

.dropdown-box {
    display: flex;
    gap: 1rem;
}


.dropdown_menu__list ul {
    flex-direction: column;
    gap: 0 !important;
}

.dropdown_menu__list ul li a {
    color: #fff !important;
    display: block;
    font-size: 17px !important;
}

.dropdown_menu__list ul li:nth-child(1) a {
    margin-top: 0;
}

.dropdown_menu__list ul li {
    padding: 0 !important;
}

.dropdown_menu__list ul li a:hover {
    transform: translateX(10px);
    transition: .4s ease all;
    color: var(--main-color);
    font-weight: 600;
}

.dropdown-box h6 {
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 600;
}

.dropdown_menu__list ul li a {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    transition: .4s ease all;
    position: relative;

}

.all-service {
    background-color: #b5fff7;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
}

.all-service a {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 22px !important;
    font-weight: 600 !important;
}



.mobileNav {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .5);
    backdrop-filter: blur(3px);
    transition: .3s ease;
    z-index: 999;
}

.mobileNav.active {
    right: 0;
    transition: .3s ease;
}

.mobile_header {
    display: flex;
    background-color: #211F20;
    padding: 1rem;
    align-items: center;
    justify-content: space-between;
}

.mobile_header__logo img {
    width: 220px;
}

.cancel_btn i {
    cursor: pointer;
    height: 32px;
    width: 32px;
    border-radius: 100%;
    color: var(--black-color);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
}

.mobileNav_content {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    overflow-y: scroll;
    background-color: var(--white-color);
}

.mob-menu ul li a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    text-transform: capitalize;
    color: var(--black-color);
}

/* Show animation when mobileNav is active */
.mobileNav.active .mob-menu ul li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delay */
.mobileNav.active .mob-menu ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobileNav.active .mob-menu ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobileNav.active .mob-menu ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobileNav.active .mob-menu ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobileNav.active .mob-menu ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.mobileNav.active .mob-menu ul li:nth-child(6) {
    transition-delay: 0.6s;
}

.mobileNav.active .mob-menu ul li:nth-child(7) {
    transition-delay: 0.7s;
}

.mobileNav.active .mob-menu ul li:nth-child(8) {
    transition-delay: 0.8s;
}

.mobileNav.active .mob-menu ul li:nth-child(9) {
    transition-delay: 0.9s;
}

.mob-menu ul li {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile_social {
    position: absolute;
    bottom: 0;
    padding: 10px;
    width: 100%;
    text-align: center;
    background-color: var(--white-color);
    border-top: 1px solid #ccc;
}

.mobile_social p {
    font-weight: 500;
    text-transform: capitalize;
}

.mobile_social__icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.mobile_social__icons a img {
    width: 34px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.dropdown-btn-list {
    height: 0;
    overflow: hidden;
    transition: .3s ease all;
}

.dropdown-btn.active .dropdown-btn-list {
    height: auto;
    background-color: #eefdfb;
    transition: .3s ease all;
}

.dropdown-btn.active .dropdown-btn-name {
    background-color: var(--main-color);
    color: var(--white-color);
    transition: .3s ease all;
}

.dropdown-btn-name {
    position: relative;
}

.dropdown-btn-name::after {
    content: '\002B';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
}

.dropdown-btn.active .dropdown-btn-name::after {
    content: '\2212';
    transition: .3s ease all;
}

.dropdown-btn-list ul li a {
    padding: 10px 1rem;
    font-size: 14px !important;
}

/* banner_wrapper */
.banner_video video {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.banner--content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.banner_wrapper {
    color: var(--white-color);
    position: relative;
}

.banner_wrapper__content h2 {
    font-size: 45px;
    font-weight: 600;
    max-width: 451px;
    text-shadow: 0 0 5px rgba(0, 0, 0, .75);
}

.banner_wrapper__content p {
    margin-top: 12px;
    text-shadow: 0 0 5px rgba(0, 0, 0, .85);
    font-size: 22px;
}

.banner_wrapper__content .myBtn a {
    background-color: var(--main-color);
}

.banner_wrapper__content {
    color: var(--white-color);
    padding: 1rem 1rem 2rem 1rem;
    background-color: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(2px);
    border-radius: 10px;
}

.banner_wrapper__content h2 span {
    color: var(--main-color);
    text-shadow: 0 0 10px rgba(0, 0, 0, .85);
}

.myBtn {
    margin-top: 2rem;
}

.center_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slick-track {
    margin: 10px 0 !important;
}

.banner_slider__img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
}



/* about_wrapper */
.about_wrapper {
    background-color: var(--main-color);
}

.global_wrapper {
    padding: 100px 0;
}

.about_content {
    max-width: 1268px;
    margin: 0 auto;
    text-align: center;
}

.about_content h2 {
    font-size: 75px;
    text-transform: capitalize;
    font-weight: 600;
}

.about_content h6 {
    margin-top: 1rem;
    font-size: 35px;
}

.about_content p {
    margin-top: 1rem;
    font-size: 18px;
}

/* service_wrapper */
.service_wrapper {
    background-color: whitesmoke;
}

.service-center {
    margin: 0 50%;
    width: 100%;
    margin-top: 24px;
}

.main_heading {
    text-align: center;
}

.main_heading h2 {
    font-size: 44px;
    font-weight: 600;
    text-transform: capitalize;
}

.main_heading p {
    max-width: 970px;
    margin-top: 1rem;
    font-size: 18px;
    line-height: 30px;
}

.global_content {
    margin-top: 3rem;
}

.service_box__img img {
    width: 100%;
    height: 240px;
    display: inline-block;
    object-fit: cover;
    transition: .4s ease all;

}

@keyframes popup {
    0% {
        transform: scale(1.08);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.black_bg {
    background-color: #081520;
}

.service_box:hover img {
    transition: .3s ease all;
    filter: grayscale(0);
}

.white_heading h2 {
    color: var(--white-color);
}

.service_box {
    margin: 0 12px;
}

.service_box__content {
    background-color: var(--white-color);
    padding: 24px;
}

.service_box__content h3,
.blogs_box__content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--black-color);
    text-transform: capitalize;
}

.blogs_box__content h3 {
    color: var(--white-color);
}

.service_box__content p,
.blogs_box__content p {
    margin-top: 7px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}

.blogs_box__content p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.service_box__content a,
.blogs_box__content a {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    margin-top: 12px;
}

.video_wrapper__content video {
    width: 100%;
}

.blogs_details__content p {
    margin-top: 1rem;
    font-size: 18px;
    line-height: 30px;
}

.blogs_details__content h6 {
    margin-top: 1rem;
    font-size: 22px;
    font-weight: 600;
}

.blogs_details__img img {
    width: 100%;
}

/* counter_wrapper */
.counter_wrapper {
    background-image: url('../images/stats-banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter_box {
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #ccc;
    text-align: center;
    height: 100%;
    background-color: var(--main-color);
    color: var(--white-color);
}

.counter_box h3 {
    font-size: 44px;
    font-weight: 600;
}

.counter_box p {
    margin-top: 1rem;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
}

.blogs_box__content {
    padding: 22px;
    background-color: #0E1D35;
    color: #fff;
}

.blogs_box__content a {
    color: var(--white-color) !important;
    display: flex;
    gap: 5px;
    align-items: center;
}

.blogs_box__content a i {
    transform: rotate(-45deg);
}

.blogs_box__img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blogs_box__img {
    position: relative;
}

.blogs_box__img span {
    background-color: var(--main-color);
    padding: 4px 10px;
    font-weight: 600;
    color: var(--white-color);
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 0;
}

/* contact_wrapper */
.contact_wrapper {
    background-color: #000;
}

.contact_left img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    padding: 10px;
    background-color: #fff;
}

.contact_left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--white-color);
    justify-content: center;
    height: 100%;
}

.contact_left h2 {
    font-size: 52px;
    font-weight: 600;
    text-transform: capitalize;
}

.contact_left p {
    font-size: 20px;
    padding-right: 2rem;
}

.contact_left a {
    color: var(--white-color);
    font-size: 22px;
}

.contact_left a:hover {
    color: var(--main-color);
}

.contact_form {
    background-color: var(--white-color);
    padding: 24px;
    border-radius: 10px;
}

.contact_form__input input,
.contact_form__input textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #ccc;
}

.contact_form h3 {
    font-weight: 600;
    margin-bottom: 1rem !important;
}

/* brand_wrapper */
.brand_wrapper {
    padding: 30px 0;
}

.brands_heading {
    text-align: center;
}

.brands_heading h2 {
    font-weight: 600;
    font-size: 28px;
}

.brands_heading p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    margin-top: 10px;
}

.brand_box {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.brand_box img {
    aspect-ratio: 3/2;
    object-fit: contain;
    width: 150px;
}

.back_bg {
    background-color: whitesmoke;
}

/* why_grid */
.why_grid {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 24px;
}

.why_grid__box {
    border-radius: 10px;
    background-color: var(--white-color);
    padding: 30px;
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

.why_grid__box:hover::after {
    width: 100%;
    height: 100%;
    transition: .4s ease all;
    border-radius: 0;
}

.why_grid__box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    height: 60px;
    width: 60px;
    transition: .3s ease all;
    border-radius: 0 0 0 100px;
    background-color: #a8fdff;
}

.why_grid__box h3 {
    font-size: 24px;
    font-weight: 600;
}

.why_grid__box p {
    margin-top: 10px;
    font-size: 18px;
}

.why-icon {
    margin-bottom: 15px;
    animation: popup 2s infinite;
}

.why-icon img {
    width: 70px;

}

.menu_icon {
    display: none;
}

.menu_icon i {
    font-size: 25px;
}








.title {
    text-align: center;
    font-size: 28px;
    color: #1a237e;
    margin-bottom: 30px;
}

.calculator-section {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #dde3ec;
    border-radius: 10px;
    height: 100%;
    background-color: #f9fafe;
}

.section-title {
    font-size: 22px;
    color: #0d47a1;
    margin-bottom: 20px !important;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

input[type="number"] {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

button {
    background-color: #1976d2;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background-color: #0d47a1;
}

.result {
    margin-top: 15px;
    font-weight: bold;
    color: #2e7d32;
}

/* testimonials_box */
.testimonials_box {
    margin: 0 12px;
    background-color: var(--black-color);
    padding: 20px;
    color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.testimonials_box:nth-child(even) {
    background-color: var(--main-color);
    color: var(--white-color);
}

.user {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
    position: relative;
}

.user .google_icon img {
    width: 30px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.user_img img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 100px;
    border: 2px dashed;
    padding: 2px;
}

.user-info h3 {
    font-size: 20px;
    font-weight: 500;
}

.user-info p {
    font-style: italic;
    font-size: 13px;
}

.testimonials_box__content p {
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
}

.ratings i {
    color: gold;
}



.slick-dots li.slick-active button:before {
    display: none !important;
}

.slick-dots li {
    width: 6px !important;
    height: 6px !important;
    aspect-ratio: 1 !important;
    margin: 0 2px !important;
}

.slick-dots li button {
    transition: all 0.5s ease-in;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 32px;
    background: rgba(182, 182, 182, 0.5) !important;
}

.slick-dots li.slick-active button {
    background: var(--main-color) !important;
    width: 1.5rem !important;
    transition: all 0.5s ease-in;
}

.slick-dots li.slick-active {
    width: 1.5rem !important;
}

.slick-dots li button::before {
    display: none !important;
}

.slick-dots {
    bottom: -3rem !important;
    width: 96% !important;
    line-height: 0 !important;
}

.slick-dots {
    bottom: -2rem !important;
}


/* download_grid */
.download_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.download_grid__box {
    background-color: whitesmoke;
    border: 1px solid #ccc;
    padding: 24px;
    border-radius: 5px;
    transition: .4s ease all;
}

.download_grid__box:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transform: scale(1.025);
    transition: .3s ease all;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

.download_grid__box:hover p,
.download_grid__box:hover ul li a {
    color: #fff;
}

.download_grid__box h3 {
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
}

.download_grid__box p {
    color: #434343;
    margin-top: 10px;
    font-size: 18px;
}

.download_grid__box ul {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 12px;
}

.download_grid__box ul li a {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
}




.responsive-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
}

.responsive-table thead {
    background-color: #2d2d2d;
    color: #fff;
}

.responsive-table th,
.responsive-table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: left;
    white-space: nowrap;
}

.responsive-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}



@media(max-width:1440px) {
    .menu ul li a {
        font-size: 16px;
    }

    .menu ul {
        gap: 20px;
    }

    .brand_box img {
        width: 100px;
    }

    .counter_box h3 {
        font-size: 40px;
    }

    .service_box__content h3,
    .blogs_box__content h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .contact_left p {
        font-size: 24px;
        max-width: 500px;
    }

    .contact_left h2 {
        font-size: 60px;
    }
}

@media(max-width:1200px) {
    .header_right .global_btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .login-list {
        left: inherit;
        right: 0;
        transform: none;
    }

    .menu ul {
        gap: 1rem;
    }

    .logo img {
        width: 160px;
    }

    .counter_box h3 {
        font-size: 32px;
    }
}

@media(max-width:992px) {
    .header-btn {
        display: flex;
        gap: 14px;
        align-items: center;
    }

    .download_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .myNav {
        padding: 1rem 0;
    }

    .menu ul {
        display: none;
    }

    .logo img {
        width: 250px;
    }

    .myflex {
        flex-direction: column-reverse;
    }

    .why_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-center {
        margin: 0;
        max-width: none;
    }

    .service_box,
    .counter_box {
        margin-bottom: 24px;
        height: auto;
    }

    .blogs-center {
        margin: 0 50%;
        margin-top: 24px;
        width: 100%;
    }

    .contact_form {
        margin-top: 2rem;
    }

    .menu_icon {
        display: block;
    }
}

@media(max-width:768px) {

    .responsive-table,
    .responsive-table thead,
    .responsive-table tbody,
    .responsive-table th,
    .responsive-table td,
    .responsive-table tr {
        display: block;
    }

    .responsive-table thead {
        display: none;
    }

    .responsive-table td {
        position: relative;
        padding-left: 50%;
        border: 1px solid #ddd;
    }

    .responsive-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        font-weight: bold;
        color: #333;
    }

    .whatsapp_icon img {
        right: 12px;
        bottom: 2rem;
        width: 50px;
    }

    .blogs_details__content p {
        font-size: 15px;
        line-height: 25px;
        margin-top: 10px;
    }

    .blogs_details__content h6 {
        font-size: 18px;
        margin-top: 10px;
    }

    .download_grid {
        gap: 12px;
        grid-template-columns: repeat(1, 1fr);
    }

    .download_grid__box {
        padding: 1rem;
    }

    .download_grid__box h3 {
        font-size: 18px;
    }

    .calculator-section {
        height: auto;
        margin-bottom: 1rem;
        padding: 1rem;
    }

    .user-info h3 {
        font-size: 18px;
    }

    .user {
        gap: 10px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 10px !important;
    }

    .result {
        font-size: 13px;
    }

    .user_img img {
        height: 45px;
        width: 45px;
    }

    .banner_wrapper__content h2 {
        font-size: 28px;
    }

    .banner_video video {
        height: 380px;
    }

    .banner_wrapper__content p {
        margin-top: 6px;
        font-size: 18px;
    }

    .myBtn {
        margin-top: 1.24rem;
    }

    .global_wrapper {
        padding: 50px 0;
    }

    .global_content {
        margin-top: 1.8rem;
    }

    .logo img {
        width: 170px;
    }

    .main_heading h2,
    .brands_heading h2 {
        font-size: 24px;
    }

    .download_grid__box ul {
        margin-top: 7px;
    }

    .brands_heading p,
    .why_grid__box p,
    .counter_box p,
    .about_content p,
    .service_box__content p,
    .blogs_box__content p,
    .testimonials_box__content p,
    .download_grid__box p,
    .download_grid__box ul li a {
        margin-top: 7px;
        font-size: 14px;
        line-height: 23px;
    }

    .why_grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    .why_grid__box {
        padding: 20px;
    }

    .service_box__content,
    .blogs_box__content,
    .contact_form {
        padding: 1rem;
    }

    .brand_box img {
        width: 82px;
    }

    .service_box__img img {
        height: 210px;
    }

    .why_grid__box h3 {
        font-size: 20px;
    }

    .about_content h6 {
        font-size: 22px;
    }

    .about_content h2 {
        font-size: 42px;
    }

    .counter_box {
        margin-bottom: 12px;
        padding: 1rem;
        height: 92%;
    }

    .counter_box h3 {
        font-size: 24px;
    }

    .blogs-center {
        margin: 0;
        max-width: none;
        margin-top: 0;
    }

    .blogs_box {
        margin-bottom: 12px;
    }

    .contact_left p {
        font-size: 16px;
    }

    .contact_left h2 {
        font-size: 34px;
    }

    .contact_left {
        gap: 10px;
    }

    .contact_left a {
        font-size: 20px;
    }
}

@media(max-width:576px) {
    .header-btn {
        gap: 20px;
    }

    .download-btn {
        position: fixed;
        right: 0;
        margin-right: -36px;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
        z-index: 99;
    }
}

/* ===========  */
.service_overview__img img {
    width: 100%;
    border-radius: 10px;
}

.service_overview__content p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 1rem !important;
}

.key_feature {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    flex-wrap: wrap;
}

.key_feature__box {
    background-color: #fff;
    padding: 20px 1rem;
    border: 1px solid #ccc;
    color: var(--black-color);
    text-align: center;
    border-radius: 10px;
}

.key_feature__box h3 {
    margin-top: 1rem;
    font-size: 20px;
}


/* team_parra */
.team_parra p {
    font-size: 20px;
}

.team_box {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    background-color: var(--black-color);
    transition: .3s ease all;
    color: #fff;
}

.team_box:hover h3 {
    color: var(--white-color);
}

.team_box h3 {
    font-size: 24px;
    color: var(--main-color);
    font-weight: 600;
    text-transform: capitalize;
}

.team_box:hover {
    background-color: var(--main-color);
    transition: .3s ease all;
    transform: scale(1.03);
}

.team_box h6 {
    margin: 1rem 0 !important;
}

.team_box p {
    font-size: 15px;
    line-height: 26px;
}

@media(max-width:1440px) {
    .service_overview__content p {
        font-size: 15px;
        line-height: 26px;
    }
}

@media(max-width:992px) {
    .key_feature__box h3 {
        font-size: 16px;
    }

    .key_feature__icon img {
        width: 50px;
    }

    .team_box {
        height: auto;
        margin-bottom: 1rem;
    }

    .team_box h3 {
        font-size: 18px;
    }

    .team_box h6 {
        font-size: 16px;
        margin: 10px 0 !important;
    }

    .team_box p {
        font-size: 14px;
        line-height: 25px;
    }

    .team_parra p {
        font-size: 16px;
    }
}

@media(max-width:768px) {
    .key_feature {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service_overview__content p {
        margin-bottom: 0 !important;
        margin-top: 14px;
        font-size: 15px;
        line-height: 26px;
    }
}