/* Global S */
    .title-form-group .title {
        display: block;
        font-size: 25px;
        font-weight: 700;
    }

    .title-form-group p {
        opacity: 0.5;
    }

    @media (max-width: 767.98px) {
        .title-form-group .title {
            font-size: 22px;
        }
    }
/* Global E */

/* Header S */
    html.is-menu-open {
        overflow: hidden;
    }

    .header-main {
        background-color: rgba(61, 61, 63, 1);
        padding: var(--header-main-y-space) 0;
        position: fixed;
        left: 0;
        width: 100%;
        z-index: 99;
        min-height: var(--header-height);
    }

    .header-row {
        display: flex;
        flex-wrap: wrap;
        /* align-items: center; */
        justify-content: space-between;
    }

    .header-main .navbar {
        display: flex;
        align-items: stretch;
        justify-content: center;
        gap: 40px;
        border: 0;
        margin: 0;
    }

    .header-main .navbar .list-link {
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        height: 100%;
        width: 100%;
    }

    .header-main .navbar-brand {
        height: auto;
        padding: 0 !important;
        max-width: 165px;
    }

    .header-main .header-btn-sc {
        display: flex;
        align-items: center;
        gap: 30px;
    }

    .header-main .header-btn-sc .btn+.btn:before {
        content: '';
        position: absolute;
        left: -15px;
        top: 0;
        height: 100%;
        width: 1px;
        background-color: rgba(84, 84, 88, 1);
    }

    .header-btn-sc .btn {
        padding: 6px 15px;
        font-size: 14px;
    }

    .megamenu-wrapper {
        display: none;
        position: fixed;
        left: 0;
        top: calc(var(--header-height) - var(--header-main-y-space));
        width: 100%;
        z-index: 99;
        padding-top: var(--header-main-y-space);
    }

    .megamenu-main {
        padding: 30px 0;
        background-color: #ffffff;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 4px 16px 0px;
    }

    .megamenu-main-title {
        font-size: 18px;
        font-weight: 500;
        color: var(--primary-color);
        display: block;
        margin-bottom: 20px;
        text-transform: capitalize;
    }

    .megamenu-inner {
        display: flex;
        flex-direction: column;
    }

    .megamenu-inner .megamenu-list {
        padding: 12px 10px;
        border-radius: 15px;
        color: #000;
        display: block;
    }

    .megamenu-inner .megamenu-list:hover {
        background-color: rgb(234 86 67 / 6%);
    }

    .megamenu-inner .megamenu-list:hover .title {
        color: var(--primary-color);
    }

    .megamenu-block {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .megamenu-block .icon-block {
        width: 30px;
    }

    .megamenu-block .icon-block img {
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: contain;
        margin-top: 0px;
    }

    .megamenu-block .content-block {
        width: calc(100% - 40px);
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .megamenu-block .content-block>* {
        display: block;
        line-height: normal;
    }

    .megamenu-block .content-block .title {
        width: 100%;
        transition: 0.3s;
    }

    .megamenu-block .content-block .text {
        font-size: 14px;
        opacity: 0.5;
    }

    .has-megamenu .list-link:after {
        content: "\e900";
        font-family: 'icomoon';
        font-weight: 600;
        margin-left: 5px;
        font-size: 12px;
        transition: 0.3s;
    }

    @keyframes menuopen {
        0% {
            transform: translate(0%, 50px);
        }

        100% {
            transform: translate(0%, 0px);
        }
    }

    .toggle-bar {
        width: 35px;
        height: 25px;
        display: block;
        cursor: pointer;
        position: relative;
        margin: auto;
    }

    .toggle-bar span {
        position: absolute;
        top: 0;
        left: 0;
        background-color: white;
        transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
    }

    .toggle-bar span:before {
        position: absolute;
        top: 10px;
        left: 0;
        content: ' ';
        background-color: white;
    }

    .toggle-bar span:after {
        position: absolute;
        top: 20px;
        left: 0;
        content: ' ';
        background-color: white;
    }

    .close span {
        position: absolute;
        left: -6em;
        background: none;
    }

    .close span:after {
        position: absolute;
        left: 6em;
        top: 0.6em;
        background-color: white;
        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
    }

    .close span:before {
        display: block;
        position: absolute;
        background-color: white;
        top: 0.6em;
        left: 6em;
        transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
    }

    .toggle-bar span,
    .toggle-bar span:before,
    .toggle-bar span:after,
    .close span,
    .close span:before,
    .close span:after {
        width: 35px;
        height: 3px;
        border-radius: 0.2em;
        -moz-transition: all .5s cubic-bezier(0.5, -0.6, 0.19, 1);
        -o-transition: all .5s cubic-bezier(0.5, -0.6, 0.19, 1);
        -webkit-transition: all .5s cubic-bezier(0.5, -0.6, 0.19, 1);
        transition: all .5s cubic-bezier(0.5, -0.6, 0.19, 1);
    }

    @media (min-width: 1023.99px) {
        .has-megamenu:hover .list-link~.megamenu-wrapper {
            display: block;
            animation: 0.3s menuopen;
        }

        .has-megamenu:hover .list-link:after {
            transform: rotate(180deg);
        }

        .toggle-bar {
            display: none;
        }
    }

    @media (max-width: 1023.98px) {
        .header-main .navbar {
            position: fixed;
            top: var(--header-height);
            left: 0;
            width: 100%;
            height: calc(100% - var(--header-height));
            z-index: 999;
            flex-direction: column;
            justify-content: flex-start;
            /*background: #ffffff;*/
            background: rgba(61, 61, 63, 1);
            display: none;
            overflow-y: auto;
            box-shadow: 0px 3px 10px #00000026;
            height: auto !important;
        }

        .header-main .navbar .list-item {
            border-top: 1px solid rgb(133 133 133);
        }

        .header-main .navbar .list-link {
            color: #fff;
            width: 100%;
            max-width: 960px;
            margin: auto;
            justify-content: space-between;
            padding: 15px;
        }

        .has-megamenu .list-link:after {
            font-size: 16px;
        }

        .megamenu-wrapper {
            position: static;
            box-shadow: none;
            padding-top: 0;
            border-top: 1px solid rgb(133 133 133);
        }

        .megamenu-main {
            box-shadow: none;
            padding: 10px 0px;
            background-color: transparent;
        }

        .megamenu-inner .megamenu-list {
            color: #fff;
        }

        .is-open-submenu.has-megamenu .list-link:after {
            transform: rotate(180deg);
        }
    }

    @media (max-width: 991.98px) {
        .header-main .navbar .list-link {
            max-width: 720px;
        }

        .megamenu-block .content-block .text {
            display: none;
        }

        .megamenu-inner .megamenu-list {
            padding: 12px 0px;
        }
    }

    @media (max-width: 767.98px) {
        .header-main .navbar .list-link {
            max-width: 540px;
        }
    }

    @media (max-width: 575.98px) {
        .header-main .header-btn-sc {
            gap: 15px;
        }
    }
/* Header E */

/* Banner S */
    .banner-section .row {
        display: flex;
        align-items: center;
    }

    .banner-content-block .tag {
        display: inline-block;
        padding: 7px 12px;
        border-radius: 6px;
        background-color: rgba(255, 233, 230, 1);
        font-size: 16px;
        font-weight: 500;
        color: var(--primary-color);
    }

    .banner-content-block .title {
        font-size: 54px;
        font-weight: 600;
        line-height: 60px;
        margin: 20px 0px;
        text-transform: capitalize;
    }

    .banner-content-block p {
        font-size: 18px;
        /* line-height: 20px; */
        margin-bottom: 25px;
    }

    .banner-img-block {
        max-width: 500px;
        margin-left: auto;
        position: relative;
    }

    .banner-img-block .watermark-remove {
        position: absolute;
        bottom: 10px;
        right: 0px;
        width: 140px;
        height: 35px;
        border-radius: 20px;
        background: #ffffff;
    }

    lottie-player {
        width: 100%;
        height: 100%;
    }

    .banner-quote {
        border-left: 2px solid var(--primary-color);
        padding-left: 8px;
        margin-bottom: 50px;
    }

    .banner-quote .quote-subtitle {
        margin-bottom: 10px;
    }

    .banner-quote .quote-title {
        color: var(--primary-color);
        font-size: 24px;
        line-height: 20px;
        font-weight: 600;
    }

    .banner-content-block .btn-sc {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }

    .banner-content-block .btn-sc .schedule-link {
        background-color: transparent;
        border: 0;
        font-size: 16px;
    }

    .btn-enquiry {
        padding: 7px 16px;
        padding-left: 50px;
    }

    .btn-enquiry .enquiry-span-wrap {
        display: flex;
        flex-direction: column;
        text-align: left;
        font-size: 17px;
        line-height: normal;
    }

    .btn-enquiry .enquiry-span-text {
        font-size: 13px;
        display: block;
        margin-bottom: 2px;
    }

    @media (max-width: 1366.98px) {
        .banner-content-block .title {
            max-width: 500px;
            font-size: 48px;
            line-height: 1.2;
        }
    }

    @media (max-width: 991.98px) {

        /* .banner-section .row > [class*=col-]:nth-child(1) {order: 1}
                .banner-section .row > [class*=col-]:nth-child(2) {order: 0} */
        .banner-img-block {
            margin: 50px auto 0px;
            max-width: 350px;
        }

        .banner-content-block .title {
            font-size: 36px;
        }

        .banner-quote {
            margin-bottom: 40px;
        }

        .banner-content-block .btn {
            font-size: 20px;
        }
    }

    @media (max-width: 575.98px) {
        .banner-content-block .title {
            font-size: 30px;
        }

        .banner-content-block .btn-sc {
            flex-direction: column;
            gap: 10px;
        }

        .banner-content-block .btn:not(.btn-enquiry) {
            width: 100%;
        }

        .no-bg-mv {
            background-color: transparent !important;
            border: 0 !important;
        }

        .btn-enquiry .enquiry-span-text {
            display: none;
        }
    }
/* Banner E */

/* Certificates S */
    .certificate-slider .slick-track {
        display: flex;
        align-items: center;
    }

    .certificate-block {
        margin: auto;
    }
    .certificate-vapt {max-width: 220px;}
    .certificate-iso {max-width: 220px;}
    .certificate-soc {max-width: 120px;}
    .certificate-msme {max-width: 150px;}
    .certificate-meta {max-width: 150px;}
    .certificate-cdl {max-width: 200px;}

    .certificates-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }
    .certificates-grid .certificates-item {
        width: calc(33.33% - ((30px * 2) / 3));
    }
    .certificates-block .title-block {
        margin-bottom: 15px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .certificates-block .title {
        display: block;
        font-size: 18px;
        font-weight: 500;
        width: calc(100% - 100px);
    }
    .certificates-block .tag {
        border: 1px solid #008000;
        border-radius: 30px;
        padding: 3px 10px;
        line-height: normal;
        font-size: 12px;
        color: #008000;
        background-color: #e2ffe2;
    }
    .certificates-image {
        aspect-ratio: 2 / 1;
        background: #fff;
        border: 1px solid rgba(229, 224, 219, 1);
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        cursor: pointer;
    }
    .certificates-image img {
        max-width: 150px;
        max-height: 130px;
        margin: auto;
    }
    .certificates-image:hover {
        box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    }

    @media (max-width: 1023.98px) {
        .container.certificate-container {
            max-width: 100%;
            padding: 0;
        }
    }
    @media (max-width: 991.98px) {
        .certificates-grid .certificates-item {
            width: calc(50% - ((30px * 1) / 2));
        }
    }
    @media (max-width: 767.98px) {
        .certificates-grid .certificates-item {
            width: calc(100% - 0px);
        }
        .certificate-vapt {max-width: 150px;}
        .certificate-iso {max-width: 150px;}
        .certificate-soc {max-width: 90px;}
        .certificate-msme {max-width: 120px;}
        .certificate-meta {max-width: 120px;}
        .certificate-cdl {max-width: 160px;}
    }
/* Certificates E */

/* Trusted Company S */
    .trusted-section .logo-wrap {
        max-width: 800px;
        margin: auto;
    }

    /* .trusted-section .logo-slider {
            max-width: 900px;
            margin: auto;
        }  */
    .trusted-section .logo-item {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
    }

    .trusted-section .logo-item img {
        max-height: 80px;
        max-width: 100%;
        object-fit: contain;
    }

    @media (max-width: 575.98px) {
        .trusted-section .logo-item img {
            max-width: 120px;
            max-height: 50px;
        }
    }
/* Trusted Company E */

/* Feature S */
    .feature-section {
        position: relative;
    }

    .feature-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 50%;
        background-color: var(--bg-grey-dark);
    }

    .feature-card {
        z-index: 2;
        position: relative;
        background-color: #fff;
        border: 1px solid rgba(229, 224, 219, 1);
        border-radius: 20px;
        padding: 50px 25px 25px;
    }

    .feature-card .title-sc {
        margin-bottom: 20px;
    }

    .feature-block {
        /* background-color: rgba(249, 245, 242, 1); */
        background-color: #f9f9f9;
        border: 1px solid rgba(229, 224, 219, 1);
        border-radius: 20px;
        padding: 25px;
        margin-top: 30px;
        display: block;
        height: calc(100% - 30px);
        transition: 0.3s;
    }

    .feature-block:hover {
        background-color: #F5F5F5;
    }

    .feature-block .icon-title-block {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }

    .feature-block .icon-title-block.icon-title-block-column {
        flex-direction: column;
        align-items: flex-start;
    }

    .feature-block .icon {
        max-width: 50px;
        width: 50px;
    }

    .feature-block.home-feature-block .icon {
        max-width: 40px;
        width: 40px;
    }

    .feature-block .icon img {
        width: 100%;
        aspect-ratio: 1 / 1;
    }

    .feature-block .title {
        display: block;
        font-size: 28px;
        font-weight: 600;
        line-height: 1.2;
        width: calc(100% - 55px);
        position: relative;
        padding-right: 20px;
        color: var(--heading-color);
    }

    .feature-block.home-feature-block .title::before {
        content: "\e900";
        font-family: 'icomoon' !important;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        position: absolute;
        right: 0;
        top: 5px;
        transform: rotate(-90deg);
        font-size: 25px;
        transition: 0.3s;
    }

    .feature-block.home-feature-block:hover .title::before {
        transform: translate(5px, 0px) rotate(-90deg);
    }

    .feature-block .icon-title-block.icon-title-block-column .title {
        width: 100%;
    }

    .feature-block p+.explore-link {
        margin-top: 30px;
    }

    .feature-block .explore-link {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--primary-color);
        font-size: 20px;
        font-weight: 600;
    }

    .feature-block .explore-link svg {
        transition: all 0.3s;
    }

    .feature-block .explore-link:hover svg {
        transform: translate(5px, 0);
    }

    @media (max-width: 1366.98px) {
        .feature-block.home-feature-block .title::before {
            top: 6px;
            font-size: 24px;
        }
    }

    @media (max-width: 991.98px) {
        .feature-block .icon-title-block {
            align-items: flex-start;
        }

        .feature-block {
            padding: 20px;
            height: calc(100% - 20px);
        }

        .feature-block .title {
            font-size: 22px;
            width: calc(100% - 45px);
        }

        .feature-block.home-feature-block .title::before {
            top: 4px;
            font-size: 18px;
        }

        .feature-block.home-feature-block .icon {
            max-width: 30px;
            width: 30px;
        }

        .feature-block .explore-link {
            font-size: 16px;
        }
    }

    @media (max-width: 575.98px) {
        .feature-card {
            padding: 30px 25px 25px;
        }

        .feature-block {
            margin-top: 20px;
        }
    }
