.top_line {
    display: block;
    width: 100%;
    height: 6px;
    background-color: var(--primary-color);
}

.header-style-two .header-upper .logo-outer {
    padding: 5px 0px 0px;
    max-width: 315px;
}

.info-box .icon img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    /* keeps image ratio */
}

.about-section .left-column .text {
    font-size: 18px;
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.btn-icon {
    width: 55px;
    height: 55px;
    margin-left: -60px;
    border: 5px solid #001e57;
    border-radius: 27px;
}

.text-block h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
}

.text-block h6 {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    color: #666;
}

.btn-box,
.theme-btn.btn-style-one {
    overflow: visible;
    /* allow child to overflow */
}

.header-style-two .outer-box .btn-box .theme-btn {
    padding: 8px 30px;
    border-radius: 0px;
}

.outer-box h2,
.outer-box h6 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.carousel-control-next,
.carousel-control-prev {
    background-color: transparent !important;
}

.ts_card_main .swiper {
    padding: 60px 7px 150px
}

.swiper-pagination-bullet {
    width: 9px;
    height: 9px
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-text-color)
}

.solutions_sidebar {
    border: 1px solid var(--primary-text-color);
    border-radius: 20px;
    background-color: var(--white-color);
    padding: 12px 0;
    margin-top: 30px
}

.solutions_sidebar h3 {
    font-family: var(--primary-font);
    font-weight: 900;
    font-size: 2.4rem;
    line-height: 28px;
    margin-bottom: 12px
}

.solutions_sidebar h2 {
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 30px;
    padding: 12px 0;
    margin-right: 12px;
    color: var(--white-color);
    background: linear-gradient(268.79deg, #f00064 12.79%, #8e003b 137.97%);
    border-radius: 0 20px 20px 0;
    -webkit-border-radius: 0 20px 20px 0;
    -moz-border-radius: 0 20px 20px 0;
    -ms-border-radius: 0 20px 20px 0;
    -o-border-radius: 0 20px 20px 0
}

.single_solution {
    display: flex;
    align-items: center;
    grid-gap: 12px;
    gap: 12px;
    padding: 8px 20px;
    margin: 12px;
    background-color: #fff9de;
    border: 1px solid rgba(197, 0, 56, .2);
    border-radius: 200px
}

.single_solution a {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 24px
}

.single_solution:hover {
    background: linear-gradient(268.79deg, #f00064 12.79%, #8e003b 137.97%)
}

.single_solution:hover img:first-child,
.single_solution img:last-child {
    display: none
}

.single_solution:hover img:last-child {
    display: unset
}

.single_solution:hover a {
    color: var(--white-color)
}

.solution_card_inner {
    background: linear-gradient(180deg, #f9e84b, #ffa806);
    box-shadow: 5px 4px 4px rgba(0, 0, 0, .11);
    padding: 0 20px;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.solution_card_inner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 22px);
    height: calc(100% - 22px);
    border: 2px solid #fff;
    border-radius: 20px;
    z-index: -1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px
}

.sc_call_btn {
    display: inline-block;
    margin-top: -20px;
    margin-bottom: 15px
}

.sc_call_btn>div {
    background: url(../images/sc_call_bg.svg) no-repeat 50%;
    background-size: cover;
    padding: 12px;
    position: relative
}

.sc_call_btn>div:after {
    width: 100%;
    height: 100%;
    background: url(../images/sc_call2.svg) no-repeat 50%
}

.sc_call_btn>div:after,
.sc_call_btn>div:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0
}

.sc_call_btn>div:before {
    margin-left: -6px;
    width: calc(100% + 12px);
    height: 20px;
    background: #8e003b;
    z-index: -1;
    -webkit-clip-path: polygon(6% 0, 94% 0, 100% 100%, 0 100%);
    clip-path: polygon(6% 0, 94% 0, 100% 100%, 0 100%)
}

.sc_call_btn>div img {
    width: 55px;
    height: 55px;
    animation: rotation 10s linear infinite;
    -webkit-animation: rotation 10s linear infinite
}

@-webkit-keyframes rotation {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0)
    }

    to {
        transform: rotate(1turn);
        -webkit-transform: rotate(1turn);
        -moz-transform: rotate(1turn);
        -ms-transform: rotate(1turn);
        -o-transform: rotate(1turn)
    }
}

