@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Space+Grotesk:wght@300..700&display=swap');

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

*:focus,
*:focus-visible {
    outline: none;
}

:root {

    --transition-03s: all ease-in-out 0.3s;
    --transition-05s: all ease-in-out 0.5s;

    --font-space-grotesk: "Space Grotesk", sans-serif;

    --main-color: #1B43FE;
    /* rgb(0, 174, 239, 1); */
    --second-color: #962311;
    /* rgb(0, 174, 239, 1); */
    --black-color: #000000;
    /* rgb(0, 0, 0); */
    --white-color: #ffffff;
    /* rgb(255, 255, 255); */

}

body {
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

ul,
ol {
    margin: 0%;
    padding: 0%;
}

a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

.row {
    gap: 24px 0px;
}

/*<======================= Common Css ===============>*/
.common-section {
    padding: 60px 0px;
}

.common-head {
    margin-bottom: 24px;
}

.common-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--main-color);
    background: rgba(27, 67, 254, 0.08);
    border: 1px solid #1B43FE;
    border-radius: 50px;
    text-transform: capitalize;
    margin-bottom: 14px;
    font-family: var(--font-space-grotesk);
}

.common-head h2,
.common-head h3 {
    font-family: var(--font-space-grotesk);
    font-size: clamp(26px, 4.5vw, 40px);
    line-height: 1.15;
    font-weight: 700;
    color: #0c1524;
    margin: 0;
}

.header-actions .common-btn {
    width: 185px;
}

.common-btn {
    display: flex;
    align-items: center;
}

.common-btn span {
    padding: 10px 18px;
    height: 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 64px;
    color: var(--white-color);
    background: var(--main-color);
    transition: all ease-in-out 0.3s;
}

.common-btn i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: var(--main-color);
    transform: rotate(-45deg);
    transition: all ease-in-out 0.3s;
}

.common-btn:hover i {
    transform: rotate(0deg);
    border-radius: 0 64px 64px 0;
    width: 35px;
}

.common-btn:hover span {
    border-radius: 64px 0 0 64px;
}




/************************************ Header Section **************************************/
.header-section {
    width: 100%;
    position: relative;
    z-index: 10;
    background: #ffffff;
}

.header-section.inner-header {
    position: relative;
    background: #ffffff;
}

.navbar {
    top: 0;
    z-index: 9999;
    width: 100%;
    padding: 14px 0px;
}

.lik-header-nav {
    background: #ffffff;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1280px;
}

.navbar-brand {
    height: 42px;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.header-collapse {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 7px 12px;
    min-width: 500px;
    background: #f1f3fa;
    border-radius: 34px;
}

.header-menu .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 35px;
    padding: 7px 14px !important;
    border-radius: 28px;
    color: #2d2d32;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-transform: none;
    transition: var(--transition-03s);
}

.header-menu .nav-link:hover,
.header-menu .nav-link.active {
    color: #1b43fe;
    background: #ffffff;
}

.header-menu li.current-menu-item .nav-link {
    color: #1b43fe;
    background: #ffffff;
}


.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.mobile-menu-close {
    display: none;
}

.support-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #1b43fe;
}

.support-link:hover {
    color: #1b43fe;
}

.support-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1b43fe;
    background: #eef1ff;
    font-size: 20px;
}

.support-link small,
.support-link strong {
    display: block;
}

.support-link small {
    color: #7D7D7D;
    font-size: 12px;
    line-height: 1.1;
}

.support-link strong {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
}

.header-btn,
.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    transition: var(--transition-03s);
}

.header-btn {
    min-height: 37px;
    padding: 14px 20px;
    gap: 7px;
    border-radius: 28px;
}

.header-btn i {
    font-size: 14px;
}

.locate-btn {
    background: #e92c2b;
}

.locate-btn:hover {
    color: #ffffff;
    background: #d92524;
}

.quote-btn,
.arrow-btn {
    background: #1b43fe;
}

.quote-btn:hover,
.arrow-btn:hover {
    color: #ffffff;
    background: #1536d7;
}

/* .header-quote-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: 200px;
} */

.arrow-btn {
    width: 37px;
    height: 37px;
    border-radius: 50%;
}

.arrow-btn i {
    transform: rotate(-45deg);
    font-size: 15px;
}

.header-btn:hover,
.arrow-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.navbar.header-fixed {
    position: fixed;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
    transition: all ease-in-out 0.2s;
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
}

.header-section.inner-header .navbar.header-fixed {
    position: fixed;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.08);
    transition: all ease-in-out 0.2s;
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/******************************************* Banner Section ***********************************/
.hero-banner {
    width: 100%;
    padding: 0 16px 16px;
    background: #ffffff;
}

.hero-banner .container-fluid {
    padding: 0;
}

.hero-banner-box {
    min-height: 800px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background-image: linear-gradient(180deg, rgba(6, 18, 32, 0.67) 0%, rgba(6, 15, 31, 0.5) 62%, rgba(3, 8, 18, 0.94) 100%),
        url("../media/images/bnr-img.png");*/
    background-size: cover;
    background-position: center center;
    isolation: isolate;
}

.hero-banner-box::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 18, 32, 0.67) 0%, rgba(6, 15, 31, 0.5) 62%, rgba(3, 8, 18, 0.94) 100%);
}

.hero-banner-box>* {
    position: relative;
    z-index: 1;
}

