@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Leckerli+One&display=swap");

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Exo", sans-serif;
    font-weight: 600;
    /* adjust as per design */
}


/* Paragraph, Links, Buttons, Span, etc. */

html {
    overflow-x: hidden;
}
body,
p,
a,
button,
input,
textarea,
li {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    text-transform: capitalize;
}

p {
    margin: 10px 0px !important;
}

span {
    font-family: "Leckerli One", cursive;
    font-weight: 400;
    font-style: normal;
}

.sup-title {
    font-size: 25px;
    text-transform: capitalize;
    list-style: none;
    font-style: normal;
    color: #fff;
    background: #1d3d7ced;
    padding: 4px 10px;
}

.common-btn {
    position: relative;
    z-index: 1;
    border: 2px solid #d02030;
    background-color: #d02030;
    /* default filled */
    padding: 10px 37px;
    text-transform: capitalize;
    color: #fff;
    /* text white by default */
    cursor: pointer;
    overflow: hidden;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1px;
    font-weight: 600;
    width: max-content;
}


/* before/after overlay */

.common-btn::before,
.common-btn::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 0;
    top: 0;
    left: 0;
    background: #1d3d7c;
    /* darker red for hover effect */
    z-index: -1;
    transition: width 0.4s ease;
}


/* hover effect */

.common-btn:hover {
    border: 2px solid #1d3d7c;
    color: #fff;
    /* transform: translateY(-3px); */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25); */
}

.common-btn:hover::before,
.common-btn:hover::after {
    width: 100%;
    /* darker overlay fills left → right */
}

.slick-dots {
    text-align: center;
    position: absolute;
    bottom: 16px;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 5px;
}


/* Dots ka base style */

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots li button {
    width: 22px;
    height: 9px;
    border-radius: 0px;
    background: #e1e1e1d1;
    border: none;
    font-size: 0;
    transition: all 0.3s ease;
}


/* Active dot */

.slick-dots li.slick-active button {
    background: #d02030;
    width: 28px;
}

section {
    padding: 90px 0px;
}

.header-title h2 {
    font-size: 45px;
    font-weight: 700;
    text-transform: capitalize;
    color: #1d3d7c;
    font-style: normal;
    margin: 8px 0px;
    line-height: 52px;
}

.new-sub-title {
    color: red;
    font-weight: 500;
    font-size: 25px;
}

.main-header {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    background: transparent;
    padding: 30px 0px;
    z-index: 33;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-list {
    padding: 0;
    margin: 0px;
    display: flex;
    align-items: center;
    list-style: none;
    gap: 39px;
    border-right: 0px;
    padding-right: 0px;
    margin-right: 0px;
}

.nav-list li a {
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1px;
    font-weight: 600;
    transition: 0.4s;
}

.nav-list li a:hover {
    color: #ffffff;
}

.header-logo a {
    transition: 0.6s;
}

.header-logo img {
    transition: 0.6s;
    width: 100%;
    max-width: 260px;
}

.main-navigation {
    width: calc(100% - 65%);
}

.header-contacts a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.1px;
    font-weight: 600;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 39px;
}

.header-logo {
    position: relative;
}

.header-logo a {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    width: 260px;
    transform: translate(-74%, -38%);
}

@media (max-width: 1366px) {
    .header-logo a {
        transform: translate(-64%, -45%);
    }
}