@keyframes rotation {
    0% {
        transform: rotate(0);
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0)
    }

    to {
        transform: rotate(1turn);
        -webkit-transform: rotate(1turn);
        -moz-transform: rotate(1turn);
        -ms-transform: rotate(1turn);
        -o-transform: rotate(1turn)
    }
}

.sc_content h2 {
    font-family: var(--primary-font);
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 30px;
    padding: 6px;
    color: var(--primary-text-color);
    background-color: var(--white-color);
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%)
}

.sc_content p {
    margin: 10px;
    color: var(--black-color);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.sc_content a {
    display: inline-block;
    font-family: var(--secondary-font);
    font-weight: 300;
    font-size: 18px;
    line-height: 23px;
    padding: 8px 20px;
    margin: 20px auto;
    width: fit-content;
    display: block;
    text-align: center;
    color: var(--white-color);
    background-color: var(--black-color);
    border-radius: 200px;
    -webkit-border-radius: 200px;
    -moz-border-radius: 200px;
    -ms-border-radius: 200px;
    -o-border-radius: 200px;
}

.sc_content a:hover {
    color: var(--yellow-color)
}

.solution_card_inner>img {
    margin-bottom: -108px;
    transition: all .5s ease;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease
}

.solution_card_inner:hover>img {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05)
}

.sc_content h2 {
    font-family: var(--primary-font);
    font-weight: 900;
    font-size: 26px;
    line-height: 30px;
    padding: 8px;
    color: var(--primary-color);
    background-color: #fff;
    -webkit-clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    clip-path: polygon(0 0, 95% 0, 100% 100%, 5% 100%);
    text-align: center;

}

.ts_inner_right {
    text-align: center;
    margin-top: -67%;
}

.ts_inner_right_div img {
    width: 100%
}

.solutions_sidebar {
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    background-color: var(--white-color);
    padding: 12px 0;
    margin-top: 30px
}

.solutions_sidebar h3 {
    font-family: var(--primary-font);
    font-weight: 900;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
    color: var(--black-color);
}

.solutions_sidebar h2 {
    font-family: var(--secondary-font);
    font-weight: 600;
    font-size: 26px;
    line-height: 30px;
    padding: 12px 0;
    margin-right: 12px;
    color: var(--white-color);
    background: linear-gradient(268.79deg, #f00064 12.79%, #8e003b 137.97%);
    border-radius: 0 20px 20px 0;
    -webkit-border-radius: 0 20px 20px 0;
    -moz-border-radius: 0 20px 20px 0;
    -ms-border-radius: 0 20px 20px 0;
    -o-border-radius: 0 20px 20px 0
}

.single_solution {
    display: flex;
    align-items: center;
    grid-gap: 12px;
    gap: 12px;
    padding: 8px 20px;
    margin: 12px;
    background-color: #fff9de;
    border: 1px solid rgba(197, 0, 56, .2);
    border-radius: 200px
}

.single_solution a {
    font-family: var(--secondary-font);
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--black-color);
}