.hero-content {
    /* width: min(1000px, 92%); */
    width: 70%;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: var(--font-space-grotesk);
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(46px, 5vw, 100px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0;
}

.hero-content p {
    width: min(520px, 100%);
    margin-bottom: 20px;
    color: #FFFFFF;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
}

.inner-banner-content {
    min-height: 280px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 98%;
    margin: auto;
    padding: 44px 104px;
    color: #ffffff;
    /* background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.92) 0%, rgba(2, 6, 23, 0.68) 52%, rgba(2, 6, 23, 0.18) 100%),
        url('../media/images/ads-bnr.png'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.inner-banner-content::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(6, 18, 32, 0.67) 0%, rgba(6, 15, 31, 0.5) 62%, rgba(3, 8, 18, 0.94) 100%);
}

.inner-banner-content>* {
    position: relative;
    z-index: 1;
}

.inner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 700;
    margin-top: 20px;
}

.inner-breadcrumb a {
    color: #ffffff;
    transition: var(--transition-03s);
}

.inner-breadcrumb a:hover {
    color: #cfd8ff;
}

.inner-breadcrumb i {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.72);
}

.inner-breadcrumb span {
    color: rgba(255, 255, 255, 0.82);
}

.inner-banner-content span {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    margin-bottom: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    font-family: var(--font-space-grotesk);
    font-size: 13px;
    font-weight: 700;
}

.inner-breadcrumb span {
    display: inline;
    width: auto;
    padding: 0;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-family: "Manrope", sans-serif;
    font-size: inherit;
}

.inner-banner-content h1 {
    max-width: 660px;
    margin: 0 0 12px;
    color: #ffffff;
    font-family: var(--font-space-grotesk);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.04;
    font-weight: 800;
}

.inner-banner-content p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}




/************************************** About Section **********************************/
.about-section {
    background-color: #ffffff;
    overflow: hidden;
}

.about-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #556275;
    margin-bottom: 14px;
}

.about-card {
    padding: 30px 24px;
    border-radius: 24px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-card-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.about-card h3 {
    font-family: var(--font-space-grotesk);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* Light Card Specific */
.light-card {
    background-color: #F4F6FC;
    background-image:
        linear-gradient(rgba(27, 67, 254, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 67, 254, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    border: 1px solid rgba(27, 67, 254, 0.06);
}

.light-card h3 {
    color: #0c1524;
}

.light-card p {
    color: #556275;
}

/* Dark Card Specific */
.dark-card {
    background-color: #020617;
    background-image:
        linear-gradient(rgba(27, 67, 254, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 67, 254, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-card h3 {
    color: #ffffff;
}

.dark-card p {
    color: #94a3b8;
}

/* Right Side - Image and Stats Overlay */
.about-right-wrapper {
    position: relative;
    padding-left: 20px;
}

.about-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    transition: transform 0.5s ease;
}

.about-image-container:hover .about-main-img {
    transform: scale(1.03);
}

.stats-overlay-grid {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    z-index: 2;
}

.stat-glass-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 24px 15px;
    text-align: center;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.stat-glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.1);
}

.stat-number {
    display: block;
    font-family: var(--font-space-grotesk);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
    margin-bottom: 6px;
    font-weight: 300;
}

.stat-label {
    font-family: var(--font-space-grotesk);
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0c1524;
    line-height: 1.3;
}

/* Responsiveness for About Section */
@media (max-width: 1199px) {
    .about-image-container {
        height: 520px;
    }
}

@media (max-width: 991px) {
    .about-right-wrapper {
        padding-left: 0;
    }

    .about-image-container {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .about-image-container {
        height: 460px;
    }

    .stats-overlay-grid {
        gap: 12px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .stat-glass-card {
        padding: 16px 10px;
    }
}

@media (max-width: 480px) {
    .about-image-container {
        height: 320px;
    }

    .stats-overlay-grid {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 20px 0px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        z-index: 1;
        padding: 10px;
    }

    .stat-glass-card {
        background: #F4F6FC;
        border: 1px solid rgba(27, 67, 254, 0.08);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        padding: 20px;
    }

    .stat-label {
        font-size: 15px;
    }

    .stat-number {
        font-size: clamp(24px, 3.5vw, 40px);
    }
}

.about-values-section {
    background: #f6f8fd;
}

.value-card {
    height: 100%;
    padding: 32px 26px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(27, 67, 254, 0.08);
    transition: var(--transition-03s);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(12, 21, 36, 0.08);
}

.value-card i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: #ffffff;
    background: var(--main-color);
    border-radius: 50%;
    font-size: 22px;
}

.value-card h4 {
    margin: 0 0 12px;
    color: #0c1524;
    font-family: var(--font-space-grotesk);
    font-size: 22px;
    font-weight: 700;
}

.value-card p {
    margin: 0;
    color: #556275;
    font-size: 15px;
    line-height: 1.6;
}


/************************************** Ads Banner Section **********************************/
.ads-banner-section {
    /* padding: 40px 0; */
    position: relative;
    background-color: #fff;
    width: 98%;
    margin: auto;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 20px;
    min-height: 350px;
    height: 100%;
}

.ads-banner-box {
    /* background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.65) 50%, rgba(2, 6, 23, 0.1) 100%), url('../media/images/ads-bnr.png'); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 30px;
    padding: 90px 70px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 400px;
    height: 100%;
}

.ads-banner-section::after {
    content: " ";
    position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.65) 50%, rgba(2, 6, 23, 0.1) 100%);
}

.ads-banner-section>* {
    position: relative;
    z-index: 1;
}

.ads-banner-content {
    width: 55%;
}

.ads-banner-content h2 {
    font-family: var(--font-space-grotesk);
    font-size: clamp(24px, 3.5vw, 50px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    padding: 40px 0px;
}

@media (max-width: 991px) {
    .ads-banner-box {
        padding: 70px 40px;
    }


}

@media (max-width: 767px) {
    .ads-banner-box {
        padding: 50px 24px;
        /* background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.85) 100%), url('../media/images/ads-bnr.png'); */
    }

    .ads-banner-content h2 {
        font-size: 24px;
    }

    .ads-banner-section {
        min-height: 250px;
    }
}


/************************************** Service Section **********************************/
.service-section {
    background-color: #ffffff;
    overflow: hidden;
}

#service-section .common-head h3 {
    max-width: 320px;
}

.service-left-content {
    padding-right: 30px;
}

.service-left-content h2 {
    text-transform: uppercase;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    margin-bottom: 30px;
}

/* Service Right List */
.service-right-wrapper {
    background-image: url('../media/images/src-bg.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    padding-left: 20px;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.service-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.service-item-img {
    width: 130px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-item-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.service-item-body h3 {
    font-family: var(--font-space-grotesk);
    font-size: 20px;
    font-weight: 700;
    color: #0c1524;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.service-item-body p {
    font-size: 15px;
    line-height: 1.5;
    color: #556275;
    margin-bottom: 16px;
    max-width: 540px;
}

/* View More Button */
.service-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    background: #ffffff;
    color: #0c1524;
    font-family: var(--font-space-grotesk);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.service-link-btn i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    color: #0c1524;
    font-size: 12px;
    transform: rotate(-45deg);
    transition: all 0.3s ease;
}

.service-link-btn:hover {
    border-color: var(--main-color);
    color: var(--main-color);
    background: #f8fafc;
}

.service-link-btn:hover i {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #ffffff;
}

/* Bottom Grid Cards */
.service-bottom-card {
    background-color: #F5F7FF;
    border-radius: 20px;
    padding: 35px 24px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(27, 67, 254, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-bottom-card:hover {
    transform: translateY(-8px);
    background-color: #ffffff;
    border-color: rgba(27, 67, 254, 0.18);
    box-shadow: 0 15px 35px rgba(27, 67, 254, 0.08);
}

.service-bottom-card-icon {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-bottom-card-icon img {
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-bottom-card:hover .service-bottom-card-icon img {
    transform: scale(1.1);
}

.service-bottom-card h4 {
    font-family: var(--font-space-grotesk);
    font-size: 18px;
    font-weight: 700;
    color: #0c1524;
    margin: 0;
    line-height: 1.35;
}

/* Service Section Responsiveness */
@media (max-width: 991px) {
    .service-left-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .service-right-wrapper {
        padding-left: 0;
        background-position: center;
    }
}

@media (max-width: 767px) {
    .service-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .service-item-img {
        width: 100px;
    }
}


/************************************** Faq Section **********************************/

/* FAQ Section */
.faq-main-box {
    padding: 40px 30px;
    border-radius: 12px;
}

/* Accordion Item */
.faq-main-box .accordion-item {
    position: relative;
    background: rgba(15, 15, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 18px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.35s ease;
}

/* Left Accent Border Animation */
.faq-main-box .accordion-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0%;
    width: 4px;
    background: #800000;
    transition: 0.4s;
}

/* Hover Animation */
.faq-main-box .accordion-item:hover::before {
    height: 100%;
}

/* Hover Glow */
.faq-main-box .accordion-item:hover {
    border-color: #800000;
    box-shadow: 0px 0px 18px rgba(128, 0, 0, 0.35);
}

/* Accordion Button */
.faq-main-box .accordion-button {
    background: transparent;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding: 20px 22px;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
}

/* Hover */
.faq-main-box .accordion-button:hover {
    color: #fff;
}

/* Active Accordion */
.faq-main-box .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg,
            rgba(15, 15, 15, 1) 0%,
            rgba(128, 0, 0, 0.35) 50%,
            rgba(15, 15, 15, 1) 100%);
    color: #fff;
}

/* Custom Icon */
.faq-main-box .accordion-button::after {
    background-image: none;
    content: "+";
    font-size: 22px;
    font-weight: 600;
    color: #800000;
    transition: 0.3s;
}

/* Open Icon */
.faq-main-box .accordion-button:not(.collapsed)::after {
    content: "−";
    color: #ffffff;
    transform: rotate(180deg);
}

/* Accordion Body */
.faq-main-box .accordion-body {
    background: #0F0F0F;
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.8;
    padding: 20px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Smooth Collapse Animation */
.accordion-collapse {
    transition: all 0.4s ease;
}

/***************************************** Contact Us Section *******************************/
.contact-section {
    /* background: linear-gradient(90deg, rgba(11, 0, 0, 1) 0%, rgba(136, 1, 1, 1) 50%, rgba(11, 0, 0, 1) 100%); */
    /* background-image: url(../media/images/contact-bg.png); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.contact-img {
    height: 475px;
    border-radius: 30px;
    overflow: hidden;
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-right {
    padding-left: 60px;
}

/* .contact-right form .row {
    gap: 40px 0px;
} */

.contact-right form .common-btn {
    margin-top: 20px;
}

.contact-input-box input,
.contact-input-box textarea,
.contact-input-box select {
    width: 100%;
    min-height: 60px;
    padding: 20px;
    border-radius: 16px;
    border: none;
}

.contact-input-box select {
    width: 100%;
    padding: 12px 40px 12px 15px;
    /* space for arrow */
    border-radius: 6px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-input-box.select-arrow {
    position: relative;
}

.contact-input-box.select-arrow::after {
    content: "\f078";
    /* Font Awesome chevron-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #999;
    font-size: 14px;
}

.contact-input-box select {
    padding-right: 45px;
}

.contact-page-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7ff 100%);
    overflow: hidden;
}

.contact-info-panel {
    padding: 42px 34px;
    border-radius: 22px;
    color: #ffffff;
    background-color: #020617;
    background-image:
        linear-gradient(rgba(27, 67, 254, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 67, 254, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.16);
}

.contact-info-panel .common-head span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-info-panel .common-head h2 {
    color: #ffffff;
    font-size: clamp(30px, 3.4vw, 44px);
}

.contact-info-panel>p {
    margin: 0 0 28px;
    color: #b8c2d6;
    font-size: 15px;
    line-height: 1.7;
}

.contact-card-list {
    display: grid;
    gap: 14px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition-03s);
}

.contact-info-card:hover {
    color: #ffffff;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.13);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--main-color);
    font-size: 17px;
}

.contact-info-card small {
    display: block;
    margin-bottom: 4px;
    color: #9ca8c1;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.contact-info-card strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.contact-location-box {
    position: relative;
    margin-top: 28px;
    min-height: 190px;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    isolation: isolate;
}

.contact-location-box::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08) 0%, rgba(2, 6, 23, 0.9) 100%);
}

.contact-location-box img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-location-box div {
    padding: 22px;
}

.contact-location-box span {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-family: var(--font-space-grotesk);
    font-size: 20px;
    font-weight: 800;
}

.contact-location-box p {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    line-height: 1.5;
}

.contact-form-panel {
    padding: 42px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(27, 67, 254, 0.08);
    box-shadow: 0 18px 45px rgba(12, 21, 36, 0.08);
}

.contact-form-head {
    margin-bottom: 28px;
}

.contact-form-head span {
    display: inline-flex;
    padding: 6px 14px;
    margin-bottom: 12px;
    color: var(--main-color);
    background: rgba(27, 67, 254, 0.08);
    border: 1px solid rgba(27, 67, 254, 0.18);
    border-radius: 999px;
    font-family: var(--font-space-grotesk);
    font-size: 13px;
    font-weight: 700;
}

.contact-form-head h3 {
    margin: 0;
    color: #0c1524;
    font-family: var(--font-space-grotesk);
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 800;
    line-height: 1.1;
}

.contact-page-form label {
    display: block;
    margin-bottom: 8px;
    color: #0c1524;
    font-size: 13px;
    font-weight: 800;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid #dce3f4;
    border-radius: 12px;
    color: #0c1524;
    background: #f8faff;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-03s);
}

.contact-page-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {
    color: #8b96ab;
    font-weight: 500;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    border-color: rgba(27, 67, 254, 0.5);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(27, 67, 254, 0.08);
}

.contact-submit-btn {
    width: fit-content;
    border: 0;
    padding: 0;
    background: transparent;
}


/******************************** Footer Section *********************************************/






/********************************************** Media query ***********************************/

/********************* Min width Section *****************************/

/* @media (min-width: 992px) {
    .dropdown-menu {
      display: grid;
      opacity: 0;
      visibility: hidden;
    }
    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown .dropdown-menu.show {
      opacity: 1;
      visibility: visible;
    }
}
@media (min-width: 1200px){
	.nav-item.dropdown .dropdown-menu[data-bs-popper] {
		top: 100%;
	}
} */

@media (min-width: 1740px) and (max-width: 1880px) {}

@media (min-width: 1540px) and (max-width: 1739px) {}

@media (min-width: 1400px) and (max-width: 1539px) {
    .ads-banner-content {
        width: 75%;
    }
}

@media (min-width: 1500px) {}

@media (min-width: 1540px) {
    /* .container {
        max-width: 1500px;
    } */
}

@media (min-width: 1540px) and (max-width: 1640px) {}

@media (min-width: 1640px) {
    /* .container {
        max-width: 1600px;
    } */
}

@media (min-width: 1640px) and (max-width: 1740px) {}

@media (min-width: 1740px) {
    /* .container {
        max-width: 1740px;
    } */
}

/************************************* Service Section ******************************/
.service-section {
    padding: 40px 0;
}

.service-section .common-head {
    margin-bottom: 30px;
}

.service-list-wrap {
    background-image: url('../media/images/src-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    padding-left: 40px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #e5e5e5;
}

.service-item:last-child {
    border-bottom: none;
}

.service-img-box {
    width: 40%;
}

.service-img-box img {
    max-width: 280px;
    width: 100%;
    object-fit: contain;
}

.service-info-box h4 {
    font-family: var(--font-space-grotesk);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    text-transform: uppercase;
}

.service-info-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.view-more-btn span {
    border: 1px solid #A9B8FF;
    padding: 8px 18px;
    border-radius: 64px;
    transition: 0.3s;
    height: 45px;
}

.view-more-btn i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #02091C;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid #A9B8FF;
    transform: rotate(-45deg);
}

.view-more-btn:hover i {
    background: var(--main-color, #0d6efd);
    color: #fff;
    border-color: var(--main-color, #0d6efd);
    transform: rotate(0deg) translateX(-10px);
    border-radius: 0 64px 64px 0;
}

.view-more-btn:hover span {
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 64px 0 0 64px;
}

/* .service-info-box .common-btn {
    display: inline-flex;
} */
/* .service-info-box .common-btn span {
    background: transparent;
    border: 1px solid #A9B8FF;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
} */

.service-info-box .common-btn span {
    border: 1px solid #A9B8FF;
    background: transparent;
    color: #02091C;
}

.service-info-box .common-btn {
    display: inline-flex;
}

.service-info-box .common-btn i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #02091C;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid #A9B8FF;
    background: transparent;
    transform: rotate(-45deg);
}

.service-info-box .common-btn:hover i {
    border-left: none !important;
    border-radius: 0 64px 64px 0;
    background-color: var(--main-color);
    color: var(--white-color);
}

.service-info-box .common-btn:hover span {
    background-color: var(--main-color);
    color: var(--white-color);
    border-radius: 64px 0 0 64px;
    border-right: none !important;
}

.common-btn {
    display: inline-flex;
    align-items: center;
}

.common-btn i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: var(--main-color);
    transform: rotate(-45deg);
    transition: all ease-in-out 0.3s;
}

.common-btn:hover i {
    transform: rotate(0deg);
    border-radius: 0 64px 64px 0;
    width: 35px;
}

.common-btn:hover span {
    border-radius: 64px 0 0 64px;
}

.service-card {
    background: #F6F8FD;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.service-card .icon-box {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .icon-box img {
    max-height: 100%;
    object-fit: contain;
}

.service-card h4 {
    font-family: var(--font-space-grotesk);
    font-size: 26px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

/************************************* Service Listing Page ******************************/
.service-listing-section {
    background: #ffffff;
}

.service-listing-intro {
    margin: 0;
    color: #5f6573;
    font-size: 17px;
    line-height: 1.65;
}

.service-listing-row {
    margin-top: 18px;
}

.service-listing-card {
    overflow: hidden;
    border: 1px solid #e7ebf5;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(12, 21, 36, 0.06);
    transition: var(--transition-03s);
}

.service-listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(12, 21, 36, 0.1);
}

.service-listing-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 230px;
    padding: 26px;
    background: linear-gradient(180deg, #f7f9ff 0%, #eef3ff 100%);
}

.service-listing-img img {
    width: 100%;
    max-width: 250px;
    height: 180px;
    object-fit: contain;
}

.service-listing-body {
    position: relative;
    padding: 30px;
}

.service-listing-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--main-color);
    font-family: var(--font-space-grotesk);
    font-size: 15px;
    font-weight: 800;
}

.service-listing-body h3 {
    margin-bottom: 12px;
    color: #0c1524;
    font-family: var(--font-space-grotesk);
    font-size: 25px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-listing-body p {
    min-height: 78px;
    margin-bottom: 22px;
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.service-feature-row {
    margin-top: 18px;
}

/************************************* Service Details Page ******************************/
.service-details-section {
    background: #ffffff;
}

.service-details-main>p {
    color: #5f6573;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.service-details-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    margin-bottom: 34px;
    padding: 34px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f7f9ff 0%, #eef3ff 100%);
    overflow: hidden;
}

.service-details-img img {
    width: min(520px, 100%);
    height: 300px;
    object-fit: contain;
}

.service-details-feature-row {
    margin-top: 18px;
}

.service-details-feature {
    height: 100%;
    padding: 26px;
    border: 1px solid #e7ebf5;
    border-radius: 16px;
    background: #f8faff;
}

.service-details-feature span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--main-color);
    font-size: 22px;
}

.service-details-feature h3,
.service-details-list-box h3,
.service-sidebar-box h3,
.service-sidebar-cta h3 {
    font-family: var(--font-space-grotesk);
    color: #0c1524;
    font-weight: 800;
}

.service-details-feature h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

.service-details-feature p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.service-details-list-box {
    margin-top: 28px;
    padding: 30px;
    border-radius: 16px;
    background: #0b1120;
}

.service-details-list-box h3 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 26px;
}

.service-details-list-box li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.service-details-list-box li:last-child {
    margin-bottom: 0;
}

.service-details-list-box i {
    color: var(--main-color);
}

.service-details-sidebar {
    position: sticky;
    top: 95px;
}

.service-sidebar-box,
.service-sidebar-cta {
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e7ebf5;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(12, 21, 36, 0.06);
}

.service-sidebar-box h3,
.service-sidebar-cta h3 {
    margin-bottom: 18px;
    font-size: 24px;
}

.service-sidebar-list li:not(:last-child) {
    margin-bottom: 12px;
}

.service-sidebar-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    color: #0c1524;
    background: #f6f8fd;
    font-weight: 800;
    transition: var(--transition-03s);
}

.service-sidebar-list a:hover {
    color: #ffffff;
    background: var(--main-color);
}

.service-sidebar-cta {
    margin-top: 24px;
    background: #0b1120;
}

.service-sidebar-cta>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--main-color);
    font-size: 24px;
}

.service-sidebar-cta h3 {
    color: #ffffff;
}

.service-sidebar-cta p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

/************************************* Why Choose Section ******************************/
.why-choose-section {
    padding: 40px 0;
}

.why-choose-wrap {
    background-color: #0B1120;
    border-radius: 24px;
    overflow: hidden;
    /* Optional: If a background image is available */
    background-image: url('../media/images/wcu-bg.png');
    background-size: cover;
    background-position: right center;
    padding: 20px;
}

.why-choose-content {
    padding: 0px 50px 60px 40px;
}

.why-choose-badge {
    font-family: var(--font-space-grotesk);
    display: inline-block;
    background-color: #fff;
    color: var(--main-color, #0d6efd);
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid #1B43FE;
}

.why-choose-list li {
    font-family: var(--font-space-grotesk);
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    padding: 16px 0 16px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 14px;
}

.why-choose-list li:last-child {
    border-bottom: none;
}

.why-choose-list li i {
    font-size: 18px;
    color: var(--main-color, #0d6efd);
}

/************************************* Testimonial Section ******************************/
.testimonial-section {
    background-color: #fff;
    overflow: hidden;
}

.testimonial-left-content {
    padding-right: 30px;
    height: 100%;
}

.testimonial-divider {
    border-color: #e5e5e5;
    opacity: 1;
}

.testimonial-kicker {
    font-family: var(--font-space-grotesk);
    max-width: 420px;
    font-size: 26px;
    line-height: 1.2;
}

.testi-stats h2 span {
    color: #ccc;
}

.testi-stats h2 {
    font-family: var(--font-space-grotesk);
    font-size: 72px;
    font-weight: 700;
    line-height: 30px;
    color: #000000;
    margin-bottom: 20px;
    display: block;
}

.testi-stats p {
    font-family: var(--font-space-grotesk);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    width: 50%;
    margin: 20px 0px;
}

.testimonial-stats-text {
    max-width: 250px;
}

.testi-review-card {
    padding: 10px 40px 10px 10px;
}

.testi-review-card .review-text {
    font-size: 24px;
    font-weight: 500;
    color: #212121;
    line-height: 38px;
}

.stars i {
    font-size: 20px;
}

.client-img {
    width: 65px !important;
    height: 65px !important;
    object-fit: cover;
}

.client-info h5 {
    font-family: var(--font-space-grotesk);
    font-size: 20px;
    font-weight: 700;
    color: #212121;
}

.testimonial-slider .owl-dots {
    margin-top: 30px;
    text-align: left;
    padding-left: 10px;
}

.testimonial-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: #e5e5e5;
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.testimonial-slider .owl-dot.active span {
    background: var(--main-color, #0d6efd);
    width: 30px;
    border-radius: 12px;
}

/************************************* FAQ Section ******************************/
.faq-section {
    background-color: #fff;
    padding: 70px 0 64px;
}

.faq-heading {
    margin-bottom: 34px;
}

/* .faq-heading span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 3px 12px;
    margin-bottom: 12px;
    color: var(--main-color);
    background: #eef2ff;
    border: 1px solid #9bb0ff;
    border-radius: 999px;
    font-family: var(--font-space-grotesk);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.faq-heading h3 {
    margin: 0 0 14px;
    color: #0c1524;
    font-family: var(--font-space-grotesk);
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: 0;
}

.faq-heading p {
    max-width: 600px;
    margin: 0 auto;
    color: #687180;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
} */

.faq-accordion-row {
    align-items: flex-start;
}

.custom-accordion .accordion-item {
    background-color: #F0F3FD;
    border-radius: 8px;
    overflow: hidden;
    border: none;
    margin-bottom: 16px;
}

.custom-accordion .accordion-button {
    min-height: 54px;
    background-color: #F0F3FD;
    color: #333;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.35;
    padding: 15px 58px 15px 38px;
    box-shadow: none;
    border: none;
    border-radius: 8px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #333;
    background-color: #F0F3FD;
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    display: none;
}

.custom-accordion .accordion-button::before {
    content: '\f067';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 30px;
    background-color: #fff;
    color: var(--main-color, #0d6efd);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(27, 67, 254, 0.08);
}

.custom-accordion .accordion-button:not(.collapsed)::before {
    content: '\f068';
    /* FontAwesome Minus */
    background-color: var(--main-color, #0d6efd);
    color: #fff;
}

.custom-accordion .accordion-body {
    padding: 0 58px 18px 38px;
    background-color: #F0F3FD;
    font-size: 16px;
    line-height: 1.6;
    border: none;
}

/************************************* Ads Banner 2 Section ******************************/
.ads-banner-2-section {
    /* padding: 18px 16px 64px; */
    background-color: #fff;
    width: 98%;
    margin: auto;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 20px;
}

.ads-banner-2-section .container-fluid {
    padding: 0;
}

.ads-banner-2-box {
    min-height: 540px;
    border-radius: 22px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background-image: linear-gradient(180deg, rgba(5, 11, 24, 0.18) 0%, rgba(5, 11, 24, 0.82) 100%),
        url('../media/images/ads-bnr2.png'); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* .ads-banner-2-box::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 11, 24, 0.18) 0%, rgba(5, 11, 24, 0.82) 100%);
} */

.ads-banner-2-box>* {
    position: relative;
    z-index: 1;
}

/* .ads-banner-2-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 42%, rgba(4, 14, 31, 0.12) 0%, rgba(4, 10, 22, 0.2) 72%);
} */

.ads-banner-2-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
}

.ads-banner-2-content h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: var(--font-space-grotesk);
    font-size: 72px;
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: 0;
}

.ads-banner-2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-space-grotesk);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.ads-banner-2-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 8px 14px;
    color: #ffffff;
    background-color: var(--main-color);
    border-radius: 999px;
}

.ads-banner-2-btn i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -2px;
    color: #ffffff;
    background-color: var(--main-color);
    border-radius: 50%;
    font-size: 11px;
    transform: rotate(-45deg);
    transition: var(--transition-03s);
}

.ads-banner-2-btn:hover {
    color: #fff;
}

.ads-banner-2-btn:hover i {
    transform: rotate(0deg);
}

/************************************* Footer Section ******************************/
.footer-section {
    background-color: #020a1a;
    color: #ffffff;
}

.footer-top-image {
    height: 160px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: #ffffff;
    overflow: hidden;
}

.footer-top-image img {
    width: min(980px, 86%);
    max-height: 148px;
    object-fit: contain;
    display: block;
}

.footer-newsletter {
    padding: 38px 0;
    background-color: var(--main-color);
}

.footer-newsletter h2 {
    margin: 0;
    color: #ffffff;
    font-family: var(--font-space-grotesk);
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.footer-subscribe-form {
    width: min(100%, 440px);
    min-height: 52px;
    margin-left: auto;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    overflow: hidden;
    background: transparent;
}

.footer-subscribe-form input {
    flex: 1;
    min-width: 0;
    height: 52px;
    padding: 0 16px;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 18px;
    font-weight: 500;
}

.footer-subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.88);
}

.footer-subscribe-form button {
    height: 52px;
    min-width: 86px;
    margin-right: 1px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    color: #020a1a;
    background-color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.footer-main {
    padding: 68px 0 30px;
    background-color: #020a1a;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 44px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
}

.footer-logo:hover {
    color: #ffffff;
}

.footer-logo-mark {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background-color: var(--main-color);
    font-size: 13px;
}

.footer-link-row h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: var(--font-space-grotesk);
    font-size: 22px;
    font-weight: 700;
}

.footer-link-row li {
    margin-bottom: 13px;
}

.footer-link-row a {
    color: #b7c0d1;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition-03s);
}

.footer-link-row a:hover {
    color: #ffffff;
}

.footer-contact {
    padding-top: 8px;
}

.footer-contact h2 {
    margin: 0 0 40px;
    color: #ffffff;
    font-family: var(--font-space-grotesk);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.footer-contact-item {
    margin-bottom: 22px;
}

.footer-contact-item span {
    display: block;
    margin-bottom: 6px;
    color: #CCC8C8;
    font-size: 16px;
    font-weight: 400;
}

.footer-contact-item a,
.footer-contact-item p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.32;
}

.footer-image-box {
    width: 100%;
    /* max-width: 300px; */
    height: 400px;
    margin-left: auto;
    border-radius: 28px;
    overflow: hidden;
}

.footer-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer-bottom {
    padding: 18px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #020a1a;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: var(--main-color);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition-03s);
}

.footer-social a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    text-align: right;
}


/******************************** Media Query Started ****************************/

/************************************* Min Width Section ******************************/
@media (min-width: 1401px) and (max-width: 1539px) {
    .header-menu .nav-link {
        font-size: 16px;
    }

    .support-link strong {
        font-size: 16px;
    }

    .header-btn,
    .arrow-btn {
        font-size: 14px;
    }

    .common-btn span {
        font-size: 15px;
    }

    .common-btn i {
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: clamp(46px, 5vw, 100px);
    }

    .common-head h3 {
        font-size: clamp(32px, 3.5vw, 48px);
    }

    .testi-review-card .review-text {
        font-size: 28px;
    }

    .testi-stats h2 {
        font-size: 60px;
    }

    .custom-accordion .accordion-button {
        font-size: 18px;
    }

    .custom-accordion .accordion-body {
        font-size: 14px;
    }

    .custom-accordion .accordion-button::before {
        width: 40px;
        height: 25px;
        font-size: 12px;
    }

    .ads-banner-2-content h2 {
        font-size: 60px;
    }

    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 16px;
    }

    .footer-contact-item span {
        font-size: 14px;
    }

    .footer-link-row a {
        font-size: 14px;
    }

    .footer-link-row h3 {
        font-size: 20px;
    }

    .footer-bottom p {
        font-size: 15px;
    }

    .common-section {
        padding: 30px 0px;
    }

    .faq-section {
        background-color: #fff;
        padding: 20px 0 30px;
    }
}