/* Feature E */

/* CTA S */
    .cta-grid-block {
        background-color: var(--primary-color);
        background-image: linear-gradient(128.04deg, #E95644 66.97%, #FF7E6D 103.4%);
        padding: 60px 50px;
        border-radius: 25px;
    }

    .cta-grid-inner {
        max-width: 760px;
        margin: auto;
        text-align: center;
        color: #fff;
    }

    .cta-grid-inner .title {
        font-size: 46px;
        line-height: 1.2;
        font-weight: 600;
        margin-bottom: 20px;
        display: block;
    }

    .cta-grid-inner p {
        font-size: 24px;
        line-height: 1.4;
        margin-bottom: 20px;
        color: #fff;
    }

    .cta-grid-img-block {
        position: relative;
    }

    .cta-grid-img-block .cta-grid-inner {
        max-width: 625px;
        text-align: left;
        margin-left: 0;
        z-index: 1;
        position: relative;
    }

    .cta-grid-img-block .cta-grid-image {
        width: calc(100% - 695px);
        position: absolute;
        right: 20px;
        bottom: 0;
        z-index: 0;
    }

    @media (max-width: 1366.98px) {
        .cta-grid-inner .title {
            font-size: 38px;
        }

        .cta-grid-img-block .cta-grid-image {
            width: calc(100% - 735px);
        }
    }

    @media (max-width: 1260.9px) {
        .cta-grid-img-block .cta-grid-image {
            width: calc(100% - 645px);
        }
    }

    @media (max-width: 1199.98px) {
        .cta-grid-img-block .cta-grid-image {
            width: calc(100% - 465px);
            right: 0px;
        }

        .cta-grid-img-block .cta-grid-inner {
            max-width: 525px;
        }
    }

    @media (max-width: 991.98px) {
        .cta-section {
            padding-top: 0px;
        }

        .cta-grid-block {
            padding: 40px 30px 40px;
        }

        .cta-grid-img-block .cta-grid-inner {
            text-align: center;
            margin: auto;
        }

        .cta-grid-img-block .cta-grid-image {
            width: calc(100% - 385px);
            right: 0px;
            opacity: 0;
        }

        .cta-grid-inner .title {
            font-size: 32px;
        }

        .cta-grid-inner p {
            font-size: 20px;
        }
    }

    @media (max-width: 767.98px) {
        .cta-grid-img-block .cta-grid-image {
            width: 225px;
        }
    }

    @media (max-width: 575.98px) {
        .cta-grid-block {
            padding: 30px 20px 30px;
        }

        .cta-grid-inner .title {
            font-size: 28px;
        }

        .cta-grid-inner p {
            font-size: 18px;
        }
    }
/* CTA E */

/* Service S */
    .service-card-grid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .service-card-grid .service-card-block {
        width: calc(33.33% - (30px * 2) / 3);
    }

    .service-card-inner {
        padding: 30px;
        background-color: #fff;
        border: 1px solid rgba(229, 224, 219, 1);
        border-radius: 20px;
        display: flex;
        flex-direction: column;
    }

    .service-card-inner .icon-title-block {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }

    .service-card-inner .icon {
        max-width: 36px;
        width: 36px;
        height: 36px;
        background-image: url(../../new/home-services-icon.png);
        background-repeat: no-repeat;
    }

    .service-card-inner .icon.icon-startup {
        background-position: 0px center;
    }

    .service-card-inner .icon.icon-individual {
        background-position: -37px center;
    }

    .service-card-inner .icon.icon-education {
        background-position: -74px center;
    }

    .service-card-inner .icon.icon-corporate {
        background-position: -111px center;
    }

    .service-card-inner .icon.icon-developer {
        background-position: -148px center;
    }

    .service-card-inner .icon img {
        width: 100%;
        display: none;
        aspect-ratio: 1 / 1;
    }

    .service-card-inner .title {
        font-size: 24px;
        line-height: 1.2;
        font-weight: 700;
        display: block;
        width: calc(100% - 75px);
    }

    .service-card-inner p {
        margin-bottom: 0px;
    }

    @media (max-width: 1366.98px) {
        .service-card-inner .title {
            font-size: 22px;
        }
    }

    @media (max-width: 1199.98px) {
        .service-card-inner {
            padding: 20px;
        }

        .service-card-inner .title {
            font-size: 24px;
        }
    }

    @media (max-width: 991.98px) {
        .service-card-grid .service-card-block {
            width: calc(50% - (30px * 1) / 2);
        }

        .service-card-inner .title {
            font-size: 22px;
            width: calc(100% - 60px);
        }
    }

    @media (max-width: 575.98px) {
        .service-card-grid {
            gap: 20px;
        }

        .service-card-grid .service-card-block {
            width: calc(100% - 0px);
        }
    }
/* Service E */

/* Faq S */
    .faq-list+.faq-list {
        border-top: 2px solid rgba(229, 224, 219, 1);
    }

    .faq-list .faq-head {
        padding: 25px 20px 25px 0px;
        cursor: pointer;
        position: relative;
    }

    .faq-head::before,
    .faq-head::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background-color: var(--primary-color);
        border-radius: 10px;
        top: 50%;
        right: 0px;
        transform: translateY(-50%);
        transition: 0.2s ease;
    }

    .faq-head::after {
        transform: translateY(-50%) rotate(90deg);
    }

    .faq-head.active::after {
        opacity: 0;
    }

    .faq-list .faq-head .title {
        font-size: 24px;
        line-height: 1.4;
        font-weight: 500;
    }

    .faq-list .faq-body {
        padding: 0 0 25px;
        display: none;
    }

    .faq-list .faq-body :is(p, li, td, th) {
        color: rgba(76, 76, 76, 1);
    }

    .faq-list .faq-body a {
        color: var(--content-color);
    }

    .faq-list .faq-body p+.table-responsive {
        margin-top: 15px;
    }

    .faq-list .faq-body p+ :is(ul, ol) {
        margin-top: 15px;
        margin-bottom: 0;
    }

    @media (max-width: 991.98px) {
        .faq-list .faq-head {
            padding: 20px 20px 20px 0px;
        }

        .faq-list .faq-head .title {
            font-size: 20px;
        }
    }

    @media (max-width: 575.98px) {
        .faq-list .faq-head .title {
            font-size: 18px;
        }
    }