.single_solution:hover {
    background: linear-gradient(268.79deg, #f00064 12.79%, #8e003b 137.97%)
}

.single_solution:hover img:first-child,
.single_solution img:last-child {
    display: none
}

.single_solution:hover img:last-child {
    display: unset
}

.single_solution:hover a {
    color: var(--white-color)
}

.solution_card_inner {
    background: linear-gradient(180deg, #f9e84b, #ffa806);
    box-shadow: 5px 4px 4px rgba(0, 0, 0, .11);
    padding: 0 20px;
    position: relative;
    z-index: 1;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.solution_card_inner:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: calc(100% - 22px);
    height: calc(100% - 22px);
    border: 2px solid #fff;
    border-radius: 20px;
    z-index: -1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px
}

.trusted_solutions {
    padding: 0 0 170px;
    background: url(../images/ts_bg.png) no-repeat bottom;
    background-size: 100%;
}

.about-section.trusted_solutions .sec-title h2 {
    font-family: var(--primary-font);
    font-weight: 900;
    font-size: 48px;
    line-height: 55px;
    color: var(--primary-color);
}

.read_more {
    font-weight: 400;
    color: var(--primary-color);
}

.theme-heading-style {
    font-family: var(--primary-font);
    font-weight: 900;
    font-size: 48px;
    line-height: 55px;
    color: var(--primary-color) !important;
}

.about-section.trusted_solutions .sec-title .title {
    display: inline-block;
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 23px;
    line-height: 30px;
    padding: 12px 40px;
    margin-bottom: 7px;
    background: linear-gradient(180deg, #f9e84b 16.13%, #ffa907 99.99%, #ffa806);
    -webkit-clip-path: polygon(0 14%, 100% 0, 90% 100%, 0 100%);
    clip-path: polygon(0 14%, 100% 0, 90% 100%, 0 100%);
    color: black;
}

.text {
    font-size: 18px;
}

.ka_left {
    position: relative;
    ;
}

.shivji-wrapper {
    position: relative;
    display: inline-block;
}

.shivji {
    position: relative;
    z-index: 2;
    /* Keep this on top */
}

.shivji_chakkar {
    position: absolute;
    top: 30%;
    left: 53%;
    width: 120%;
    /* Adjust size if needed */
    transform: translate(-50%, -50%);
    z-index: 1;
    /* Behind the shivji */
    animation: rotateChakkar 10s linear infinite;
}

@keyframes rotateChakkar {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.theme-sub-heading {
    display: inline-block;
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 23px;
    line-height: 30px;
    padding: 12px 40px;
    margin-bottom: 7px;
    background: linear-gradient(180deg, #f9e84b 16.13%, #ffa907 99.99%, #ffa806);
    -webkit-clip-path: polygon(0 14%, 100% 0, 90% 100%, 0 100%);
    clip-path: polygon(0 14%, 100% 0, 90% 100%, 0 100%);
    color: black !important;
}

.services-block-three .inner-box {
    border: 2px solid #f00064;
    padding: 20px;
    border-radius: 25px;
    background-color: bisque;
}

.services-block-three .inner-box .image {
    border-radius: 10px;
}

.services-section-three {
    padding: 0 0 170px;
    background: url(../images/hs_bg.png) no-repeat bottom;
    background-size: 100%;
}

.form01 .form-control {
    margin-bottom: 15px;
    border: none;
    padding: 10px;
}

.form-heading.theme-heading-style {
    font-size: 28px !important;
}

.yellowbg {
    text-align: center;
    padding: 25px 0;
    background: linear-gradient(262.65deg, #f9e84b -2.8%, #ffa806 101.97%);
    position: relative;
}

.what-we-offer {
    padding: 0 0 60px;
    background: url(../images/background/ka_bg.png) no-repeat bottom;
    background-size: 100%;
}

.sec-title .title {
    display: inline-block;
    font-family: var(--secondary-font);
    font-weight: 500;
    font-size: 23px;
    line-height: 30px;
    padding: 12px 40px;
    margin-bottom: 7px;
    background: linear-gradient(180deg, #f9e84b 16.13%, #ffa907 99.99%, #ffa806);
    -webkit-clip-path: polygon(0 14%, 100% 0, 90% 100%, 0 100%);
    clip-path: polygon(0 14%, 100% 0, 90% 100%, 0 100%);
    color: black !important;
}

.testimonial-block-one .upper:before {
    border-top: 12px solid #ffb81f;
}

.testimonial-block-one .upper {
    background: #ffb81f;
}

.testimonial-block-one .upper .text {
    color: #000000;
}

.sec-title h2 {
    color: var(--primary-color);
}

.outer-box h6 {
    color: #ffb81f;
}

.info-box .text {
    margin-left: 40px;
}

.info-box .text strong {
    font-family: var(--primary-font);
    color: var(--primary-color) !important;
}

.floating-icon {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 50px;
    font-size: 35px;
    color: white;
    padding: 17px;
    border-radius: 50%;
    z-index: 9999;
    animation: ripple 1.5s infinite ease-out;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: bottom 0.3s ease;
}

.call-icon {
    left: 20px;
    background-color: #0d6efd;
}

.whatsapp-icon {
    right: 20px;
    background-color: #25D366;
}

.call-icon:hover {
    color: #25D366;
}

.whatsapp-icon:hover {
    color: #0d6efd;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }

    .logo-outer {
        max-width: 100% !important;
    }

    .logo-outer .logo {
        max-width: 250px;
        margin: 0 auto;
    }

    .ts_inner_right {
        margin-top: 0;
    }
    .removemt {
        margin-top: 100px;
    }
}
.main-footer {
    padding: 0 0 60px;
    background: url(../images/footer_bg.jpg) no-repeat bottom;
    background-size: cover;
}
.main-footer a {
    color: white;
}
.main-footer a:hover {
    color: #f9e84b !important;
}
.about-section-two {
    margin-bottom: 120px;
}
.list-style-one {
    margin-bottom: 30px;
}
.main-footer:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    background-image: -ms-linear-gradient(left, rgba(0,18,52,0.95) 0%, rgba(255,255,255,0) 100%);
    background-image: -moz-linear-gradient(left, rgba(0,18,52,0.95) 0%, rgba(255,255,255,0) 100%);
    background-image: -o-linear-gradient(left, rgba(0,18,52,0.95) 0%, rgba(255,255,255,0) 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(0, 18, 52, 0.95)), color-stop(100, rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 18, 52, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(to right, rgba(0, 18, 52, 0.95) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}
.sidebar-page-container {
    background: url(../images/background/ka_bg.png) no-repeat bottom;
    background-size: cover;
    background-position: bottom;
}
.support-widget .widget-content {
    background-color:transparent;
}
.support-widget .widget-content:before
 {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.70);
}
.services-detail .inner-box .image img {
    position: relative;
    border-radius: 20px;
}
.contact-form .form-control {
    border: 1px solid #c50038;
}
.contact-widget i {
    margin-right: 2px;
    color: #ffffff; /* Highlight color */
}
.contact-widget .number a {
    font-size: 18px;
    font-weight: bold;
}
.contact-info-list a {
    color: #fff;
}
.form-column .btn-dark {
    color: #fff;
    background-color: #c50038;
    border-color: #91042c;
}
.menu a.active {
    color: #f00064; /* highlight color */
    font-weight: bold;
}
.menu li.active > a {
    color: #f00064;
}
.news-widget-block img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    outline: 1px solid #ffeb3b36;
    outline-offset: 5px;
}

/* Make container vertically scrollable and limit height */
.vertical-scroll {
  max-height: 500px;        /* change as needed */
  overflow-y: auto;
  overflow-x: hidden;       /* prevent horizontal scroll */
  padding-right: 8px;       /* prevents content hiding under scrollbar */
  -ms-overflow-style: none; /* IE/Edge legacy: hide default scrollbar */
  scrollbar-width: thin;    /* Firefox: use thin scrollbar */
  scrollbar-color: rgba(0,0,0,.4) transparent; /* Firefox: thumb and track */
}

/* WebKit browsers (Chrome, Safari, Edge Chromium) */
.vertical-scroll::-webkit-scrollbar {
  width: 8px;               /* narrow width */
}
.vertical-scroll::-webkit-scrollbar-track {
  background: transparent;  /* track background */
  border-radius: 8px;
}
.vertical-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.35); /* thumb color */
  border-radius: 8px;
  border: 2px solid transparent;      /* gives a bit of breathing room */
  background-clip: padding-box;
}
.vertical-scroll::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0,0,0,0.55);
}

/* Optional: lighter theme variant you can toggle with a class */
.vertical-scroll.light {
  scrollbar-color: rgba(0,0,0,0.25) transparent;
}
.vertical-scroll.light::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.25);
}
.accordion-box .block .acc-btn {
    background-color: #FFEB3B;
    border-radius: 10px;
}
.faq-section .image-column .image img {
    right: 36px;
    top: 45px;
}