.header-contacts span {
    height: 40px;
    width: 40px;
    background: #d02030;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}
.header-contacts a img {
    width: 100%;
    max-width: 22px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(87%) saturate(0%) hue-rotate(91deg) brightness(110%) contrast(101%);
}

.sticky .nav-list li a {
    color: #000;
}

.sticky .nav-list li a:hover {
    color: #1d3d7c;
}

.sticky .header-contacts a:first-child {
    color: #1d3d7c;
}

.sticky {
    position: fixed;
    width: 100%;
    padding: 20px 0px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background: #fff;
}

.sticky .header-logo img {
    max-width: 170px;
}

.sticky .header-logo a {
    transform: translate(-70%, -56%);
}

@media (max-width: 1366px) {
    .sticky .header-logo a {
        transform: translate(-51%, -56%);
    }
}

.show-scroll {
    display: none;
}

.sticky .default-visible {
    display: none;
}

.sticky .show-scroll {
    display: block;
}

.hero-slider .slide-item {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide-item {
    position: relative;
}

.hero-slider .slide-item img {
    width: 100%;
    height: auto;
    transform: scale(1);
    height: 100vh;
    object-fit: cover;
    transition: transform 6s ease;
}

.hero-slider .slick-active img {
    transform: scale(1.1);
}

.hero-slider .slide-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(30px);
    text-align: center;
    width: 100%;
    color: #fff;
    z-index: 88;
}

.hero-slider .slick-active .slide-content {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

.slide-content h2 {
    text-transform: capitalize;
    font-size: 45px;
    margin: 0px;
    font-weight: 700;
    padding: 15px 0px;
    width: 100%;
    max-width: 730px;
    margin-inline: auto;
    line-height: 54px;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 0px;
    /* full screen */
    overflow: hidden;
}

.hero-section .slide-item {
    position: relative;
}

.hero-section .slide-item::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-section .btn-bx {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.inner-text-bx {
    width: 100%;
    max-width: 710px;
    margin-inline: auto;
    text-align: center;
}

.way-bx img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(55%) saturate(1554%) hue-rotate(197deg) brightness(104%) contrast(96%);
    width: 100%;
    max-width: 55px;
}

.way-bx {
    margin: 14px 0px 28px 0px;
}

.services-wrapper {
    padding: 0;
    background-image: url(../images/bg-way.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 255px;
}

.service-info-child {
    transition: 0.4s;
    cursor: pointer;
}

.services-info-grid .service-info-child:hover {
    transform: translatey(-10px);
}

.services-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns */
    text-align: center;
    gap: 10px;
    position: relative;
    bottom: -3px;
    transition: 0.4s;
}

.services-info-grid .icon-bx {
    background: #1d3d7c;
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 200px;
    margin-inline: auto;
}

.services-info-grid .icon-bx img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7471%) hue-rotate(163deg) brightness(106%) contrast(102%);
    width: 100%;
    max-width: 48px;
}

.services-info-grid .text-bx h3 {
    text-transform: capitalize;
    font-size: 20px;
    color: #1d3d7c;
    font-weight: 600;
    margin: 0px;
    padding: 15px 0px 0px 0px;
}

.services-section-tabs {
    background: #1d3d7c;
    position: relative;
    padding-bottom: 0px;
}

.services-grid {
    display: grid;
    grid-template-columns: 30% 34% 34%;
    position: relative;
    gap: 4%;
}

.services-section-tabs .container {
    margin-left: 0px;
    padding-left: 0px;
    position: relative;
}

.services-sidebar {
    background: #d02030;
    padding: 38px 18px;
    position: relative;
    z-index: 1;
    left: 0;
    top: -90px;
}

.services-sidebar .section-header span {
    color: #fff;
}

.services-sidebar .section-header h2 {
    color: #fff;
}

.services-sidebar .tab-item {
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    position: relative;
    transition: 0.6s;
    cursor: pointer;
    border-bottom: 1px solid #eeeeee2b;
    margin-bottom: 12px;
    padding: 8px 2px 8px 8px;
    font-size: 15px;
}


/* 
.services-sidebar .tab-item:hover {
    padding-left: 33px;
}

.services-sidebar .tab-item:hover::before {
    width: 28px;
}

.services-sidebar .tab-item::before {
    height: 4px;
    width: 0px;
    background-color: #fff;
    position: absolute;
    content: "";
    transition: 0.6s;
    top: 11px;
    left: 0;
} */

.services-section-tabs .tabs-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0px;
    margin: 0;
    padding: 0;
}

.services-images img {
    width: 100%;
    height: 369px;
    object-fit: cover;
}

.services-section-tabs .services-list {
    padding: 0px;
    margin: 0px;
    list-style: none;
}

.services-section-tabs .services-list li {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 18px 0px 18px 0px;
    padding-left: 30px;
    position: relative;
}