/* Faq E */

/* Footer S */
    .footer-main {
        background-color: rgba(255, 231, 228, 1);
        padding: 50px 0px;
        background: linear-gradient(180deg, #400B04 19.8%, #1A0502 100%);
    }

    .footer-main a {
        color: #fff;
    }

    .footer-main a:hover {
        color: var(--primary-color);
    }

    .ft-widget .ft-title {
        position: relative;
        font-size: 20px;
        line-height: 36px;
        padding-bottom: 15px;
        margin-bottom: 15px;
        display: block;
        color: #fff;
    }

    .ft-widget .ft-title::before {
        content: '';
        width: 100px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        position: absolute;
        bottom: 0px;
        left: 0px;
    }

    .ft-widget .ft-nav li a {
        font-size: 16px;
        font-weight: 400;
        line-height: 36px;
    }

    .ft-widget .ft-nav li+li {
        margin-top: 5px;
    }

    .ft-widget .ft-logo-box {
        max-width: 180px;
        display: block;
    }

    .ft-widget .icn-link-block {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        margin-top: 20px;
    }

    .ft-widget .icn-link-block .icon {
        display: flex;
    }

    .ft-widget .icn-link-block .icon svg {
        width: 25px;
        height: 25px;
    }

    .ft-widget .social-link-block {
        margin-top: 30px;
    }

    .ft-widget .social-link-block a {
        opacity: 0.5;
    }

    .ft-widget .social-link-block a:hover {
        color: #fff;
        opacity: 1;
    }

    .ft-widget .social-link-block .title {
        display: block;
        font-size: 18px;
        line-height: 26px;
        color: #fff;
        margin-bottom: 10px;
    }

    .ft-widget .social-link-block ul {
        display: flex;
        align-items: center;
        gap: 25px;
        font-size: 24px;
    }

    .meta-business-block {
        display: block;
        max-width: 120px;
        margin-top: 30px;
    }

    .copyright-text {
        padding: 50px 0 0;
        font-size: 14px;
        font-weight: 300;
        text-align: center;
        color: #fff;
        opacity: 1;
    }

    .copyright-text a {
        font-weight: 500;
    }

    .ft-faq-main {
        border-radius: 0px;
        padding: 0;
        padding-top: 25px;
        margin-top: 25px;
        border-top: 1px solid #fff;
    }

    .ft-faq-main .ft-faq-title {
        font-size: 24px;
        display: block;
        text-align: center;
        color: #fff;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .ft-faq-main .title-sc {
        margin-bottom: 20px;
    }

    .ft-faq-main .title-sc .main-title {
        font-size: 30px;
        font-weight: 500;
        line-height: normal;
    }

    .ft-faq-main .faq-list .faq-head {
        padding: 15px 0px 15px 0px;
        cursor: auto;
        /* background: #fff; */
    }

    .ft-faq-main .faq-head::before,
    .ft-faq-main .faq-head::after {
        opacity: 0;
    }

    .ft-faq-main .faq-list .faq-head .title {
        color: #a2a2a2;
        font-size: 18px;
        font-weight: 500;
    }

    .ft-faq-main .faq-list+.faq-list {
        border-top: 0px solid rgba(229, 224, 219, 1);
    }

    .ft-faq-main .faq-list .faq-body {
        padding: 0px 0px 20px;
        /* background: #fff; */
        /* border-top: 1px solid rgba(229, 224, 219, 1); */
        display: block !important;
    }

    .ft-faq-main .faq-list .faq-body :is(p, li, td, th, a) {
        color: #a2a2a2;
    }

    .ft-faq-main thead :is(th, td),
    .ft-faq-main tbody tr:nth-child(even) {
        background-color: transparent;
    }

    .ft-faq-main .faq-list .faq-body ul {
        list-style-type: auto;
        padding-left: 20px;
    }

    @media (min-width: 767.99px) {
        .footer-main .row> :is([class*=col-]:nth-child(1), [class*=col-]:nth-child(2), [class*=col-]:nth-child(3)) {
            max-width: 22%;
            flex: 0 0 22%;
            -ms-flex: 0 0 22%;
        }

        .footer-main .row>[class*=col-]:nth-child(4) {
            max-width: 33%;
            flex: 0 0 33%;
            -ms-flex: 0 0 33%;
        }
    }

    @media (min-width: 991.99px) {
        .footer-main .row>[class*=col-]:nth-child(1) {
            max-width: 25%;
            flex: 0 0 25%;
            -ms-flex: 0 0 25%;
        }

        .footer-main .row>[class*=col-]:nth-child(2) {
            max-width: 24%;
            flex: 0 0 24%;
            -ms-flex: 0 0 24%;
        }

        .footer-main .row>[class*=col-]:nth-child(3) {
            max-width: 26%;
            flex: 0 0 26%;
            -ms-flex: 0 0 26%;
        }

        .footer-main .row>[class*=col-]:nth-child(4) {
            max-width: 25%;
            flex: 0 0 25%;
            -ms-flex: 0 0 25%;
        }
    }

    @media (min-width: 1199.99px) {
        .footer-main .row>[class*=col-]:nth-child(1) {
            max-width: 29%;
            flex: 0 0 29%;
            -ms-flex: 0 0 29%;
        }

        .footer-main .row>[class*=col-]:nth-child(2) {
            max-width: 24%;
            flex: 0 0 24%;
            -ms-flex: 0 0 24%;
        }

        .footer-main .row>[class*=col-]:nth-child(3) {
            max-width: 26%;
            flex: 0 0 26%;
            -ms-flex: 0 0 26%;
        }

        .footer-main .row>[class*=col-]:nth-child(4) {
            max-width: 21%;
            flex: 0 0 21%;
            -ms-flex: 0 0 21%;
        }
    }

    @media (max-width: 767.98px) {
        .footer-main .row {
            row-gap: 30px;
        }

        .ft-faq-main {
            margin-top: 20px;
        }

        .copyright-text {
            padding-top: 20px;
        }

        .ft-widget .icn-link-block {
            margin-top: 50px;
        }

        .ft-widget .social-link-block {
            margin-top: 30px;
        }
    }

    @media (max-width: 575.98px) {
        .ft-widget .icn-link-block {
            margin-top: 30px;
        }

        .footer-main .row {
            row-gap: 20px;
        }
    }
/* Footer E */

/* Modal - Login/Signup/Forget S */
    .modal .btn-close {
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 30px;
        color: var(--primary-color);
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .loginSignupModal .modal-body {
        padding: 0;
    }



    .loginSignupModal-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .loginSignupModal-grid :is(.form-block, .image-block) {
        width: 50%;
    }

    .loginSignupModal-grid.fullformModal-grid :is(.form-block, .image-block) {
        width: 100%;
    }

    .loginSignupModal-grid .image-block {
        background-color: var(--primary-color);
        background-image: url(../../new/bulk-sms-service-provider-4.webp);
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .loginSignupModal-grid .form-block {
        height: 600px;
        overflow-y: auto;
    }

    .loginSignup-box {
        padding: 50px;
        display: none;
    }

    .loginSignup-box.requirement-box {
        padding: 40px 50px 20px;
    }

    .loginSignup-box a {
        color: var(--primary-color);
    }

    .loginSignupModal-grid .btn-group {
        margin-bottom: 0;
        padding: 0 0 20px 0;
    }

    @media (max-width: 991.98px) {
        .loginSignupModal-grid .image-block {
            display: none;
        }

        .loginSignupModal-grid .form-block {
            height: auto;
            width: 100%;
        }

        .loginSignup-box {
            padding: 30px;
        }

        .loginSignupModal .title-form-group .title {
            width: calc(100% - 10px);
        }

        .modal .btn-close {
            /* box-shadow: 0 0 1.25rem rgb(31 45 61 / 31%); */
            border-radius: 50%;
            width: 30px;
            height: 30px;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            right: 10px;
            top: 36px;
            background-color: rgb(255 255 255);
            color: rgba(0, 0, 0, 1);
            z-index: 1;
        }
    }

    @media (max-width: 767.98px) {
        .loginSignup-box {
            padding: 20px;
        }
    }
/* Modal - Login/Signup/Forget E */

/* CMS S */
    .cms-wrap {
        padding: 50px;
        background-color: #fff;
        box-shadow: 0 0 1.25rem rgba(31, 45, 61, .05);
    }

    .cms-main h1 {
        font-size: 2.2rem;
        line-height: 54px;
    }

    .cms-main :is(ol, ul) {
        padding-left: 30px;
    }

    .cms-main ul {
        list-style-type: disc;
    }

    .cms-main ol {
        list-style-type: numeric;
    }

    .cms-main li {
        margin-top: 15px;
    }

    .gap-30 {
        height: 30px;
    }
/* CMS E */

/* Inner banner S */
    .inner-banner-section {
        background-size: cover;
        background-color: var(--primary-color);
    }

    /* .contact-inner-banner-section {
            background-image: url(../../img/map2.jpeg);
        }

        .about-inner-banner-section {
            background-image: url(../../img/fifth-sec.jpg);
            background-position: right;
        } */

    .sms-banner-section {
        position: relative;
    }

    .sms-banner-section::before,
    .sms-banner-section::after {
        content: '';
        position: absolute;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .sms-banner-section::before {
        background-image: url(../../new/sms-abstract-1.svg);
        width: 267px;
        height: 217px;
        top: 0;
        left: 0;
    }

    .sms-banner-section::after {
        background-image: url(../../new/sms-abstract-2.svg);
        width: 230px;
        height: 126px;
        right: 0;
        bottom: 0;
    }

    .inner-banner-section .title-sc {
        margin-bottom: 0px;
    }

    .inner-banner-section .title-sc .main-title {
        color: #ffffff;
    }


    .inner-banner-section .channel-ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: center;
        position: relative;
    }

    .inner-banner-section .channel-ul::before,
    .inner-banner-section .channel-ul::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 50%;
        height: 47px;
        background-size: contain;
        background-repeat: no-repeat;
        z-index: 0;
    }

    .inner-banner-section .channel-ul::before {
        background-image: url(../../new/sms-bg-line-1.svg);
        left: calc(50% - 400px);
        background-position: right center;
    }

    .inner-banner-section .channel-ul::after {
        background-image: url(../../new/sms-bg-line-2.svg);
        left: calc(50% + 450px);
        background-position: left center;
    }

    .inner-banner-section .channel-ul li {
        z-index: 1;
    }

    .inner-banner-section .channel-ul li a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #ffffff;
        font-size: 20px;
    }

    .inner-banner-section .channel-ul li a img {
        width: 30px;
    }

    .inner-banner-section .channel-ul li:nth-child(2) a {
        font-size: 40px;
        pointer-events: none;
    }

    .inner-banner-section .channel-ul li:nth-child(2) a img {
        width: 50px;
    }

    .inner-banner-section .channel-ul li:not(:nth-child(2)) a {
        filter: blur(1.5px);
        transition: 0.3s;
    }

    .inner-banner-section .channel-ul li:not(:nth-child(2)) a:hover {
        filter: blur(0px);
    }

    .inner-banner-section.whatsapp-banner-section .channel-ul::before {
        left: calc(50% - 500px);
    }

    .inner-banner-section.whatsapp-banner-section .channel-ul::after {
        left: calc(50% + 490px);
    }

    @media (max-width: 1199.98px) {
        .inner-banner-section .channel-ul::before {
            left: calc(50% - 300px);
        }

        .inner-banner-section .channel-ul::after {
            left: calc(50% + 350px);
        }

        .inner-banner-section.whatsapp-banner-section .channel-ul::before,
        .inner-banner-section.whatsapp-banner-section .channel-ul::after {
            width: 200px;
        }

        .inner-banner-section.whatsapp-banner-section .channel-ul::before {
            left: calc(50% - 250px);
        }

        .inner-banner-section.whatsapp-banner-section .channel-ul::after {
            left: calc(50% + 250px);
        }
    }

    @media (max-width: 991.98px) {
        .inner-banner-section .channel-ul::before {
            left: calc(50% - 300px);
        }

        .inner-banner-section .channel-ul::after {
            left: calc(50% + 350px);
        }

        .sms-banner-section::after {
            width: 130px;
            height: 71px;
        }

        .sms-banner-section::before {
            width: 167px;
            height: 137px;
        }

        .inner-banner-section .channel-ul li a {
            font-size: 18px;
        }

        .inner-banner-section .channel-ul li a img {
            width: 25px;
        }

        .inner-banner-section .channel-ul li:nth-child(2) a {
            font-size: 25px;
        }

        .inner-banner-section .channel-ul li:nth-child(2) a img {
            width: 35px;
        }

        .inner-banner-section .channel-ul::before,
        .inner-banner-section .channel-ul::after {
            width: 150px;
        }

        .inner-banner-section .channel-ul::before {
            left: calc(50% - 130px);
        }

        .inner-banner-section .channel-ul::after {
            left: calc(50% + 180px);
        }

        .inner-banner-section.whatsapp-banner-section .channel-ul::before,
        .inner-banner-section.whatsapp-banner-section .channel-ul::after {
            width: 150px;
        }

        .inner-banner-section.whatsapp-banner-section .channel-ul::before {
            left: calc(50% - 170px);
        }

        .inner-banner-section.whatsapp-banner-section .channel-ul::after {
            left: calc(50% + 170px);
        }
    }

    @media (max-width: 767.98px) {

        .inner-banner-section .channel-ul::before,
        .inner-banner-section .channel-ul::after {
            width: 100px;
        }

        .inner-banner-section .channel-ul::before {
            left: calc(50% - 90px);
        }

        .inner-banner-section .channel-ul::after {
            left: calc(50% + 135px);
        }

        .inner-banner-section.whatsapp-banner-section .channel-ul::before,
        .inner-banner-section.whatsapp-banner-section .channel-ul::after {
            width: 100px;
        }

        .inner-banner-section.whatsapp-banner-section .channel-ul::before {
            left: calc(50% - 140px);
        }

        .inner-banner-section.whatsapp-banner-section .channel-ul::after {
            left: calc(50% + 140px);
        }
    }

    @media (max-width: 575.98px) {

        .inner-banner-section.sms-banner-section,
        .inner-banner-section.rcs-banner-section,
        .inner-banner-section.whatsapp-banner-section {
            padding: 30px 0px;
        }

        .inner-banner-section .channel-ul {
            flex-direction: column;
            gap: 20px;
        }

        .inner-banner-section .channel-ul::before,
        .inner-banner-section .channel-ul::after {
            display: none;
        }

        .sms-banner-section::before {
            width: 117px;
            height: 97px;
        }

        .sms-banner-section::after {
            width: 100px;
            height: 55px;
        }
    }
/* Inner banner E */

/* Contact Us S */
    .sales-support-section {
        padding-top: 60px;
        /* padding-bottom: 40px; */
    }
    .sales-support-section .row {
        max-width: 850px;
        margin: auto;
    }
    .ss-card {
        background-color: #fff;
        border: 1px solid rgba(229, 224, 219, 1);
        border-radius: 15px;
        padding: 35px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .ss-card-header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }
    .ss-header-icon {
        width: 54px;
        height: 54px;
        background: #fff5f5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .ss-header-icon svg {
        width: 24px;
        height: 24px;
        color: var(--primary-color);
    }
    .ss-header-text h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 4px 0;
        line-height: normal;
        color: #1a1a1a;
    }
    .ss-header-text p {
        font-size: 14px;
        color: #666;
        margin: 0 0 10px 0;
    }
    .ss-underline {
        width: 30px;
        height: 2px;
        background: var(--primary-color);
        border-radius: 2px;
    }

    .ss-contact-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .ss-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .ss-item-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .ss-item-icon.wa {
        background: transparent;
    }
    .ss-item-icon svg, .ss-item-icon span {
        font-size: 20px;
        color: var(--primary-color);
    }
    .ss-item-icon.wa span {
        color: #25d366;
    }
    .ss-item-icon.wa img {
        width: 20px ;
        height: 20px ;
    }
    .ss-item a.ss-link {
        font-size: 16px;
        font-weight: 500;
        color: #444;
        text-decoration: none;
        transition: 0.3s;
    }
    .ss-item a.ss-link:hover {
        color: var(--primary-color);
    }

    /* Meeting Box */
    .ss-meeting-row {
        max-width: 820px;
        margin: 30px auto 0;
    }
    .ss-meeting-box {
        background: #fffafa;
        border: 1px dashed #ffdada;
        border-radius: 15px;
        padding: 25px 30px;
        display: flex;
        align-items: center;
        gap: 25px;
        width: 100%;
    }
    .ss-mb-icon {
        width: 50px;
        height: 50px;
        background: #fff0f0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .ss-mb-icon svg {
        width: 22px;
        height: 22px;
        color: var(--primary-color);
    }
    .ss-mb-text {
        flex-grow: 1;
    }
    .ss-mb-text h5 {
        font-size: 18px;
        font-weight: 700;
        margin: 0 0 4px 0;
        color: #1a1a1a;
    }
    .ss-mb-text p {
        font-size: 14px;
        color: #666;
        margin: 0;
    }
    .ss-mb-btn {
        flex-shrink: 0;
        min-width: 200px;
    }

    /* OR Separator */
    .ss-or-separator {
        position: relative;
        text-align: center;
        margin-top: 30px;
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .ss-or-separator::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: #f0f0f0;
        z-index: 1;
    }
    .ss-or-text {
        position: relative;
        background: #fff;
        color: #aaa;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        z-index: 2;
        border: 1px solid #f0f0f0;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* letter-spacing: 0.5px; */
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }

    @media (max-width: 991px) {
        .ss-meeting-box {
            flex-direction: column;
            text-align: center;
            padding: 30px 20px;
        }
        .ss-mb-btn {
            width: 100%;
        }
        .ss-mb-btn .btn {
            justify-content: center;
        }
    }

    @media (max-width: 767px) {
        .ss-card {
            padding: 20px;
            margin-bottom: 20px;
            height: unset;
        }
        .ss-meeting-row {
            margin-top: 0px;
        }
        .sales-support-section .row {
            margin-right: -15px;
            margin-left: -15px;
        }
    }

    .contact-wrap {
        box-shadow: 0 15px 50px rgba(0,0,0,0.08);
        background-color: #ffffff;
        border-radius: 0px;
        /* overflow: hidden; */ 
    }

    .contact-grid {
        display: flex;
        flex-wrap: wrap;
        border-radius: 15px;
        overflow: hidden;
    }

    .contact-grid .contact-info-col {
        width: 350px;
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 40px 30px;
    }
    
    /* Wave Pattern */
    /* .contact-info-col::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 120px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
        background-size: cover;
        pointer-events: none;
    } */
    .contact-form-col {
        padding: 40px;
    }
    .contact-grid .contact-form-col {
        width: calc(100% - 350px);
    }

    .contact-form-col h2 {
        font-size: 25px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 8px;
    }
    .contact-form-col p.subtitle {
        font-size: 15px;
        color: #777;
        margin-bottom: 35px;
    }
    .accent-line {
        width: 40px;
        height: 3px;
        background: var(--primary-color);
        margin-bottom: 25px;
        border-radius: 2px;
    }
    .accent-line.white {
        background: rgba(255,255,255,0.4);
    }

    .contact-form-col label {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .contact-form-col .form-control {
        border: 1px solid #e1e1e1;
        border-radius: 8px;
        padding: 6px 15px;
        font-size: 16px;
        /* background: #fcfcfc; */
        transition: 0.3s;
    }
    .contact-form-col .form-control:focus {
        border-color: var(--primary-color);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(233, 86, 68, 0.05);
    }

    /* Mobile Input Prefix Perfected */
    .icon-input-group {
        position: relative;
        display: flex;
        align-items: stretch;
    }
    .icon-input-group .text {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 700;
        color: #555;
        border-right: 1px solid #e5e5e5;
        pointer-events: none;
        z-index: 5;
    }
    .icon-input-group .form-control {
        padding-left: 65px !important;
        width: 100%;
    }

    .contact-info-col h3 {
        font-size: 25px;
        color: #fff;
        margin-bottom: 10px;
    }

    .info-item {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 25px;
    }
    .info-icon-circle {
        width: 44px;
        height: 44px;
        background: #fff;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: var(--primary-color);
        font-size: 18px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .info-icon-circle svg {
        width: 22px;
        height: 22px;
    }
    .info-content {
        color: #fff;
        font-size: 18px;
        line-height: 1.5;
       
    }
    .info-content a {
        color: #fff;
        text-decoration: none;
    }
    .info-content a:hover {
        text-decoration: underline;
    }

    .info-section-title {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        margin: 20px 0 20px 0;
        margin-top: auto;
    }

    .social-links-wrap {
        display: flex;
        align-items: center;
        gap: 15px;
        line-height: 1;
    }
    .social-icon-round {
        width: 44px;
        height: 44px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 18px;
        line-height: 0;
        transition: 0.3s;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .social-icon-round i {
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .social-icon-round:hover {
        background: #fff;
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    /* Dropdown Arrow Perfected (Animated & Stable) */
    .contact-form-col .form-group:has(select[name="category_id"]) {
        position: relative;
    }
    .contact-form-col select[name="category_id"] {
        appearance: none !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        background-image: none !important;
        padding-right: 50px !important;
    }
    .contact-form-col .form-group:has(select[name="category_id"])::after {
        content: "";
        position: absolute;
        right: 20px;
        bottom: 17px; /* Positioned using bottom as requested */
        width: 16px;
        height: 16px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e95644' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        pointer-events: none;
        transition: transform 0.3s ease;
        transform-origin: center center ;
        transform: translate(0, 0) rotate(0deg); /* Rock-solid base state */
        z-index: 5;
    }
    .contact-form-col .form-group:has(select[name="category_id"]:focus)::after {
        transform: translate(0, 0) rotate(180deg);
    }

    @media (max-width: 1199px) {
        .contact-form-col {
            padding: 40px;
        }
    }

    @media (max-width: 991px) {
        .contact-grid .contact-info-col, 
        .contact-grid .contact-form-col {
            width: 100%;
        }
        .contact-info-col::after {
            display: none;
        }
    }

    @media (max-width: 575px) {
        .contact-form-col {
            padding: 30px 20px;
        }
        .contact-form-col h2 {
            font-size: 26px;
        }
        .contact-info-col {
            padding: 40px 25px;
        }
    }
/* Contact Us E */

/* About Us S */
    .about-main .content-block {
        padding: 0 30px;
    }

    .about-main .content-block ul li {
        position: relative;
        padding-left: 20px;
    }

    .about-main .content-block ul li::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--primary-color);
        opacity: 0.8;
        position: absolute;
        top: 7px;
        left: 0;
    }

    .about-main .content-block ul li+li {
        margin-top: 15px;
    }

    .counter-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
    }

    .counter-block .number {
        font-size: 40px;
        font-weight: 700;
    }

    .counter-block .info {
        font-size: 30px;
        font-weight: 500;
    }

    @media (max-width: 991.98px) {
        .about-main .content-block {
            padding: 30px 0 0;
        }

        .counter-block .number {
            font-size: 30px;
        }

        .counter-block .info {
            font-size: 20px;
            line-height: normal;
        }
    }

    @media (max-width: 767.98px) {
        .counter-main .row {
            gap: 30px;
        }
    }
/* About Us E */

/* Why Fast2SMS S */
    .why-fast2sms-grid-wrap .feature-block {
        height: calc(100% - 30px);
    }

    .why-fast2sms-grid-wrap .feature-block .title {
        font-size: 22px;
        line-height: 1.4;
    }
/* Why Fast2SMS E */

/* SMS S */
    .image-grid-main .grid-content-block {
        max-width: 550px;
    }

    .image-grid-main .grid-content-block .title-sc {
        text-align: left;
        align-items: flex-start;
    }

    .image-grid-main .grid-image-block {
        text-align: center;
    }

    .image-grid-main .grid-image-block img {
        margin: auto;
    }

    .sms-counter-block {
        padding: 15px;
    }

    .sms-counter-block .sms-counter-number {
        font-size: 48px;
        font-weight: 700;
        color: var(--primary-color);
    }

    .sms-counter-block .sms-counter-info {
        font-size: 18px;
        font-weight: 500;
    }

    @media (max-width: 1366.98px) {
        .sms-counter-block .sms-counter-number {
            font-size: 38px;
        }
    }

    @media (max-width: 767.98px) {
        .image-grid-main .grid-content-block {
            margin-bottom: 30px;
        }

        .image-grid-main .grid-content-block .title-sc {
            text-align: center;
            align-items: center;
            margin-bottom: 30px;
        }

        .image-grid-main .grid-content-block .btn-sc {
            text-align: center;
        }

        .row.row-reverse-mv {
            flex-direction: column-reverse;
        }
    }
/* SMS E */

/* Explore Products S */
    .explore-products-grid {
        display: flex;
        flex-wrap: wrap;
        max-width: 700px;
        margin: auto;
    }

    .explore-products-grid .ep-col {
        width: 33.33%;
        padding: 10px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        font-size: 18px;
        font-weight: 500;
    }

    .explore-products-grid .ep-col .title {
        color: var(--content-color);
        transition: 0.3s;
    }

    .explore-products-grid .ep-col:hover .title {
        color: var(--primary-color);
    }

    .explore-products-grid .ep-col img {
        width: 50px;
        margin-bottom: 5px;
    }

    @media (max-width: 767.98px) {
        .explore-products-grid .ep-col .title {
            font-size: 15px;
        }

        .explore-products-grid .ep-col img {
            width: 30px;
        }
    }
/* Explore Products E */

/* Pricing S */
    .tabcontent {
        display: block;
        -webkit-animation: fadeEffect 1s;
        animation: fadeEffect 1s;
    }

    @-webkit-keyframes fadeEffect {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeEffect {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .pricing-title {
        display: block;
        font-weight: 500;
        font-size: 18px;
        margin-bottom: 30px;
    }

    .pricing-sidebar ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .pricing-sidebar ul>li {
        cursor: pointer;
    }

    .pricing-sidebar .tablinks {
        padding: 15px 16px 15px 50px;
        font-size: 16px;
        background-color: transparent;
        display: block;
    }

    .pricing-sidebar .tablinks.active {
        background-color: rgba(255, 233, 230, 1);
        border-color: rgba(255, 233, 230, 1);
    }

    .pricing-sidebar .tablinks .icon {
        width: 25px;
        height: 25px;
    }

    .pricing-sidebar .tablinks .icon img {
        width: 100%;
    }

    @media (max-width: 767.98px) {
        .pricing-sidebar {
            margin-bottom: 30px;
        }

        .pricing-title {
            margin-bottom: 15px;
        }

        .pricing-sidebar ul {
            overflow-x: auto;
            flex-direction: row;
        }

        .pricing-sidebar .tablinks {
            width: max-content;
            padding: 10px 16px 10px 35px;
            font-size: 15px;
        }

        .pricing-sidebar .tablinks .icon {
            width: 20px;
            height: 20px;
            left: 10px;
        }
    }
/* Pricing E */