.why_you_choose {
    margin-top: 10px;
    position: relative;
}
.wyc_inner {
    display: grid;
    grid-template-columns: 42.7% auto;
    gap: 30px;
}
.wyc_info {

    text-align: center;
    margin-bottom: 70px;
    display: flex;
    justify-content: space-around;
}
.wyc_info_inner {
    position: relative;
    display: inline-block;
    text-align: center;
    margin: 70px 0px 0px;
}
.wyc_info_inner::after, .wyc_info_inner::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    background-color: var(--text-color);
    margin: auto;
}
.wyc_info_inner::before {
    top: -15px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
}
.wyc_info_inner > div {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 100px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}
.wyc_info_inner > div h2 {
    font-family: var(--primary-font);
    font-weight: 900;
    font-size: 18px;
    line-height: 23px;
    color: #000;
}
.wyc_info_inner > div h2 span {
    font-family: var(--secondary-font);
}
.wyc_info_inner > div p {
    padding: 10px 30px;
}
.wyc_info_inner > img:last-child {
    position: absolute;
    left: -0.5px;
    bottom: -50px;
    right: 0px;
    top: 0px;
    z-index: -1;
    margin: auto;
    animation: 15s linear 0s infinite normal none running rotation;
}
.wyc_info_inner::after {
    top: -110px;
    width: 218px;
    height: 1px;
    transform: rotate(90deg);
}
.wyc_info_inner::after, .wyc_info_inner::before {
    content: "";
    position: absolute;
    left: 0px;
    right: 0px;
    background-color: #000000;
    margin: auto;
}
@media (max-width: 991px) {
    .wyc_info {
        flex-wrap: wrap;
    }
}
@media (max-width: 991px) {
    .wyc_info_inner::after {
        top: -90px;
        width: calc(158px);
        z-index: -1;
    }
}
@media (max-width: 767px) {
    .wyc_info_inner::after {
        display: none;
    }
    .wyc_trident {
        display: none;
    }
    .top_line {
        height: 60px;
    }
}
.faq-section {
    padding: 75px 0 85px;
}
/* Hide by default */
.mobile-call {
  display: none;
  align-items: center;
  gap: 8px;
  justify-content: center;
  padding: 10px;
  background: transparent;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-call {
    display: flex;
  }
}