@media (min-width: 1540px) {
    .container {
        max-width: 1500px;
    }
}

@media (min-width: 1640px) {
    .container {
        max-width: 1540px;
    }
}

/* @media (min-width: 1740px) {
    .container {
        max-width: 1740px;
    }
} */

/************************************* Max Width Section ******************************/

@media (max-width: 1399px) {
    .common-section {
        padding: 30px 0px;
    }

    .faq-section {
        background-color: #fff;
        padding: 20px 0 30px;
    }

    .header-container {
        gap: 16px;
    }

    .header-logo {
        font-size: 20px;
    }

    .logo-mark {
        width: 29px;
        height: 29px;
    }

    .header-collapse {
        gap: 18px;
    }

    .header-menu {
        min-width: 400px;
        gap: 14px;
    }

    .common-btn span {
        height: auto;
        font-size: 14px;
    }

    .common-btn i {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .hero-content h1 {
        font-size: clamp(46px, 5vw, 100px);
    }

    .common-head h2,
    .common-head h3 {
        font-size: clamp(32px, 3vw, 48px);
    }

    .header-menu .nav-link {
        min-width: 70px;
        font-size: 15px;
        padding: 7px 13px !important;
    }

    .support-link small {
        font-size: 10px;
    }

    .support-link strong {
        font-size: 13px;
    }

    .header-btn {
        padding: 9px 14px;
        font-size: 14px;
    }

}

@media (max-width: 1199px) {
    .header-logo {
        font-size: 18px;
    }

    .header-menu {
        min-width: 430px;
        gap: 6px;
        padding: 7px 10px;
    }

    .header-menu .nav-link {
        min-width: 68px;
        min-height: 34px;
        font-size: 14px;
    }

    .support-link>span:last-child {
        display: none;
    }

    .support-icon,
    .header-btn,
    .arrow-btn {
        min-height: 37px;
        height: 37px;
    }

    .support-icon,
    .arrow-btn {
        width: 37px;
    }

    .header-btn {
        font-size: 14px;
        padding-inline: 12px;
    }

    .hero-banner-box {
        min-height: 470px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: absolute;
        background: #ffffff;
        width: min(390px, 88vw);
        max-height: calc(100vh - 96px);
        left: auto;
        right: 12px;
        top: 100%;
        bottom: auto;
        padding: 20px;
        border: 1px solid rgba(27, 67, 254, 0.08);
        border-radius: 22px;
        box-shadow: 0 18px 45px rgba(12, 21, 36, 0.18);
        overflow-y: auto;
        transform: translateX(110%);
        transition: transform 0.3s ease;
    }

    .header-container {
        gap: 12px;
    }

    .header-collapse {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 14px;
    }

    .navbar-collapse.header-collapse.show,
    .navbar-collapse.header-collapse.collapsing {
        display: flex;
        flex-direction: column;
        height: auto !important;
        transform: translateX(0);
        transition: transform 0.3s ease;
    }

    .mobile-menu-close {
        width: 38px;
        height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        align-self: flex-end;
        border: 0;
        border-radius: 50%;
        color: #ffffff;
        background: var(--main-color);
        font-size: 18px;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .navbar-toggler {
        width: 43px;
        height: 43px;
        padding: 0;
        border: none;
        background: var(--main-color);
        border-radius: 50%;
        color: #ffffff;
    }

    .header-menu {
        flex-direction: column;
        align-items: stretch;
        min-width: 100%;
        gap: 8px;
        padding: 8px;
        border-radius: 16px;
    }

    .header-menu .nav-link {
        width: 100%;
        min-height: 44px;
        justify-content: flex-start;
        padding: 12px 16px !important;
        font-size: 16px;
        border-radius: 12px;
    }

    .header-actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
        gap: 10px;
        white-space: normal;
    }

    .support-link,
    .header-actions .header-btn,
    .header-actions .common-btn {
        width: 100%;
    }

    .support-link {
        grid-column: 1 / -1;
        min-height: 48px;
        padding: 7px 12px;
        border: 1px solid #e7ebf5;
        border-radius: 12px;
        background: #f8faff;
    }

    .support-icon {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        font-size: 17px;
    }

    .header-actions .header-btn {
        min-height: 44px;
        padding: 10px 14px;
        border-radius: 12px;
    }

    .header-actions .common-btn {
        overflow: hidden;
        border-radius: 12px;
        background: var(--main-color);
    }

    .header-actions .common-btn span {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        height: auto;
        padding: 10px 14px;
        border-radius: 0;
        font-size: 14px;
    }

    .header-actions .common-btn i {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        border-radius: 0;
        transform: rotate(0deg);
        font-size: 14px;
    }

    .header-actions .common-btn:hover span,
    .header-actions .common-btn:hover i {
        border-radius: 0;
    }

    .header-actions .common-btn:hover i {
        width: 44px;
    }

    .header-quote-action {
        justify-content: center;
    }

    .support-link>span:last-child {
        display: block;
    }

    .hero-banner {
        padding: 0 12px 12px;
    }

    .hero-banner-box {
        min-height: 430px;
        border-radius: 24px;
    }

    .hero-content h1 {
        margin-bottom: 14px;
    }

    .inner-banner-content {
        min-height: 250px;
        padding: 38px 34px;
        border-radius: 20px;
        background-image: linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.78) 100%),
            url('../media/images/ads-bnr.png');
    }

}