.services-section-tabs .services-list li::before {
    position: absolute;
    content: "";
    background-color: #fff;
    height: 10px;
    width: 10px;
    border-radius: 100px;
    outline: 2px solid #fff;
    outline-offset: 3px;
    left: 4px;
    top: 9px;
}

.services-section-tabs .services-images {
    display: flex;
    align-items: start;
    height: 100%;
    position: relative;
}

.tab-item.active {
    font-weight: 700;
    background: #b71e2cdb;
    padding: 8px 2px 8px 8px;
}


/* Smooth fade transition */

#tab-image,
#tab-subtitle,
#tab-title,
#tab-list {
    transition: opacity 0.5s ease;
}

.services-section-tabs .new-sub-title {
    color: red;
    font-weight: 500;
    font-size: 25px;
    display: none !important;
}

.services-section-tabs .services-info .header-title h2 {
    font-size: 35px;
    margin: 8px 0px;
    line-height: normal;
    color: #fff;
}

.services-section-tabs .services-info .btn-box {
    margin-top: 30px;
}

.services-section-tabs .services-info .btn-box a:hover {
    border: 2px solid #fff;
}

.services-section-tabs .tab-item:last-child {
    margin-bottom: 0px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 55% 40%;
    gap: 30px;
    justify-content: center;
    position: relative;
    align-items: center;
}

.why-choose-grid .image-bx img {
    width: 100%;
    height: 465px;
    object-fit: contain;
    margin-right: auto;
    display: block;
    position: relative;
    z-index: 2;
    left: -20px;
}

.why-choose-grid .text-bx {
    text-align: center;
    position: relative;
}

.why-choose-grid .text-bx p {
    width: 100%;
    max-width: 542px;
    margin-inline: auto !important;
    margin-bottom: 0px !important;
}

.counter-bx {
    position: absolute;
    background: #1d3d7c;
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 35px;
    justify-content: space-around;
    bottom: -100px;
    z-index: 1;
    left: 96px;
}

.counter-inner-bx .icon img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(3%) saturate(10%) hue-rotate(177deg) brightness(102%) contrast(104%);
    width: 100%;
    max-width: 42px;
    margin-bottom: 10px;
}

.counter-inner-bx h3 {
    margin: 0px;
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.counter-inner-bx span {
    color: #fff;
    font-family: "Exo", sans-serif;
    text-transform: capitalize;
    font-weight: 500;
}

.contact-us-grid {
    display: grid;
    grid-template-columns: 50%;
    gap: 20px;
    align-items: center;
}

.form-bx input {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border: 1px solid #eee;
}

.form-bx textarea {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    border: 1px solid #eee;
}

.form-bx input::placeholder {
    text-transform: capitalize;
    font-weight: 500;
    font-family: "Exo", sans-serif;
}

form .row {
    row-gap: 15px;
    margin-top: 20px;
}


/* form .btn-bx {
    display: flex;
    justify-content: end;
} */

.contact-us {
    background-color: #e9f2ff;
    overflow: hidden;
    position: relative;
}

.right-image-bx {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 50%;
    height: 100%;
}

.right-image-bx img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-us-grid .form-bx {
    padding-right: 50px;
}

.contact-section {
    position: relative;
    background: #1d3d7c;
    padding-bottom: 0px;
}

.contact-section:before {
    content: "";
    background: #1d3d7c;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-ic {
    border: 3px dotted #e9f2ff;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    margin-inline: auto;
}

.contact-section .btn_bx {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 50px;
}

.contact-cta {
    text-align: center;
}

.contact-ic img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(99%) sepia(38%) saturate(4613%) hue-rotate(179deg) brightness(112%) contrast(103%);
    max-height: 52px;
}