/* Blinking text */
.blink-text {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  animation: blink 1.5s infinite;
  text-decoration: none;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

/* Optional: resize icon */
.mobile-call img {
  width: 40px;
  height: 40px;
}

.damrooblock{
    position: relative;
    padding: 24px;
    border-radius: 10px;
    --icon-size: 111px;
    --pad: -45px;
}

/* Top-left icon */
.damrooblock::before{
  content: "";
  position: absolute;
  top: var(--pad);
  left: var(--pad);
  width: var(--icon-size);
  height: var(--icon-size);
  background: url("../images/damroo.png") no-repeat center/contain;
  pointer-events: none;        /* ignore clicks if purely decorative */
}

/* Bottom-right icon */
.damrooblock::after{
  content: "";
  position: absolute;
  right: var(--pad);
  bottom: var(--pad);
  width: var(--icon-size);
  height: var(--icon-size);
  background: url("../images/damroo.png") no-repeat center/contain;
  pointer-events: none;
}

.fixed-header .sticky-header .logo {
    width: 143px;
}
.footer-widget.about-widget .logo{
    width: 270px;
}

.container.ad {
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;
  gap: 15px;
}

.container.ad img {
  max-width: 100%;
  height: auto;
}

/* Mobile: stack vertically */
@media (max-width: 768px) {
  .container.ad {
    flex-direction: column;  /* stack one by one */
    text-align: center;
  }

  .container.ad img {
    margin: 10px auto;       /* center align */
    display: block;
    width: 90%;              /* optional: shrink a bit for mobile */
  }
  .faq-section .image-column .image img {
    right: 20px;
    top: 45px;
}
}













.otherservices-section{
  padding: 0;
}
.otherservices-section1{
  padding: 100px 0 50px;
  padding-bottom: 0;
}
.bg-serices{
  position: absolute;
  left: 0;
  right: 0;
  top: -130px;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.otherservices-section1 .ourservices-head p{
  color: #fff;
}
.otherservices-section1 .ourservices-head strong{
  color: #fff;
}
.other-sevices{
  padding: 40px 0 0 0;
}
.other-sevices1{
  padding: 10px;
}
.other-sevices2{
  padding: 0;
  text-align: center;
}
.other-services3 {padding: 0;text-align: center;}
.other-services3 img{
  width: 88%;
  padding: 0;
}
.other-services4{
  padding: 8px 15px;
  text-align: center;
}
.other-services4 strong{
  display: block;
  font-size: 27px;
  text-transform: capitalize;
  color: #181818;
  font-family: 'Elsie Swash Caps', cursive;
}
.other-services4 p{
    font-size: 16px;
    color: #585858;
    margin: 0;
    padding: 7px 0 0 0;
    line-height: 22px;
}
.other-services4 span{
    width: 80px;
    height: 80px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg,#f9e84b,#ffa806);
    border-radius: 50%;
}
.other-services4 a{
  display: block;
  margin: 38px 0 0 0;
}
.other-services4 span svg{
  font-size: 36px;
  font-weight: 900;
  color: var(--text-color);
}
.other-services4 span svg:hover{
  animation: rotation 15s linear infinite;
}
.bg-serv{
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  filter: drop-shadow(-1px 6px 3px rgba(50,50,0,.25));
  z-index: -1;
  margin: 49% auto auto;
}
.owl-theme .owl-controls .owl-buttons div {
    background: transparent;
    opacity: 1;
    margin: 0;
    display: inline-block;
    padding: 0 9px 0 0px;
}


.ourservices-head span {
    border-radius: 20px;
    padding: 5px 23px 3px;
    color: #000000;
    font-size: 16px;
    text-transform: uppercase;
    background: #ffd982;
    display: inline-block;
    margin: 0px 0 10px 0;
    background: linear-gradient(262.65deg, #f9e84b -2.8%, #ffa806 101.97%);
    font-weight: 500;
}
.ourservices-head {
    text-align: center;
    padding: 0;
}
.otherservices-section1 .ourservices-head strong {
    color: #fff;
}
.ourservices-head strong {
    font-size: 43px;
    font-weight: 600;
    font-family: 'Elsie Swash Caps', cursive;
    display: block;
    text-transform: capitalize;
    line-height: 63px;
}
.ourservices-head p {
    color: #6d6d6d;
    font-size: 15px;
    line-height: 26px;
    margin: 0;
    font-weight: 400;
}

.otherservices-section1 .ourservices-head p {
    color: #fff;
}

.owl-theme .owl-controls .owl-buttons div {
    background: transparent;
    opacity: 1;
    margin: 0;
    display: inline-block;
    padding: 0 9px 0 0px;
}
.owl-theme .owl-controls {
    margin: 30px 0 0;
}
.other-sevices {
    padding: 40px 0 0 0;
}
.owl-theme .owl-controls .owl-buttons div {
    background: transparent;
    opacity: 1;
    margin: 0;
    display: inline-block;
    padding: 0 9px 0 0px;
}

.owl-theme .owl-controls {
    margin-top: 10px;
    text-align: center;
}
.owl-nav {
  display: flex;
  justify-content: center; /* centers horizontally */
  align-items: center;
  gap: 20px; /* space between images */
  margin-top: 15px; /* space below carousel */
}

.owl-nav .owl-prev img,
.owl-nav .owl-next img {
  width: 55px;  /* adjust size if needed */
  height: auto;
  cursor: pointer;
}
@media (max-width: 767px) {
    .bg-serv {
        display: none !important;
    }
    .other-sevices1 {
        background-color: #fff;
    }
}


.faq-section .image-column .image {
    padding:10px;
    height: auto;
}
.faq-section .image-column .image img {
    right: auto;
    top: auto;
    padding: 10px;
    position: relative;
    margin: 0 auto;
    display: block;
}