@media (max-width: 991px) {
    .service-list-wrap {
        padding-left: 0;
        margin-top: 40px;
        background-size: cover;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .service-img-box img {
        max-width: 100%;
    }

    .service-section {
        padding: 60px 0;
    }

    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-img-wrap {
        height: auto;
    }

    .why-choose-content {
        padding: 40px 30px;
    }

    .testimonial-left-content {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #e5e5e5;
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .ads-banner-2-section {
        padding: 10px 12px 50px;
    }

    .ads-banner-2-box {
        min-height: 320px;
        border-radius: 18px;
    }

    .footer-top-image {
        height: 130px;
    }

    .footer-newsletter {
        padding: 30px 0;
    }

    .footer-newsletter h2 {
        text-align: center;
    }

    .footer-subscribe-form {
        margin: 8px auto 0;
    }

    .footer-main {
        padding-top: 52px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-contact h2 {
        margin-bottom: 28px;
    }

    .footer-image-box {
        /* max-width: max-content; */
        margin: 10px 0 0;
        width: 100%;
    }

    .footer-bottom p {
        font-size: 14px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 34px 26px;
    }

    .contact-location-box {
        min-height: 170px;
    }
}

@media (max-width: 767px) {
    .header-logo {
        font-size: 20px;
    }

    .common-btn {
        font-size: 12px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
    }

    .hero-banner-box {
        min-height: 390px;
        background-position: center center;
    }

    .hero-content {
        width: min(520px, 88%);
    }

    .hero-content p {
        font-size: 12px;
    }

    .inner-banner {
        padding: 0 12px 12px;
    }

    .inner-banner-content {
        min-height: 230px;
        padding: 32px 24px;
        border-radius: 18px;
    }

    .inner-breadcrumb {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .inner-banner-content p {
        font-size: 15px;
    }

    .ads-banner-2-box {
        min-height: 280px;
        background-position: center center;
    }

    .ads-banner-2-content h2 {
        font-size: 32px;
    }

    .footer-top-image {
        height: 105px;
    }

    .footer-top-image img {
        width: 96%;
        max-height: 98px;
    }

    .footer-newsletter h2 {
        font-size: 24px;
    }

    .footer-main {
        padding: 42px 0 28px;
    }

    .footer-contact {
        padding-top: 18px;
    }

    .footer-image-box {
        height: 240px;
        max-width: 100%;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-bottom p {
        text-align: center;
    }

    .contact-info-panel,
    .contact-form-panel {
        border-radius: 18px;
    }

    .contact-info-panel .common-head h2,
    .contact-form-head h3 {
        font-size: 28px;
    }

    .testimonial-left-content {
        padding-bottom: 0px;
        margin-bottom: 20px;
    }

    .testi-review-card .review-text {
        font-size: 16px;
        line-height: 26px;
    }

    .testimonial-kicker {
        max-width: 100%;
        width: 100%;
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .navbar {
        padding: 14px 0;
    }

    .service-card {
        padding: 20px 10px;
    }

    .header-logo {
        font-size: 18px;
        gap: 8px;
    }

    .header-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .support-link,
    .header-btn,
    .header-quote-action,
    .arrow-btn {
        width: 100%;
    }

    .header-quote-action .quote-btn {
        flex: 1;
    }

    .arrow-btn {
        border-radius: 28px;
    }

    .hero-banner {
        padding: 0 10px 10px;
    }

    .hero-banner-box {
        min-height: 360px;
        border-radius: 20px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        margin-bottom: 18px;
    }

    .inner-banner {
        padding: 0 10px 10px;
    }

    .inner-banner-content {
        min-height: 220px;
        padding: 20px 10px;
        border-radius: 16px;
    }

    .header-actions {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .inner-banner-content h1 {
        font-size: 30px;
    }

    .ads-banner-2-section {
        padding: 8px 10px 42px;
    }

    .ads-banner-2-box {
        min-height: 245px;
        border-radius: 16px;
    }

    .ads-banner-2-content h2 {
        font-size: 28px;
    }

    .footer-newsletter {
        padding: 26px 0;
    }

    .footer-newsletter h2 {
        font-size: 21px;
    }

    .footer-subscribe-form {
        width: 100%;
    }

    .footer-link-row {
        gap: 28px 0;
    }

    .footer-contact h2 {
        font-size: 26px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 28px 20px;
    }

    .contact-info-card {
        padding: 14px;
    }

    .contact-info-card strong {
        font-size: 14px;
    }

    .contact-page-form input,
    .contact-page-form select,
    .contact-page-form textarea {
        min-height: 50px;
        border-radius: 10px;
    }

    .contact-submit-btn {
        width: 100%;
    }

    .contact-submit-btn span {
        flex: 1;
        text-align: center;
    }

}

/******************************** Responsive Polish ******************************/
@media (max-width: 1199px) {
    .service-listing-body {
        padding: 26px;
    }

    .service-details-img {
        min-height: 320px;
    }

    .service-details-img img {
        height: 260px;
    }
}

@media (max-width: 991px) {
    .common-section {
        padding: 44px 0;
    }

    .service-section,
    .why-choose-section {
        padding: 40px 0;
    }

    .service-list-wrap {
        margin-top: 24px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        padding-left: 0;
    }

    .service-img-box img {
        max-width: 280px;
        width: 100%;
        object-fit: contain;
        height: 150px;
    }

    .service-info-box h4 {
        font-size: 16px;
    }

    .why-choose-img-wrap img {
        display: none;
    }

    .testi-review-card .review-text {
        font-size: 22px;
        line-height: 30px;
    }

    .service-info-box p {
        font-size: 14px;
    }

    .service-item {
        min-width: 0;
        height: 100%;
        padding: 22px 12px;
        border-bottom: 0;
        border-radius: 14px;
        /* background: #ffffff;
        box-shadow: 0 12px 30px rgba(12, 21, 36, 0.06); */
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .service-img-box {
        width: 100%;
    }

    .service-img-box img {
        max-width: 260px;
    }

    .service-section .service-card {
        padding: 30px 14px;
    }

    .service-section .service-card h4 {
        font-size: 18px;
        line-height: 1.25;
    }

    .service-listing-row,
    .service-feature-row,
    .service-details-feature-row {
        margin-top: 10px;
    }

    .service-details-sidebar {
        position: static;
    }

    .service-sidebar-box,
    .service-sidebar-cta {
        padding: 24px;
    }

    .why-choose-content {
        padding: 34px 24px;
    }

    .faq-section {
        padding: 20px 0 20px;
    }

    .footer-main {
        padding: 46px 0 28px;
    }

    .faq-section .row {
        gap: 0px;
    }

    .custom-accordion .accordion-button {
        min-height: 40px;
        font-size: 16px;
        padding: 12px 20px 12px 20px;
    }

    .custom-accordion .accordion-body {
        padding: 0 20px 18px 20px;
        font-size: 14px;
    }

    .ads-banner-2-content h2 {
        font-size: 28px;
    }

    .why-choose-list li {
        font-size: 22px;
    }

    .common-head {
        margin-bottom: 10px;
    }

    .footer-link-row a {
        font-size: 14px;
    }

    .value-card h4 {
        font-size: 20px;
    }

    .footer-newsletter h2 {
        font-size: 32px;
    }

    .footer-link-row h3 {
        font-size: 20px;
    }

    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 16px;
    }

    .service-card h4 {
        font-size: 18px;
    }

    .service-card .icon-box {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .common-head {
        margin-bottom: 18px;
    }

    .support-link small {
        font-size: 13px;
    }

    .header-actions .common-btn i {
        display: none;
    }

    .row {
        gap: 12px 0px;
    }

    .service-section,
    .why-choose-section {
        padding: 20px 0;
    }

    .common-head h2,
    .common-head h3 {
        font-size: 30px;
    }

    .common-btn span {
        min-height: 40px;
        height: auto;
        padding: 9px 22px;
        font-size: 14px;
        white-space: nowrap;
    }

    .footer-newsletter h2 {
        font-size: 24px !important;
    }

    .common-btn i {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .ads-banner-content {
        width: 100%;
    }

    .ads-banner-box {
        min-height: 280px;
        padding: 36px 22px;
        border-radius: 20px;
    }

    .ads-banner-content h2 {
        padding: 24px 0;
    }

    .service-item {
        gap: 16px;
        padding: 18px 10px;
    }

    .service-info-box h4,
    .service-listing-body h3 {
        font-size: 22px;
    }

    .service-info-box h4 {
        font-size: 17px;
        line-height: 1.2;
    }

    .service-info-box p {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 14px;
    }

    .service-list-wrap .view-more-btn {
        font-size: 13px;
    }

    .service-list-wrap .view-more-btn span {
        padding: 8px 10px;
    }

    .service-list-wrap .view-more-btn i {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .service-section .service-card {
        min-height: 190px;
        padding: 24px 10px;
        border-radius: 14px;
    }

    .service-section .service-card .icon-box {
        height: 64px;
        margin-bottom: 14px;
    }

    .service-section .service-card h4 {
        font-size: 15px;
        line-height: 1.25;
    }

    .service-listing-img {
        min-height: 190px;
        padding: 22px;
    }

    .service-listing-img img {
        height: 150px;
    }

    .service-listing-body {
        padding: 24px;
    }

    .service-listing-body p {
        min-height: 0;
    }

    .service-details-img {
        min-height: 250px;
        margin-bottom: 26px;
        padding: 24px;
        border-radius: 16px;
    }

    .service-details-img img {
        height: 210px;
    }

    .service-details-list-box {
        padding: 24px;
    }

    .service-details-main>p {
        font-size: 15px;
    }

    .testimonial-section {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .testi-review-card {
        padding: 8px 0;
    }

    .testi-review-card .review-text {
        font-size: 18px;
    }

    .custom-accordion .accordion-button {
        min-height: 50px;
        padding: 14px 54px 14px 18px;
        font-size: 16px;
    }

    .custom-accordion .accordion-button::before {
        right: 12px;
        width: 36px;
        height: 26px;
        font-size: 12px;
    }

    .custom-accordion .accordion-body {
        padding: 0 18px 16px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .header-actions .common-btn {
        width: 100%;
    }

    .header-actions .common-btn span {
        flex: 1;
        text-align: center;
    }

    .hero-content {
        width: 90%;
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 1.04;
    }

    .common-section {
        padding: 20px 0;
    }

    .common-head h2,
    .common-head h3 {
        font-size: 24px;
    }

    .about-image-container {
        height: auto;
    }

    .about-image-container>img {
        min-height: 260px;
    }

    .service-list-wrap {
        align-items: center;
        margin-top: 14px;
        gap: 8px;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        text-align: center;
    }

    .service-item {
        padding: 14px 6px;
        gap: 12px;
        border-radius: 10px;
    }

    .service-info-box h4 {
        font-size: 15px;
    }

    .service-info-box p {
        font-size: 11px;
        line-height: 1.35;
        margin-bottom: 10px;
    }

    .service-list-wrap .view-more-btn {
        font-size: 11px;
    }

    .service-list-wrap .view-more-btn span {
        padding: 6px 7px;
    }

    .service-list-wrap .view-more-btn i {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        font-size: 10px;
    }

    .service-section .service-card .icon-box {
        height: 52px;
        margin-bottom: 12px;
    }

    .service-section .service-card {
        min-height: 150px;
        padding: 18px 6px;
    }

    .service-section .service-card h4 {
        font-size: 12px;
        line-height: 1.25;
    }

    .service-details-feature,
    .service-sidebar-box,
    .service-sidebar-cta {
        padding: 20px;
        border-radius: 14px;
    }

    .service-details-list-box {
        padding: 22px 18px;
    }

    .service-details-list-box h3 {
        font-size: 22px;
    }

    .service-sidebar-list a {
        padding: 13px 14px;
        font-size: 14px;
    }

    .why-choose-wrap {
        padding: 12px;
        border-radius: 18px;
    }

    .why-choose-content {
        padding: 10px 10px;
    }

    .why-choose-list li {
        align-items: flex-start;
        padding: 13px 0;
        font-size: 14px;
    }

    .testimonial-kicker,
    .testimonial-stats-text {
        max-width: 100%;
    }

    .testi-stats h2 {
        font-size: 48px;
    }

    .faq-heading h3 {
        font-size: 26px;
        line-height: 1.08;
    }

    .ads-banner-2-content {
        padding: 30px 16px;
    }

    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 15px;
        overflow-wrap: anywhere;
    }
}

@media (min-width: 992px) {
    .service-list-wrap {
        display: block;
        gap: 0;
        padding-left: 40px;
        background-size: contain;
    }

    .service-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 30px;
        height: auto;
        padding: 30px 0;
        border-bottom: 1px solid #e5e5e5;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .service-item:last-child {
        border-bottom: none;
    }

    .service-img-box {
        width: 40%;
    }

    .service-img-box img {
        max-width: 280px;
    }

    .service-info-box h4 {
        font-size: 24px;
        line-height: normal;
    }

    .service-info-box p {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .service-list-wrap .view-more-btn {
        font-size: 16px;
    }

    .service-list-wrap .view-more-btn span {
        padding: 6px 18px;
    }

    .service-list-wrap .view-more-btn i {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        font-size: 14px;
    }
}