.cta-text h4 {
    color: #e9f2ff;
    font-weight: 600;
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.cta-text p,
.cta-text span,
.cta-text a {
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    font-family: sans-serif;
    letter-spacing: 1px;
    text-transform: math-auto;
    text-decoration: none;
}

.contact-cta .col-lg-4:nth-child(2) .contact-cta .cta-text a{
    font-size: 20px;
}



.contact-cta .col-lg-4:nth-child(2) .contact-cta {
    position: relative;
    z-index: 1;
}

.contact-cta .col-lg-4:nth-child(2) .contact-cta::before,
.contact-cta .col-lg-4:nth-child(2) .contact-cta::after {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #eeeeee54;
    z-index: -1;
}

.contact-cta .col-lg-4:nth-child(2) .contact-cta::before {
    left: 2px;
}

.contact-cta .col-lg-4:nth-child(2) .contact-cta::after {
    right: -2px;
}

.copyright-text p {
    margin: 0 !important;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
}

.copyright-text {
    border-top: 1px solid #eeeeee54;
    margin-top: 40px;
    padding: 12px 0px;
}

.services-sidebar .new-sub-title {
    display: block !important;
    color: #fff;
}

.services-sidebar .header-title h2 {
    font-size: 24px;
    line-height: normal;
    color: #fff;
    margin-bottom: 23px;
    width: 100%;
    max-width: 257px;
}

.mobile-top-bar {
    display: none;
}

.video-hero-section video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.video-hero-section {
    padding: 0px;
}

.video-heroarea {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.video-heroarea video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-heroarea::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.video-text-overlay {
    position: absolute;
    top: 64%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 100%;
    max-width: 686px;
}

.video-text-overlay h2 {
    text-transform: capitalize;
    font-size: 45px;
    margin: 0px;
    font-weight: 700;
    padding: 15px 0px;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    line-height: 54px;
}

.video-text-overlay .btn-bx {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}

.menu-toggle {
    display: none;
}

.menu-slidebar {
    display: none;
}

.phone-link {
    font-size: 20px;
}
@media (max-width: 1250px) {
    .sticky .header-logo a {
        transform: unset !important;
    }
    .sticky {
        position: fixed !important;
    }
    .nav-list {
        display: none;
    }
    .header-contacts {
        display: none;
    }
    .header-logo a {
        position: unset;
        transform: unset;
    }
    .header-container {
        justify-content: start;
    }
    .main-navigation {
        display: none;
    }
    .main-header {
        position: unset;
        padding: 10px 15px;
    }
    .default-visible {
        display: none;
    }
    .show-scroll {
        display: block;
    }
    .header-logo img {
        max-width: 215px;
    }
    .mobile-top-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: center;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    .mobile-top-bar a:first-child {
        order: 2;
    }
    .mobile-top-bar a {
        text-transform: capitalize;
        padding: 10px 0px;
        background: #d02030;
        color: #fff;
        text-decoration: none;
    }
    .mobile-top-bar a+a {
        background-color: #1d3d7c;
    }
    .menu-toggle {
        display: block;
    }
    .menu-toggle {
        position: unset;
        height: 40px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 0px;
        font-size: 20px;
        color: #fff;
        background: #1d3d7c;
    }
    .menu-slidebar {
        position: fixed;
        top: 0;
        left: -295px;
        width: 100%;
        height: 100%;
        background-color: #1d3d7c;
        color: white;
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 100px 0px;
        max-width: 245px;
    }
    .menu-slidebar ul {
        list-style: none;
        padding: 0;
    }
    .menu-slidebar ul li a {
        color: white;
        text-decoration: none;
        display: block;
        border-bottom: 1px solid #eeeeee47;
        padding: 10px 15px;
    }
    .menu-slidebar ul li a:hover {
        background-color: #1e335c;
        border-radius: 0px;
    }
    /* Close Button */
    .close-btn {
        position: absolute;
        font-size: 30px;
        border: none;
        color: #fff;
        height: 40px;
        width: 40px;
        background: #d02030;
        display: flex;
        align-items: center;
        justify-content: center;
        top: 0;
        right: 0;
    }
    /* Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        transition: width 0.3s ease;
        z-index: 999;
    }
    .header-logo {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    .menu-slidebar {
        display: block;
    }
}

@media (max-width: 991px) {
    .main-header .container {
        width: 100%;
        max-width: 100%;
    }
    .video-heroarea {
        width: 100%;
        height: 100%;
    }
    .video-heroarea::before {
        display: none;
    }
    .video-text-overlay {
        position: unset;
        transform: unset;
        width: 100%;
        max-width: 100%;
        background: #e9f2ff;
        padding: 45px 0px;
        margin-top: -6px;
    }
    .sup-title {
        font-size: 20px;
    }
    .video-text-overlay h2 {
        font-size: 30px;
        max-width: 700px;
        line-height: normal;
        color: #1d3d7c;
    }
    .header-title h2 {
        font-size: 30px;
        line-height: normal;
    }
    .header-title h2 br {
        display: none;
    }
    section {
        padding: 45px 0px;
    }
    .services-wrapper {
        padding: 45px 0px;
        height: auto;
        background: #e9f2ff;
    }
    .services-info-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }
    .services-grid {
        grid-template-columns: 50% 50%;
    }
    .services-images {
        display: none !important;
    }
    .services-sidebar {
        padding: 20px 15px;
        position: unset;
    }
    .services-section-tabs {
        padding: 45px 0px;
    }
    .services-section-tabs .container {
        margin-left: auto;
        padding-left: initial;
        position: relative;
        max-width: calc(100% - 10%);
    }
    .services-grid {
        align-items: center;
    }
    .why-choose-grid {
        grid-template-columns: 100%;
        gap: 30px;
    }
    .why-choose-grid .text-bx p {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0px;
    }
    .why-choose-grid .image-bx img {
        width: 100%;
        height: 100%;
        max-width: 400px;
        margin-inline: auto;
    }
    .contact-us-grid {
        grid-template-columns: 100%;
    }
    .right-image-bx {
        display: none;
    }
    .contact-cta .col-lg-4:nth-child(2) .contact-cta::after {
        display: none;
    }
    .contact-cta .col-lg-4:nth-child(2) .contact-cta::before {
        display: none;
    }
    .contact-cta .row {
        row-gap: 45px;
    }
    .copyright-text {
        margin-top: 28px;
        padding: 8px 0px;
    }
    .contact-us .header-title {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .way-bx img {
    max-width: 50px;
}
    .main-header .container {
        padding: 0;
    }
    .main-header {
        padding: 10px 10px;
    }
    .header-logo img {
        max-width: 170px;
    }
    .video-text-overlay {
        padding: 35px 0px;
    }
    .sup-title {
        font-size: 18px;
    }
    .video-text-overlay h2 {
        font-size: 22px;
        padding: 15px 10px;
        padding-bottom: 10px;
    }
    .common-btn {
        padding: 8px 25px;
    }
    section {
        padding: 35px 0px;
    }
    .header-title h2 {
        font-size: 22px;
        margin: 0px;
    }
    .new-sub-title {
        font-size: 20px;
    }
    .way-bx {
        margin: 5px 0px 15px 0px;
    }
    .service-info-child {
        border: 1px solid #1d3d7c54;
        padding: 10px;
    }
    .services-info-grid .icon-bx {
        height: 50px;
        width: 50px;
    }
    .services-info-grid .icon-bx img {
        max-width: 30px;
    }
    .services-info-grid {
        gap: 20px;
    }
    .services-info-grid .text-bx h3 {
        font-size: 18px;
    }
    .services-grid {
        grid-template-columns: 100%;
    }
    .services-sidebar .new-sub-title {
        text-align: left;
    }
    .services-sidebar .header-title h2 {
        margin-bottom: 15px;
        width: 100%;
        max-width: 100%;
        font-size: 22px !important;
        text-align: left;
    }
    .services-section-tabs .container {
        max-width: calc(100% - 3%);
        padding-left: 10px;
    }
    .services-section-tabs .services-info .header-title h2 {
        font-size: 24px;
        margin: 0px 0px;
    }
    .services-info {
        padding-left: 15px;
    }
    .services-grid {
        gap: 3%;
    }
    .why-choose-grid .image-bx img {
        position: unset;
        max-width: 300px;
    }
    .contact-us-grid .form-bx {
        padding-right: 0px;
    }
    .contact-us .header-title {
        text-align: left;
    }
    .contact-ic {
        width: 80px;
        height: 80px;
    }
    .contact-ic img {
        max-height: 40px;
    }
    .cta-text h4 {
        font-size: 20px;
        margin-top: 17px;
    }
    .contact-cta .row {
        row-gap: 30px;
    }
    .copyright-text {
        margin-top: 22px;
    }
    .services-info {
        height: 390px;
    }
}