@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Michroma&family=Play:wght@400;700&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* DM Sans */
.dm-sans-regular {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.dm-sans-medium {
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.dm-sans-bold {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* Play */
.play-regular {
    font-family: "Play", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.play-bold {
    font-family: "Play", sans-serif;
    font-weight: 700;
    font-style: normal;
}

/* Michroma */
.michroma-regular {
    font-family: "Michroma", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Apply DM Sans to body and text elements */
body,
p,
span,
li {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    /* Regular */
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6,
a {
    font-family: "Play", sans-serif;
    /* Bold */
    font-style: normal;
}

body {
    margin: 0px 0px;
    padding: 0px 0px;
    list-style: none;
    overflow-x: hidden;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgb(0 86 183) !important;
}

/*** 
====================================================================
Main Header
====================================================================

***/
/* Base styling for main navigation */
/* Base styling for main navigation */

a:hover,
a:focus,
a:visited {
    text-decoration: none;
    outline: none;
}

a {
    text-decoration: none !important;
    cursor: pointer;
    color: #1c73ea;
}

button {
    outline: none !important;
    cursor: pointer;
}

p,
.text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #292929;
    margin: 0;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.main-menu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-menu .navigation {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu .navigation>li {
    position: relative;

}

/* Sub-menu initially hidden */
.main-menu .navigation>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100%;
    width: 220px;
    z-index: 100;
    background-color: #ffffff;
    padding: 0px 0;
    transform: translateY(30px);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: 500ms ease;
}

/* Show sub-menu on hover */
.main-menu .navigation>li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0ms;
    /* Visibility activates immediately */
}

/* Sub-menu items styling */
.main-menu .navigation>li>ul>li {
    list-style: none;
    position: relative;
}

/* Styling for all sub-menu links */
.main-menu .navigation>li>ul>li>a,
.main-menu .navigation>li>ul>li>ul>li>a,
.main-menu .navigation>li>ul>li>ul>li>ul>li>a {
    text-transform: uppercase;
    position: relative;
    padding: 8px 13px;
    line-height: 29px;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    text-align: left;
    margin: 0;
    background-color: #121111;
    /* Ensure a consistent background */
    display: block;
    border-bottom: 1px solid #e5e5e5b3 !important;
    transition: color 200ms ease, background-color 200ms ease;
    /* Apply specific transition */
    border-right: 1px solid #ffffff75;
}

.main-menu .navigation>li>ul>li>a:hover,
.main-menu .navigation>li>ul>li>ul>li>a:hover,
.main-menu .navigation>li>ul>li>ul>li>ul>li>a:hover {
    color: #ffffff;
    background-color: #c31200;
    /* Slight change for hover background */
}

/* Nested sub-menu transitions */
.main-menu .navigation>li>ul>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 20%;
    width: 320px;
    z-index: 100;
    background-color: #ffffff;
    padding: 0px 0;
    transform: translateY(30px);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: 500ms ease;
}

.main-menu .navigation>li>ul>li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Smooth transition for deeper nested menus */
.main-menu .navigation>li>ul>li>ul>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 20%;
    background-color: #ffffff;
    padding: 0px 0;
    transform: translateY(30px);
    transition: 500ms ease;
    width: 270px;
    border-right: 1px solid #fff;
}

.main-menu .navigation>li>ul>li>ul>li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.main-header .logo {
    position: relative;
}

.main-header .logo img {
    width: 100%;
    /* padding: 10px; */
}

.main-header .logo {
    width: 205px;
}

.main-header .main-box {
    position: relative;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .main-box .nav-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.main-menu {
    position: relative;
    float: left;
}

.main-menu .navbar-header {
    display: none;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    margin: 0px;
}

.main-menu .navigation>li {
    position: relative;
    float: left;
    padding: 30px 0px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;

}

.main-menu .navigation>li:last-child {
    margin-right: 0;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    opacity: 1;
    color: #c40404;
    font-size: 17px;
    line-height: 20px;
    padding: 0;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    text-transform: uppercase;
}

.main-menu .navigation>li>a:before {
    position: absolute;
    left: 50%;
    bottom: -4px;
    height: 2px;
    width: 0%;
    background: #000066;
    content: "";
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:hover>a:before,
.main-menu .navigation>li.current>a:before {
    left: 0;
    width: 75%;
}

.main-menu .navigation>li>ul.from-right {
    left: auto;
    right: 0px;
}

.dropdown ul li:last-child a {
    /* border-bottom: none !important; */
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 9px;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
    /* transform: rotate(180deg); */
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 9px;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
    /* transform: rotate(180deg); */
}

.dropdown2a>a:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f105";
    position: absolute;
    right: 9px;
    top: 11px;
    display: block;
    line-height: 24px;
    font-size: 16px;
    font-weight: 900;
    z-index: 5;
    transform: rotate(180deg);
}

.dropdown a i {
    font-size: 13px;
}

.dropdown2a li {
    bottom: 2px solid #bebdbd !important;
}

.dropdown2a:hover ul {
    display: block;
}

.is-sticky {
    position: fixed !important;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    backdrop-filter: blur(7px);
    animation: slideDown 0.45s ease-out;
    background-color: #fff !important;
    width: 100%;
    top: 0;
    border-radius: 0px;
    z-index: 1000;
}

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

    to {
        transform: translateY(0);
    }
}

.main-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 8px;
    width: 34px;
    height: 30px;
    border: 1px solid #ffffff;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.main-header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 40px;
}

.main-header .outer-box .theme-btn {
    display: block;
    min-width: 160px;
}

.dropdown_t ul {
    position: absolute;
    top: 0;
    right: -270px;
    width: 300px;
    background-color: #f48023;
}

.dropdown_t:hover ul {
    display: block;
}

/*** 

====================================================================
Mobile Menu
====================================================================

***/

.mobile-nav-toggler {
    position: relative;
    font-size: 24px;
    line-height: 50px;
    cursor: pointer;
    color: #ffffff;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin-right: 15px;
    display: none;
}

.mobile-menu {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    height: 100vh;
    overflow-y: scroll;
}

.mobile-menu .nav-logo {
    position: relative;
    padding: 20px 20px;
    text-align: left;
    width: 100px;
}

.mobile-menu .nav-logo img {
    max-width: 200px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: relative;
    left: 0px;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #ffffff;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 20px;
    top: 25px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    font-size: 30px;
    color: #ffffff;
    background-color: #1c73ea;
    cursor: pointer;
    z-index: 10;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.mobile-menu .close-btn:hover {
    opacity: 0.50;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    padding: 0 20px;
}

.mobile-menu .navigation>li {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.mobile-menu .navigation>li>a {
    font-weight: 500;
    border: 1px solid #eeeeee;
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: #404040;
    text-transform: capitalize;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
    color: #1c73ea;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 12px;
    line-height: 40px;
    border: 1px solid #fafafa;
    color: #222222;
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 300msease;
    -o-transition: all 300ms ease;
    transition: all 300msease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.active .fa:before {
    display: inline-block;
    position: relative;
    content: "\f068";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
    display: none;
    margin-left: 10px;
}

.mobile-nav-toggler span {
    color: #000;
}

.header-style {
    background-color: #ebebeb;
}

.header-style .main-menu .navigation>li>a {
    color: #302f2f;
    font-weight: 600;
}

.header-style .main-menu .navigation>li>a:before {
    bottom: -4px;
}

.header-style .main-menu .navigation>li>a:hover:before,
.header-style .main-menu .navigation>li.current>a:before {
    width: 25px;
}

.header-style .menu-outer {
    position: relative;
}

.header-style .outer-box .theme-btn {
    min-width: 160px;
}

.header-style .logo {
    padding: 0px 0;
}

.header-style-three {
    top: 0;
}

.header-style-three .menu-outer {
    position: relative;
    padding: 40px 0 !important;
}

.header-style-three .theme-btn {
    min-width: 160px;
}

@media only screen and (max-width: 2560px) {

    .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 26px 0px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        padding-right: 22px;
        margin-right: 12px;
    }

}

@media only screen and (max-width: 1920px) {

    .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 26px 0px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        padding-right: 22px;
        margin-right: 12px;
    }

}

@media only screen and (max-width: 1240px) {
    .dropdown {
        padding-right: 39px;
    }

    .mobile-menu-visible .mobile-menu .menu-box {
        background-color: #003667;
        height: 100vh;
        overflow-y: scroll;

    }

    .mobile-menu .navigation {
        margin-top: 40px;
    }

    .mobile-menu .navigation li:hover>a,
    .mobile-menu .navigation li.current>a {
        color: #ffffff;
    }

    .mobile-menu .navigation li>a {
        color: #fff;
    }

    .dropdown-btn span {
        color: #fff;
    }

    .mobile-nav-toggler {
        display: block;
    }

    .main-header {
        top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .20);
    }

    .main-header .outer-box,
    .main-header .nav-outer .main-menu {
        display: none;
    }

    .header-style-three .logo,
    .header-style-two .logo,
    .main-header .logo-outer .logo {
        padding: 15px 0;
    }

    .main-header .logo-outer .logo img {
        height: 40px;
    }

    .header-style-two .mobile-nav-toggler {
        color: #303030;
    }

    .header-style-two,
    .header-style-three {
        border-bottom: 0;
    }

    .header-span {
        height: 70px;
    }

    .banner-slider .slick-prev {
        z-index: 1;
    }

    .banner-slider .slick-next {
        z-index: 1;
    }

    .dropdown a i {
        display: none;
    }

    .mobile-menu .nav-logo img {
        width: 100%;
    }

    .mobile-menu .nav-logo {
        position: relative;
        padding: 20px 20px;
        text-align: left;
        width: 81%;
    }

    .mobile-menu .nav-logo img {
        height: auto;
    }

    .mobile-menu .navigation li>ul,
    .mobile-menu .navigation li>ul>li>ul {
        padding-left: 0px !important;
        margin-left: 0px !important;
    }

    .mobile-menu .navigation li>ul,
    .mobile-menu .navigation li>ul>li>ul li a {
        border: 1px solid #fff;
    }


}

@media only screen and (min-width: 768px) {

    .main-menu .navigation>li>ul,
    .main-menu .navigation>li>ul>li>ul {
        visibility: hidden;
        opacity: 0;
    }
}

@media only screen and (max-width: 1023px) {
    .mobile-nav-toggler {
        display: block;
    }

    .main-header {
        top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .20);
    }

    .main-header .outer-box,
    .main-header .nav-outer .main-menu {
        display: none;
    }

    .header-style-three .logo,
    .header-style-two .logo,
    .main-header .logo-outer .logo {
        padding: 15px 0;
    }

    .main-header .logo-outer .logo img {
        height: 40px;
    }

    .header-style-two .mobile-nav-toggler {
        color: #303030;
    }

    .header-style-two,
    .header-style-three {
        border-bottom: 0;
    }

    .header-span {
        height: 70px;
    }

}

@media (max-width:1280px) {
    .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 30px 0px;
        margin-right: 15px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }
}

/* ...............header-end.................. */
@media (max-width:1600px) {
    .ace-responsive-menu>li>a {
        padding: 20px 13px;
    }

    .about-brush {
        position: absolute;
        top: -1px;
        left: 35px;
        width: 150px;
        z-index: -1;
        opacity: 0.2 !important;
    }

}

@media (max-width:1440px) {

    .about-brush {
        position: absolute;
        top: -1px;
        left: 35px;
        width: 150px;
        z-index: -1;
        opacity: 0.2 !important;
    }

    #header-main {
        padding: 0px 90px;
    }

    .main-menu .navigation>li>a {
        font-size: 14px;
    }
}

@media (max-width:1366px) {
    .slider-style-seven.home-8 .owl-dots {
        top: 97% !important;
    }

    .header-top:before {
        width: 69px !important;
        left: 34% !important;
    }

    .header-top:after {
        width: 33%;
    }

    .header-top .container {
        max-width: 1269px;
    }

    .main-menu .navigation>li>a {
        font-size: 14px;
    }

    .main-header .logo img {
        width: 64%;
    }

    .ace-responsive-menu>li>a {
        font-size: 16px;
    }

    .main-menu .navigation>li {
        padding-right: 12px;
        margin-right: 21px;
    }

    body {
        padding-right: 0px !important;
        overflow-x: hidden !important;
    }
}

@media screen and (max-width:1024px) {
    .ace-responsive-menu>li>a {
        padding: 10px 23px;
    }

    .about-one__right {
        margin-left: 0px;
        margin-top: 16px;
    }

    .menu-toggle {
        padding: 10px 40px;
    }

    #header-main {
        padding: 0px 0;
    }

    .how-it-work__single {
        margin-bottom: 30px;
    }

    .how-it-work__icon {
        position: relative;
        top: 0;
        right: 0;
        margin-top: 20px;
    }

    .how-it-work__single-2 .how-it-work__icon {
        left: 0;
    }

    .how-it-work__single-2 {
        padding-left: 0;
    }

    .how-it-work__text br {
        display: none;
    }

    .menu-toggle {
        display: flex;
        justify-content: space-between;
    }

    .menu-toggle {
        background-color: transparent;
    }

    .mobile-logo {
        display: block !important;
    }

    .desktop-logo {
        display: none;
    }

    .demo {
        width: 96%;
        padding: 2%;
    }

    ul[data-menu-style="vertical"],
    ul[data-menu-style="accordion"],
    ul[data-menu-style="vertical"] li ul.sub-menu {
        width: 100% !important;
    }

    .ace-responsive-menu {
        float: left;
        width: 100%;
        text-align: left;
    }

    .ace-responsive-menu>li {
        border-bottom: 1px solid #242424;
        float: none;
        display: block;
    }

    .ace-responsive-menu li a:hover {
        background: #70090c !important;
        color: #fff;
    }

    .ace-responsive-menu>li:first-child {
        border-top: 2px solid #abc68b;
    }

    .ace-responsive-menu>li>a i {
        padding-right: 10px;
        color: #FF5737;
    }

    .ace-responsive-menu>li>a>.arrow:before {
        float: right;
        content: "\f105";
        font-size: 16px;
        font-family: FontAwesome;
        text-shadow: none;
        width: 10px;
        display: inline-block;
    }

    li.menu-active>a>.arrow:before {
        content: "\f107" !important;
    }

    .ace-responsive-menu li ul.sub-menu>li {
        width: 100%;
    }

    .ace-responsive-menu li ul.sub-menu li ul.sub-menu li a {
        padding-left: 30px;
    }

    .ace-responsive-menu li ul.sub-menu li ul.sub-menu li ul.sub-menu li a {
        padding-left: 50px;
    }

    .ace-responsive-menu>li>ul.sub-menu {
        position: static;
    }

    .ace-responsive-menu>li>ul.sub-menu>li ul.sub-menu {
        position: static;
    }

    .ace-responsive-menu>li>ul.sub-menu>li ul.sub-menu>li ul.sub-menu {
        position: static;
    }

    .ace-responsive-menu li ul.sub-menu li.menu-active>a>.arrow:before {
        content: "\f107" !important;
    }

    .ace-responsive-menu>li>a:after {
        left: 4.8%;
    }
}

@media screen and (max-width:1154px) {
    .inner-apges-image {
        width: 100%;
        float: right;
        margin-left: 0;
        /* padding: 40px; */
        overflow: hidden;
        box-shadow: rgb(0 0 0 / 20%) 0px 25px 50px -12px;
        margin-bottom: 30px;
    }

    .contactt_address ul li {
        display: inline-block;
        vertical-align: top;
        width: 100% !important;
        min-height: auto;
    }

    .contactt_address ul {
        padding-left: 0px !important;
    }

    .inner-banner {
        height: 300px;
    }

    .inner-banner img {
        height: 300px;
    }

    .inner-banner h1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
    }

    .mb-row .col-lg-4 {
        margin-bottom: 20px !important;
    }

    .ace-responsive-menu>li>a {
        padding: 7px 23px;
    }

    .what-make-diffrent .container .row .col-md-12 .row .col-md-3 {
        margin-bottom: 20px !important;
    }
}

@media screen and (max-width:1058px) {
    .ace-responsive-menu>li>a {
        padding: 7px 23px;
    }
}

@media (max-width:767px) {
    .banner-last-paragraph {
        width: 81% !important;
        font-size: 26px !important;
        font-weight: 700;
    }

    .this-text-center {
        top: 50%;
        left: 60px !important;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 2.5rem;
        font-weight: 600;
        max-width: 100%;
    }

    .contact-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0px;
        color: #000 !important;
    }

    .contact-header p {
        font-size: 1.1rem;
        color: #000000 !important;
        font-weight: 500;
    }

    .contact-card {
        background-image: initial !important;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        color: #fff;
        padding: 10px !important;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .career-box {
        background: #fff;
        border-radius: 15px;
        padding: 10px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .customer-pain-point-content2 {
        background: transparent;
        padding: 30px 22px !important;
    }

    .solutions-kroma-paints {
        overflow: hidden !important;
    }

    .about-image-section:before {
        position: absolute;
        content: " ";
        top: 11% !important;
        left: 30%;
        width: 50%;
        height: 50%;
        border: 4px solid #A33529;
        animation: scale 5s linear infinite;
        z-index: -1;
    }

    .about-image-section {
        position: relative;
        padding-top: 80px !important;
    }

    .footer p {
        color: #f7f4f4;
        text-align: center !important;
    }

    .footer-social {
        display: none !important;
    }

    .top-right ul li:last-child {
        display: none !important;
    }
    .goog-te-gadget {
        font-family: arial;
        font-size: 11px;
        color: #666;
        white-space: nowrap;
        display: flex;
        justify-content: center !important;
    }

    .client-logo-slider .owl-nav {
        position: absolute;
        top: 35%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        pointer-events: none;
        display: none !important;
    }

    .about-heading h3 {
        font-size: 22px !important;
        text-transform: uppercase;
        line-height: 33px !important;
        font-weight: 500;
    }

    .about-content-box {
        padding-right: 0px !important;
    }

    .custom-solution-box {
        display: flex;
        margin: 15px 0px;
        flex-direction: column;
    }

    .custom-solution-box .custom-solution-image {
        text-align: center;
    }

    .custom-solution-content {
        padding-left: 25px;
        text-align: center;
    }

    .why-heading h4 {
        text-align: center;
    }

    .series-section .card {
        margin-top: 20px;
    }

    .text .exp .valign {
        font-weight: 700;
        padding-left: 12px;
        color: #ca2212;
        font-size: 21px !important;
        line-height: 25px !important;
        display: flex;
        align-items: center;
    }

    .wps_home_about .h1_title {
        margin: 20px 0;
        align-items: center;
        display: flex;
        font-weight: 700;
        font-size: 26px;
        line-height: 33px;
    }

    .popup-gallery {
        justify-content: center;
    }

    #serviceSection .bodySection .nav-pills .nav-item {
        margin: 12px 5px !important;
    }

    .title-bx {
        margin: 0 auto 10px !important;
    }

    /* .text .exp .exp_num {
        font-size: 75px;
    } */
    .counter-one__single {
        margin-bottom: 25px !important;
    }

    .about-shape-4 {
        width: 90% !important;
    }

    .slider-style-seven.home-8 .owl-dots {
        max-width: max-content !important;
    }

    .header-top:before {
        display: none !important;
    }

    .top-left {
        display: none;
    }

    .top-info li {
        display: none !important;
    }

    .top-info li:last-child {
        display: block !important;
    }

    .slider-style-seven .content-box h1,
    .slider-style-seven .content-box h3 {
        font-size: 34px !important;
        line-height: 39px !important;
    }

    .slider-style-seven .content-box .text {
        font-size: 18px !important;
        line-height: 25px !important;
    }

    .main-header .logo img {
        width: 75%;
    }

    .title_2 {
        font-size: 30px !important;
        line-height: 38px !important;
    }

    #serviceSection .bodySection .tab-content .tab-pane p {
        padding: 0px 10px !important;
    }

    .page-header__inner h2 {
        font-size: 33px !important;
        color: #ffffff;
        line-height: 37px;
        letter-spacing: 0.6px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .thm-breadcrumb {
        padding-top: 0px !important;
    }

    .product-innerdescription-h2 {
        font-weight: 700;
        color: #004079;
        font-size: 22px;
    }

    .gallery ul li {
        width: 44.33% !important;
    }

    .inner-pages-product-image {
        float: right;
        max-width: initial !important;
    }
}

/*----- Header Top -----*/
/*----- Header Top -----*/

.header-top {
    position: relative;
    overflow: hidden;
    padding: 5px 0px;
    z-index: 100;
    border-bottom: 1px solid #cbcaca;
}


.top-left {
    text-align: end;
}

.header-top .top-left p {
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    color: #000000;
    margin-top: 5px;
    z-index: 99;
}

.shade-panel {
    background-color: black;
    color: white;
    padding: 30px;
    text-align: center;
}

/* Enquire Now link styled as button */
.enquire-btn {
    background-color: #c31301;
    color: white;
    text-decoration: none;
    padding: 8px 36px;
    font-size: 19px;
    font-weight: 700;
    display: inline-block;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.enquire-btn:hover {
    background-color: darkred;
    color: #fff;
}

/* Learn More link styled as button */
.sample-btn {
    background-color: #333;
    color: white;
    text-decoration: none;
    padding: 8px 36px;
    font-size: 19px;
    font-weight: 700;
    display: inline-block;
    border-radius: 5px;
    margin-left: 10px;
    transition: background-color 0.3s ease;
}

.sample-btn:hover {
    background-color: #555;
    color: #fff;
}

.header-top .top-right .top-info li {
    position: relative;
    display: inline-block;
    padding: 0px 15px;
    border-right: 1px solid #000000;
}

.header-top .top-right .top-info li:last-child {
    border-right: none;
}

.header-top .top-right .top-info li:first-child a {
    color: #000000;
    font-size: 16px;
}

.header-top .top-right .top-info li:nth-child(2) a {
    color: #000000;
    font-size: 16px;
    font-family: "DM Sans", sans-serif !important;
}

.header-top .top-right .top-info li:nth-child(3) a {
    color: #fff;
    font-size: 16px;
}

.header-top .top-right .top-info li a i {
    margin-right: 5px;
    color: #c31200;
}

.header-call i {
    margin-right: 5px;
    color: #c31200;
}

/* ............banner............. */
/* Swiper Container */
.bannerSwiper {
    width: 100%;
    position: relative;
}

/* Slide Image Styling */
.banner-slide img {
    width: 100%;
}

/* Common Text Styling */
.banner-text {
    position: absolute;
    color: #fff;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
    z-index: 10;
    max-width: 700px;
}

.banner-text {
    opacity: 0;
    z-index: 10;
    max-width: 700px;
}

.banner-text.animate {
    animation: fadeInUp 1.5s ease forwards;
}

/* Slide 1 Text Position */
.banner-this-content-leftand-top {
    top: 15%;
    left: 10%;
}

.banner-this-content-leftand-top h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 63px;
}

.banner-this-content-leftand-top .banner-subtl {
    display: block;
    font-size: 4.7rem;
    color: #A33529;
    font-weight: 700;
    letter-spacing: 4px;
}

.banner-this-content-leftand-top p {
    font-size: 1.2rem;
    line-height: 1.5;
    font-family: "Play", sans-serif !important;
}

/* Slide 2 Text Position */
.banner-this-content-left {
    top: 30%;
    left: 10%;
}

.banner-this-content-left ul {
    list-style-type: disc;
    font-size: 1.25rem;
    padding-left: 20px;
    line-height: 2;
    margin-bottom: 20px;
}

.elementor-slide-button {
    display: inline-block;
    background-color: #F21111;
    color: #fff;
    padding: 8px 30px;
    text-decoration: none;
    font-weight: 500;
    /* border-radius: 5px; */
    font-size: 1.1rem;
    transition: background 0.3s;
}

.elementor-slide-button:hover {
    background-color: #cc0000;
    color: #fff;
}

/* Slide 3 Text Position */
.this-text-center {
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    max-width: 800px;
}

/* Keyframes for fade-in-up animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Navigation Buttons Styling */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #ff0000;
    opacity: 1;
}

/* Responsive Text Sizes */
@media (max-width: 768px) {
    .banner-this-content-leftand-top h2 {
        font-size: 2rem;
    }

    .banner-this-content-leftand-top .banner-subtl {
        font-size: 1.8rem;
    }

    .banner-this-content-leftand-top p,
    .banner-this-content-left ul,
    .this-text-center {
        font-size: 12px;
        width: 60%;
    }

    .elementor-slide-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

.banner-this-content-left ul {
    padding-left: 0px;
}

.banner-this-content-left ul li {
    color: #000;
    font-family: "Play", sans-serif;
}


/* Banner List Styling */
.banner-list {
    list-style: none;
    /* Remove default bullets */
    padding-left: 0;
    margin: 20px 0;
    font-family: "DM Sans", sans-serif;
    /* Body font */
    font-size: 1.25rem;
    line-height: 2;
    color: #fff;
    /* White text for dark banner */
    position: relative;
}

/* Individual List Items with Custom Bullet */
.banner-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.banner-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: #c31200;
    font-weight: bolder;
}

/* Hover Animation */
.banner-list li:hover {
    transform: translateX(5px);

}

.banner-text * {
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
}

.banner-text *animate {
    /* animation is applied via class */
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.banner-last-paragraph {
    width: 90%;
    font-size: 45px;
    font-weight: 700;
}

/* Series Section */
.series-section {
    background: #f0f0f0;
    padding: 100px 0;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 35px 35px 0px 0px;
}

.card {
    border-radius: 25px;
    overflow: hidden !important;
    border: none;
}

.card-title {
    margin-bottom: 0px;
    text-align: center;
    padding: 20px 23px;
    font-size: 35px;
    color: #fff;
    font-family: "Play", sans-serif;
    line-height: 41px;
}

.card1 {
    background-color: #909090 !important;
}

.card2 {
    background-color: #43608c !important;
}

.card3 {
    background-color: #a33529 !important;
}

/* ......................counter........... */

.stats-section {
    padding: 50px 0px;
    background-color: #101010;
}

.counter-details {
    text-align: left;
    padding-left: 10px;
}

.counter-details h3 {
    margin-bottom: 5px;
    font-size: 40px;
    font-weight: 700;
    color: #c41301;
}

.counter-details h3 span {
    margin-bottom: 5px;
    font-size: 40px;
    font-weight: 800;
    color: #c41301;
}

.stat-item {
    display: flex;
    align-items: center;
}

.stat-item img {
    width: 80px;
}

.counter-details P {
    line-height: 20px;
    color: #fff;
}

/* ......................ABOUT-US ........... */
.about-us {
    padding: 90px 0px;
    position: relative;
}

.about-brush {
    position: absolute;
    top: -1px;
    left: 35px;
    width: 150px;
}

.about-image-section {
    position: relative;
}

.about-image-2 img {
    width: 70%;
}

.about-image-1 {
    position: absolute;
    bottom: 0;
    right: 0;
}

.about-image-1 img {
    width: 49%;
    float: right;
    padding: 9px;
    background: #fff;
}

.about-image-section:before {
    position: absolute;
    content: " ";
    top: -8%;
    left: 30%;
    width: 50%;
    height: 50%;
    border: 4px solid #A33529;
    animation: scale 5s linear infinite;
    z-index: -1;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

.about-image-section:after {
    position: absolute;
    content: " ";
    bottom: 10%;
    left: 42%;
    width: 2%;
    height: 10%;
    background: #A33529;
    animation: transform 5s linear infinite;
    transform: translateX(-50%);
    z-index: -1;
}

@keyframes transform {
    0% {
        bottom: 0;
    }

    50% {
        bottom: -5%;
    }

    100% {
        bottom: 0;
    }
}

.about-heading h3 {
    font-size: 42px;
    text-transform: uppercase;
    line-height: 44px;
    font-weight: 500;
}

.about-heading-color {
    color: #c31301;
    font-weight: 500;
}

.about-tagline {
    padding-left: 47px;
    position: relative;
    font-size: 17px;
    font-weight: 500;
    display: inline-block;
}

.about-tagline::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3px;
    width: 38px;
    height: 1px;
    background-color: #850d00;
}

.about-content-box {
    padding-right: 60px;
}


/* ....................why-chouse-us.................... */

.why-chouse-us {
    padding: 100px 0px;
    background-image: url(../images/why-chouse-us.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.why-content {
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #fff;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    margin: 0% 0% 0% 0%;
    --e-column-margin-right: 0%;
    --e-column-margin-left: 0%;
    padding: 20px;
    border-radius: 20px;
    background: #1a1a18;
}

.why-heading h4 {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    color: #c31200;
}

.why-heading h4 span {
    font-family: "Play", sans-serif !important;
}

.custom-solution-image img {
    width: 75px;
    height: 75px;
    /* margin-right: 10px; */
    background: #7e7e7e;
    padding: 10px;
    border-radius: 10px;
}

.custom-solution-box {
    display: flex;
    margin: 15px 0px;
}

.custom-solution-content {
    padding-left: 25px;
}

.custom-solution-title {
    color: #fff;
    margin-bottom: 3px;
    font-weight: 500;
    font-size: 20px;
}

.custom-solution-description {
    color: #fff;
    line-height: 21px;
    font-size: 16px;
}

/* ..................industries-we-serve............. */

.application-icon {
    text-align: center;
}

.industries-we-serve {
    padding: 60px 0px;
    background-color: #ebebeb;
}

.industries-we-serve-box {
    text-align: center !important;
}



.application-slider {
    padding: 20px 0;
    position: relative;
}

.application-box {
    /* background: #fff; */
    /* border: 1px solid #ddd; */
    text-align: center;
    padding: 9px;
    border-radius: 8px;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

.application-icon img {
    max-width: 80px;
    margin-bottom: 4px;
    filter: grayscale(1);
    margin: 6px auto;
}

.application-box-title p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 21px;
}

.application-slider {
    position: relative;
    padding: 40px 0;
}

.application-slider .owl-nav {
    position: absolute;
    /* top: 50%; */
    /* width: 100%; */
    display: flex;
    justify-content: center;
    transform: translatex(-50%);
    pointer-events: none;
    z-index: 10;
    /* left: -3px; */
    bottom: -6px;
    left: 50%;
}

.application-slider .owl-nav .owl-prev,
.application-slider .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    background-color: #5c5b5b !important;
    color: #ffffff !important;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    pointer-events: all;
    transition: background-color 0.3s ease, transform 0.2s ease;
}




.application-slider .owl-nav .owl-prev:hover,
.application-slider .owl-nav .owl-next:hover {
    background-color: darkred;
    transform: scale(1.1);
}

.application-slider .owl-nav .owl-prev {
    left: 10px;
}

.application-slider .owl-nav .owl-next {
    right: 10px;
}



/* .............our-client............ */
.our-client {
    padding: 50px 0px;
    background-color: #ebebeb;
}

.client-logo-slider {
    position: relative;
}

.client-logo-slider .client-logo {
    text-align: center;
    padding: 10px 0px;
}

.client-logo-slider .client-logo img {
    max-width: 100%;
    /* max-height: 80px; */
    object-fit: contain;
    display: inline-block;
    transition: transform 0.3s ease;
}

.client-logo-slider .client-logo img:hover {
    transform: scale(1.1);
}

.client-logo-slider .owl-nav {
    position: absolute;
    top: 35%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.client-logo-slider .owl-prev,
.client-logo-slider .owl-next {
    /* width: 45px; */
    /* height: 45px; */
    background: red;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px !important;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.3s ease, transform 0.2s ease;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
}

.client-logo-slider .owl-prev:hover,
.client-logo-slider .owl-next:hover {
    background: darkred;
    transform: scale(1.1);
}

.client-logo-slider .owl-prev {
    position: absolute;
    left: -41px;
}

.client-logo-slider .owl-next {
    position: absolute;
    right: -20px;
}


.footer {
    background: #111;
    font-size: 14px;
    line-height: 1.8;
}

.footer-logo {
    width: 70%;
    padding: 2px;
    background: #fff;
    border-radius: 9px;
}

.footer-heading {
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    position: relative;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 55px;
    height: 2px;
    background-color: #ffffff;
    z-index: 100;
}

.footer-links li {
    margin-bottom: 0px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    /* font-family: "DM Sans", sans-serif; */
    font-size: 19px;
    padding-left: 25px;
    position: relative;
}

.footer-links a::after {
    content: '\f178';
    font-family: 'FontAwesome';
    margin-right: 13px;
    font-size: 20px;
    margin-top: -3px;
    margin-right: 13px;
    font-size: 15px;
    margin-top: -3px;
    position: absolute;
    top: 3px;
    left: 0;
    color: #ebebeb;
    background-position: center;
}

.footer-links a:hover {
    color: #f00;
    /* red hover */
}

.footer-contact li {
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 22px;
    font-size: 16px;
}

.footer-contact li a {
    font-family: "DM Sans", sans-serif !important;
}

.footer-contact i {
    color: rgb(255, 255, 255);
    margin-top: 3px;
}

.footer-bottom {
    background: #909090;
    font-size: 13px;
}

.footer-social a {
    color: #fff;
    margin-left: 10px;
    font-size: 16px;
    transition: 0.3s;
    background-color: #c31200;
    padding: 4px 4px;
}

.footer-social a i {
    padding: 6px;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    /* padding: 30px; */
}

.footer-social a:hover {
    color: #ebebeb;
}

.footer p {
    color: #f7f4f4;
}

.footer-bottom a {
    font-family: "DM Sans", sans-serif;
    color: #f7f4f4;
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: rgb(233 37 43);
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 1000000099;
    text-align: center;
    transition: all 0.4s ease;
    display: none;
    border-radius: 50%;
    transition: all 0.4s ease;
    z-index: 1000;
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: rgb(153, 0, 0);
}

.scroll-to-top:hover i {
    color: #fff;
}

.our-viison-tab li button {
    font-weight: 900;
    font-size: 18px;
    color: #505050;
}

.our-viison-tab .nav-link.active {
    color: #c31301;

}

.tab-pane p {
    color: #5c5c5c;
}


/* ........inner-pages......... */

.cs_page_heading {
    height: 380px;
}

.cs_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.cs_page_heading h1 {
    margin-bottom: 7px;
    color: #fff;
    font-size: 50px;
    font-weight: 800;
    text-shadow: 1px 1px 3px #000000;
    line-height: 1.156em;
}

.cs_page_heading .breadcrumb {
    margin: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1.6em;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.cs_page_heading .breadcrumb-item+.breadcrumb-item::before {
    content: "\f101";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    color: #fff;
}


.cs_page_heading {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* ...............infa-section.................. */

.infa-section {
    padding: 80px 0px;
    background-attachment: fixed;
    background-image: url(../images/infra.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.our-infrastructure {
    background-color: #FFFFFFBD;
    padding: 24px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.our-infrastructure p {
    margin: 10px 0px;
}

.our-infrastructure h3 {
    font-size: 27px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0px !important;
}

.infa-section2 {
    padding: 80px 0px;
    background-attachment: fixed;
    background-image: url(../images/approach.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.customer-pain-point {
    padding: 60px 0px;
    background-color: #ebebeb;
}

.list-unstyled2 svg {
    width: 12px;
    fill: #c31200;
    margin-right: 5px;
    /* margin-top: 0px; */
}

.list-unstyled2 li {
    line-height: 35px;
    font-size: 18px;
}

.customer-pain-point-content {
    padding: 25px 10px 45px 25px;
    background: #f9f6fe;
    border-radius: 20px 0px 0px 20px;
    height: 100%;
}

.customer-pain-point-content h4 {
    font-size: 28px;
    margin-bottom: 3px;
    font-weight: 700;
}

.brush-with-men img {
    width: 100%;
    height: 443px;
    object-fit: cover;
}

.solutions-kroma-paints {
    background-color: #000000;
}

.customer-pain-point-content2 {
    background: transparent;
}

.customer-pain-point-content2 {
    background: transparent;
    padding: 120px 0px;
}

.customer-pain-point-content2 li {
    line-height: 35px;
    font-size: 18px;
    color: #d7d7d7;
}


.customer-pain-point-content2 h4 {
    font-size: 28px;
    margin-bottom: 3px;
    font-weight: 700;
    color: #c41301;
}

.solutions-kroma-paints {
    background-image: url(../images/solution.gif);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
}

.breadcrumb .breadcrumb-item {
    color: #fff;
    font-size: 21px;
}

.brousure-filipbook img {
    width: 100%;
}

/* Position wrapper (if not already positioned) */
.brousure-filipbook {
    position: relative;
    display: inline-block;
}

/* Thumbnail image full width */
.brousure-filipbook img {
    display: block;
    width: 100%;
    height: auto;
}

/* Download button overlay */
.download-btn {
    --bg: linear-gradient(90deg, #d32f2f, #f44336);
    position: absolute;
    left: 50%;
    bottom: -47px;
    transform: translatex(-50%);
    background: var(--bg);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    gap: 10px;
    transition: transform .18s cubic-bezier(.2, .9, .3, 1), box-shadow .18s;
    will-change: transform;
    z-index: 5;
    align-items: center;
    display: inline-flex;
    backdrop-filter: blur(4px);
}

/* small pulse */
.download-btn::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity .2s;
    pointer-events: none;
}

/* Hover effects */
.download-btn:hover {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}

.download-btn:active {
    transform: translateY(-2px) scale(.995);
}

/* Text */
.download-btn .btn-text {
    display: inline-block;
    white-space: nowrap;
}

/* SVG arrow base styling */
.btn-arrow {
    display: inline-block;
    margin-left: 6px;
    overflow: visible;
    transform-origin: center;
}

/* arrow line & head color inherit from text (currentColor) */
.arrow-line,
.arrow-head {
    stroke: rgba(255, 255, 255, 0.95);
    transition: transform .28s cubic-bezier(.2, .9, .3, 1);
}

/* prepare arrow head for slide animation */
.btn-arrow .arrow-head {
    transform-origin: center;
    transform: translateX(0);
}

/* Hover: slide arrow head to the right and nudge the whole svg */
.download-btn:hover .btn-arrow {
    transform: translateX(6px);
}

/* subtle drawing effect for the line: use stroke-dash */
.arrow-line {
    stroke-dasharray: 18;
    /* adjust as needed */
    stroke-dashoffset: 18;
    transition: stroke-dashoffset .35s ease-out;
}

.download-btn:hover .arrow-line {
    stroke-dashoffset: 0;
}

/* Smaller screens: scale down button and position */
@media (max-width: 576px) {
    .download-btn {
        right: 12px;
        bottom: 12px;
        padding: 8px 10px;
        font-size: 13px;
        border-radius: 7px;
    }

    .btn-arrow {
        width: 18px;
        height: 12px;
    }
}

/* Focus visible for accessibility */
.download-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .12);
    outline-offset: 3px;
}

/* Continuous arrow animation */
@keyframes arrowMove {
    0% {
        transform: translateX(0);
        opacity: 0.6;
    }

    50% {
        transform: translateX(6px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 0.6;
    }
}

@keyframes lineDraw {
    0% {
        stroke-dashoffset: 18;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: 18;
    }
}

/* SVG arrow always animates */
.btn-arrow {
    animation: arrowMove 1.5s infinite ease-in-out;
}

.arrow-line {
    stroke-dasharray: 18;
    stroke-dashoffset: 18;
    animation: lineDraw 1.5s infinite ease-in-out;
}

/* Hover makes it stronger */
.download-btn:hover .btn-arrow {
    animation-duration: 1s;
    /* faster on hover */
}

.download-btn:hover .arrow-line {
    animation-duration: 1s;
    /* faster draw */
}


.appliaction-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.appliaction-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

/* Hover effect */
.appliaction-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.appliaction-box:hover img {
    transform: scale(1.05);
}

/* Title styling */
.application-title {
    text-align: center;
    margin-top: 12px;
}

.application-title h3 {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    font-family: "DM Sans", sans-serif;
    transition: color 0.3s ease;
}

.application-title h3:hover {
    color: #d32f2f;
    /* red highlight on hover */
}

.application-heading {
    color: #c31301;
    font-size: 25px;
}


.innovation-content-box {
    text-align: center;
}

.innovation-content-box h1 {
    font-weight: 600;
    color: #C31200;
}

.section-title {
    color: #C31200;
    /* Reddish color */
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
}

.section-text {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Beyond the Surface Section Styles */
.beyond-the-surface {
    background-color: #fff;
    /* White background */
}

.service-card {
    background-color: #f8f9fa;
    /* Light grey background for cards */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    /* Ensures cards have equal height */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    color: #474646;
    line-height: 24px;
}

.icon-container {
    background-color: #C31200;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.icon-container i {
    color: #fff;
    font-size: 1.5rem;
}

/* Specific styling for the black card */
.feedback-card {
    background-color: #000;
    color: #fff !important;
}

.feedback-card h4,
.feedback-card p {
    color: #fff;
}

.icon-container-white {
    background-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
}

.icon-container-white i {
    color: #000;
    font-size: 1.5rem;
}

/* Why It Matters Section Styles */
.why-it-matters {
    background-color: #f8f9fa;
}

.why-it-matters .section-title {
    margin-bottom: 9px;
}

.beyond-the-surface {
    padding: 60px 0;
    background-color: #ebebeb;
}

.why-it-matters {
    background-color: #ebebeb;
    padding-bottom: 60px;
}

.career-image img {
    width: 100%;
}

.career-box {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.career-box h2 {
    font-weight: 700;
    color: #b30000;
    margin-bottom: 20px;
}

.career-box p {
    font-size: 1rem;
    color: #555;
}

.form-control,
.form-control-file {
    border-radius: 10px;
}

.btn-career {
    background-color: #b30000;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    padding: 12px 25px;
    transition: 0.3s;
}

.btn-career:hover {
    background-color: #900000;
}

.icon-box {
    font-size: 40px;
    color: #b30000;
    margin-bottom: 15px;
}

.contact-us-image img {
    width: 100%;
}

.contact-card {
    /* background-image: url(../images/Contact-us-1.jpg); */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
    padding: 101px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-header {
    /* border-bottom: 2px solid rgba(255, 255, 255, 0.5); */
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0px;
    color: #c31200;
}

.contact-header p {
    font-size: 1.1rem;
    color: #333333;
    font-weight: 500;
}

.contact-details li {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-details i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    color: #bf1200;
    margin-left: 15px;
}

.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    /* Ensure the map has a minimum height */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}



.enquiry-section .form-label {
    font-weight: bold;
    color: #333;
}

.enquiry-section .form-control {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 10px;
}

.enquiry-section .form-control:focus {
    box-shadow: 0 0 5px rgba(228, 58, 21, 0.5);
    border-color: #e43a15;
}

.enquiry-section .btn-submit {
    background-color: #c41301;
    border: none;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.enquiry-section .btn-submit:hover {
    background-color: #f66d49;
}

.shade-panel2 .form-column {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.shade-panel2 .form-title {
    color: #c41301;
    font-size: 2.0rem;
}

.shade-panel2 .form-label {
    font-weight: 500;
    color: #333;
}

.shade-panel2 .form-control,
.form-select {
    border: 1px solid #e9e6e6;
    padding: 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.shade-panel2 .form-control:focus,
.form-select:focus {
    border-color: #e43a15;
    box-shadow: 0 0 5px rgba(228, 58, 21, 0.5);
}

.shade-panel2 .btn-submit {
    background-color: #c31200;
    border: none;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.shade-panel2 .btn-submit:hover {
    background-color: #f66d49;
}

.shade-panel2 .image-column {
    padding-left: 30px;
}

/* Hide mobile banner by default */
.mobile-banner {
    display: none;
}

.desktop-banner {
    display: block;
}

/* On mobile (max 767px), swap visibility */
@media (max-width: 767px) {
    .desktop-banner {
        display: none !important;
    }

    .mobile-banner {
        display: block !important;
    }

    .bannerSwiper {
        width: 100%;
        position: relative;
    }
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 9px;
    }
    /* Swiper Navigation Buttons Styling */
    .swiper-button-next,
    .swiper-button-prev {
        color: #fff;
        background-color: rgba(0, 0, 0, 0.5);
        width: 25px;
        height: 25px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .elementor-slide-button{
        display: none;
    }

    .banner-this-content-left {
        top: 0% !important;
        left: 10%;
    }

    .banner-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 0px;
        transition: transform 0.3s ease;
        font-size: 13px !important;
        line-height: 25px !important;
    }

    .banner-this-content-left ul {
        margin-bottom: 0px !important;
    }

    .elementor-slide-button {
        padding: 7px 20px !important;
        font-size: 1rem !important;
        border-radius: 5px !important;
    }

    .banner-this-content-leftand-top {
        top: 6% !important;
        left: 7% !important;
    }

    .banner-this-content-leftand-top h2 {
        font-size: 10px;
        line-height: 30px;
        margin-bottom: 5px;
    }

    .banner-this-content-leftand-top p br {
        display: none !important;
    }

    .banner-this-content-leftand-top .banner-subtl {
        font-size: 11px !important;
        letter-spacing: 1px !important;
        /* font-style: italic; */
        line-height: 2px;
    }
}

/* CSS */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 15%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.floating-contact a:hover {
    transform: scale(1.1);
}

.call-button {
    background-color: #00437d;
}

.whatsapp-button {
    background-color: #25d366;
}

/* Icon style */
.floating-contact i {
    font-size: 22px;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Responsive fix */
@media (max-width: 480px) {
    .floating-contact {
        right: 15px;
        bottom: 105px;
    }

    .floating-contact a {
        width: 48px;
        height: 48px;
    }

    .floating-contact i {
        font-size: 20px;
    }

    .site-title {
        font-size: 30px;
    }
}


.cm-innerpage {
    position: relative;
    padding: 70px 0;
}

.cm-innerpage p {
    text-align: justify;
}

.cm-innerpage p {
    margin-bottom: 20px;
}

.cm-innerpage h2 {
    font-size: 37px;
    font-weight: 700;
    line-height: 1.1em;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #000;
}

.cm-innerpage .product-image {
    float: right;
    margin-left: 30px;
    max-width: 600px;
}

@media (max-width: 767px) {
    .cm-innerpage .product-image {
        margin-left: 0px;
        margin-bottom: 20px;
    }
}

.blog-text-nw {
    background-color: #fff;
    text-align: left;
    overflow: hidden;
    transform: translateY(-10px);
    height: 100%;
    border-radius: 20px;
    border: 1px solid #dee2e6;
}

.blog-text-nw h3 {
    color: #000000;
    text-align: left;
    font-size: 21px;
    font-weight: 600;
    margin-top: 0;
}

.blog-text-nw h3 a {
    color: inherit;
    line-height: 125%;
}

.blog-text-nw p {
    text-align: justify;
    font-size: 17px;
    line-height: 28px;
    color: #333;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* change this to 2 if you want only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-text-nw p strong {
    text-transform: capitalize;
}

.blog-text-nw img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.blog-text-nw .more-btn {
    margin: 20px 20px;
}

.keytag {
    position: relative;
    padding-top: 30px;
}

.blog-test-div {
    padding: 20px;
}

/* .........sidebar........... */
.sidebar-widget.widget-categories-two {
    padding: 40px 30px 40px 30px;
}

.sidebar-widget {
    position: relative;
    padding: 40px 30px 40px 30px;
    background: #F7F7F7;
    border-radius: 4px;
}

.sidebar-widget-title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 26px;
}

.sidebar-widget.widget-categories-two ul li:not(:last-child) {
    margin-bottom: 10px;
}

.sidebar-widget.widget-categories-two ul li {
    list-style: none;
}

.sidebar-widget.widget-categories-two ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgb(2 2 2 / 6%);
    padding: 14px 20px;
    background: #FFFFFF;
    font-weight: 600;
    border-radius: 2px;
    font-size: 17px;
    color: #2f2f2f;
    font-family: "Space Grotesk", sans-serif;
    text-transform: capitalize;
    /* ✅ proper font usage */
}

.sidebar-widget.widget-categories-two ul li i {
    font-size: 20px;
    color: #c31200;
}

.rs-services-area {
    padding: 50px 0px;
}

.mb-30 {
    margin-bottom: 30px;
}

.rs-sidebar-sticky {
    position: sticky;
    top: 110px;
}

.sidebar-widget.widget-download {
    background: #F7F7F7;
    padding: 40px 40px 40px 40px;
    border-radius: 4px;
}

.sidebar-widget-title {
    margin-bottom: 20px;
}

.sidebar-widget.widget-download ul li a .left {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 10px;
}

.sidebar-widget.widget-download ul li {
    list-style: none;
}

.sidebar-widget.widget-download ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(2, 1, 1, 0.09);
    padding: 0 15px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 2px;
    font-weight: 600;
    color: #c41301;
}

.sidebar-widget.widget-download ul li a .left {
    display: flex;
    align-items: center;
    font-size: 16px;
    gap: 10px;
}

.rs-services-details-wrapper .rs-services-details-title {
    font-size: 29px;
    font-weight: 600;
    margin: 15px 0px;
    margin-bottom: 7px;
}

.rs-services-details-wrapper .rs-list-item ul {
    /* display: grid; */
    grid-template-columns: 300px auto;
    align-items: center;
    /* gap: 8px 0px; */
}

.rs-services-details-wrapper .rs-list-item ul li {
    font-size: 17px;
    font-weight: 500;
}

.rs-services-details-wrapper .rs-list-item ul li:not(:last-child) {
    margin-bottom: 0;
}

.rs-list-item ul li {
    list-style: none;
    align-items: center;
    gap: 10px;
    margin: 10px 0px;
}

.rs-services-details-wrapper .rs-list-item ul li svg {
    width: 20px;
    height: 20px;
    fill: #c31201;
}

.rs-accordion-one .accordion-button {
    font-size: 20px;
    font-weight: 600;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    padding-right: 50px;
    color: var(--rs-title-primary);
    padding: 18px 60px 18px 20px;
}

.rs-accordion-one .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: var(--rs-theme-orange);
}

.rs-accordion-one .rs-accordion-item {
    border: 1px solid rgba(21, 42, 64, 0.05);
    border-radius: 4px 4px 4px 4px;
    background-color: #F7F7F7;
}

.rs-accordion-one .rs-accordion-item:not(:last-child) {
    margin-bottom: 20px;
}

.rs-accordion-one .accordion-body {
    padding: 0;
    color: #121212;
    padding: 20px 50px 20px 20px;
    border-top: 1px solid rgba(31, 31, 31, 0.1);
    font-size: 18px;
}


.rs-services-area p {
    margin-bottom: 20px;
}

.download-brochure {
    text-align: center;
    margin: 40px 0;
}

.animated-btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #c31301, #e6392b);
    /* brand red gradient */
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

.animated-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: 0.5s ease;
}

.animated-btn:hover::before {
    left: 200%;
}

.animated-btn:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.animated-btn i {
    margin-right: 5px;
}

.steelguard-products {
    padding: 60px 0;
    background-image: url(../images/our-products.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.steelguard-products .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.steelguard-products .section-subtitle {
    font-size: 1rem;
    color: #555;
}

.product-card {
    background-color: #c31200;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    
}

.product-card a {
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    font-size: 21px;
    display: block;
    line-height: 32px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
    .product-card {
        padding: 15px;
    }
}

.goog-te-gadget .goog-te-combo {
    margin: 4px 0;
    height: 30px;
    font-weight: 600;
    border: 1px solid #dbdbdb;
    color: #000;
    padding: 0 10px 0 10px !important;
    border-radius: 10px;
    width: 100%;
}

.goog-te-gadget {
    font-family: arial;
    font-size: 0 !important;
    color: #666;
    white-space: nowrap
}

.goog-te-gadget {
    font-family: arial;
    font-size: 11px;
    color: #666;
    white-space: nowrap;
    display: flex
}

.goog-te-gadget img {
    vertical-align: middle;
    border: 0;
    padding-top: 14px;
    display: none
}

.goog-logo-link,
.goog-logo-link:link,
.goog-logo-link:visited,
.goog-logo-link:hover,
.goog-logo-link:active {
    font-size: 12px;
    font-weight: bold;
    color: #999;
    text-decoration: none;
    display: none
}

.g-trans {
    float: right !important;
    margin-right: 15px
}
.skiptranslate span{
    display: none !important;
}


.quick-form {
    background: rgba(0, 0, 0, 0.02);
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    padding: 30px;
}
.quick-form .cm-title {
  color: #000;
  font-size: 26px;
  margin: 0 0 30px 0;
}
.quick-form .form-group {
  margin-bottom: 15px;
}
.quick-form .form-group label {
  font-weight: 500;
  color: #000;
  margin: 0 0 7px 0;
}
.quick-form .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 11px 15px;
  outline: none;
  box-shadow: none;
  height: auto;
  border-radius: 0;
}
.quick-form textarea.form-control {
  height: 150px;
  resize: none;
}

.cm-btn {
  position: relative;
  background: #1e1e22;
  color: #ffffff;
  padding: 18px 25px;
  text-align: center;
  margin: 0;
  border: 0px solid rgba(108, 108, 108, 0.1);
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  min-width: 150px;
  height: auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 100%;
  text-transform: inherit;
  letter-spacing: 0;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 1;
}
.cm-btn:before {
  background-color: transparent;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  z-index: -1;
  content: "";
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.cm-btn:hover:before {
  background-color: #787878;
  bottom: 0;
  top: auto;
  width: 100%;
  opacity: 1;
}
.cm-btn:hover {
  color: #ffffff;
  background-color: #000000;
}


 
.only-mobile-visible-desktop-off .goog-te-gadget {
    font-family: arial;
    font-size: 11px;
    color: #666;
    white-space: nowrap;
    display: flex;
    justify-content: center;
}

@media (max-width:767px) {
    .series-section{
        padding: 40px 0px;
    }
    .bannerSwiper .swiper-pagination{
        display: none;
    }
}

.gallery-sec {
  padding: 70px 0 80px;
  overflow: hidden;
}

.gallery-sec .gallery-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 7px 20px;
}

.gallery-sec .thumbnail-container {
  position: relative;
  width: 100%;
}

.gallery-sec .thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.gallery-sec .swiper {
  overflow: visible;
}

.gallery-sec .swiper-wrapper {
  transition-timing-function: linear !important;
}

.gallery-sec .swiper-slide {
  height: auto;
}

@media (max-width: 767px) {
  .gallery-sec {
    padding: 40px 0 50px;
  }

  .gallery-sec .gallery-box {
    border-radius: 12px;
  }

  .gallery-sec .thumbnail-container img {
    object-fit: cover;
  }
}


.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  /* opacity: 0.5; */
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.modal-body {
  /* background: #ededed; */
}

.inquiry-popup .modal-header .close {
  position: relative !important;
  top: 8px !important;
}

.inquiry-popup .modal-header .modal-title {
  color: #000000 !important;
}

.inquiry-btn {
  position: fixed !important;
  left: 20px !important;
  bottom: 20px !important;
  z-index: 99 !important;
}

.inquiry-btn .ripple-btn {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.inquiry-btn .ripple-btn svg {
  width: 40px;
  height: 40px;
}

.inquiry-btn .pinkBg {
  background-image: linear-gradient(90deg, #c31200, #dc3545);
}

.inquiry-btn .ripple {
  position: absolute;
  width: 160px;
  height: 160px;
  z-index: -1;
  left: 50%;
  top: 50%;
  opacity: 0;
  margin: -80px 0 0 -80px;
  border-radius: 100px;
  -webkit-animation: ripple 1.8s infinite;
  animation: ripple 1.8s infinite;
}

@-webkit-keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.inquiry-btn .ripple:nth-child(2) {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}

.inquiry-btn .ripple:nth-child(3) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}

.cs_form_field {
  width: 100%;
  padding: 15px 12px;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.cs_mb_23 {
  margin-bottom: 23px;
}

.som .cs_mb_23 {
  margin-bottom: 0px;
}

select.cs_form_field {
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
  padding-right: 30px;
}

.som select.cs_form_field {
  background-color: #e6ecf0 !important;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
  padding-right: 30px;
}


.rs-banner.banner-style7 {
  background: url(../../frontend/images/bud-home-back.jpg);
}

.single {
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}

.single .col-sm-4.first_col {
  background-color: #1d4f75;
  padding: 50px 20px;
  border-radius: 0px;
  background-size: cover;
  padding-bottom: 0px !important;
}

.single .col-sm-8.last_col {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 0 8px 8px 0;
  padding-bottom: 0px !important;
}

.left_contact_form_address {
  margin-top: 22px;
}

.left_contact_form_mobile {
  margin-top: 10px;
}

.left_contact_form_email {
  margin-top: 22px;
}

.left_contact_form_title p {
  font-size: 18px;
  line-height: 25px;
  color: #ffffff;
}

.left_contact_form_address p {
  color: #6c778f;
  font-size: 14px;
  font-weight: normal;
  line-height: 24px;
}

.left_contact_form_address_icon {
  font-size: 15px;
  color: #ffffff;
}


.et-pb-icon,
.et_pb_custom_button_icon.et_pb_button:after,
.et_pb_login .et_pb_custom_button_icon.et_pb_button:after,
.et_pb_woo_custom_button_icon .button.et_pb_custom_button_icon.et_pb_button:after,
.et_pb_woo_custom_button_icon .button.et_pb_custom_button_icon.et_pb_button:hover:after {
  content: attr(data-icon);
}

.single .first_info_line {
  margin-left: 13px;
  color: #fff;
}

.left_contact_form_address span {
  margin-left: 12px;
  color: #fff;
}

.floatLeft {
  float: left;
}

.addessleft {
  margin-left: 12px !important;
}

.marginleft3 {
  margin-left: 3px;
}

.callIconMargin {
  margin-top: 3px;
}

.marginleft22 {
  margin-left: 22px;
}

.left_contact_form_mobile p {
  color: #6c778f;
  font-size: 15px;
  font-weight: normal;
  line-height: 24px;
}

.left_contact_form_mobile_icon {
  font-size: 17px;
  color: #ffffff;
}

.left_contact_form_mobile p {
  color: #6c778f;
  font-size: 15px;
  font-weight: normal;
  line-height: 24px;
}

.left_contact_form_mobile span {
  margin-left: 12px;
  color: #fff;
}

.left_contact_form_email p {
  color: #6c778f;
  font-size: 15px;
  font-weight: normal;
  line-height: 24px;
}

.left_contact_form_email_icon {
  font-size: 21px;
  color: #ffffff;
}

.left_contact_form_email span {
  margin-left: 25px;
  color: #fff;
}

.left_contact_form_social_links p {
  margin-top: 23%;
  /* margin-left: 25%; */
}

.left_contact_form_social_links .et-pb-icon {
  font-size: 24px;
  color: #ffffff;
  margin-left: 16px;
}

.single .col-sm-8.last_col {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 0 8px 8px 0;
}

.right_contact_form_title p {
  font-size: 28px;
  font-weight: bold;
  color: #1d4f75;
  margin-bottom: 25px;
}

.right_contact_form_title p .right_dot {
  color: #f89100;
}

.single .form-group {
  margin-bottom: 15px;
}

.single .form-control {
  padding: 12px;
  height: auto;
  box-shadow: none;
  background: #1d4f751c !important;
  color: #161616;
  border: none;
  margin-left: 0px;
}

.single input[type="submit"] {
  /* border: 1px solid #34cc81 !important; */
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.intl-tel-input.allow-dropdown input,
.intl-tel-input.allow-dropdown input[type="text"],
.intl-tel-input.allow-dropdown input[type="tel"],
.intl-tel-input.separate-dial-code input,
.intl-tel-input.separate-dial-code input[type="text"],
.intl-tel-input.separate-dial-code input[type="tel"] {
  padding-right: 6px !important;
  padding-left: 108px !important;
  margin-left: 0 !important;
}

.webDeviceShow {
  display: block;
}

.mobileDeviceShow {
  display: none;
}

.rowData {
  flex-wrap: unset;
  display: flex;
}

.lb-dataContainer .lb-data .lb-number,
.lb-outerContainer .lb-container .lb-nav {
  display: none !important;
}

.modal-lg {
  min-width: 941px;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  color: #000;
  background: transparent url(../images/close.svg) center / 1em auto no-repeat;
  border: 0;
  border-radius: .25rem;
  /* opacity: .5; */
  position: absolute;
  right: 17px;
  top: 14px;
}

.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

.modal-footer {
  position: absolute;
  top: 0;
  left: 90%;
}

.modal-footer button {
  cursor: pointer !important;
}

.btn-danger {
  color: #fff;
  background-color: #11559b !important;
  border-color: #11559b !important;
  font-size: 18px;
}

.som .submit-btn {
  display: inline-block;
  position: relative;
  background-color: #8873ef;
  border: none;
}

.som .submit-btn .btn-text {
  color: #ffffff;
}

.som .submit-btn:before {
  content: '\f105';
  font-family: 'FontAwesome';
  font-size: 17px;
  color: #fff;
  margin: 0;
  display: inline-block;
  font-weight: 600;
  top: 15px;
  right: 23px;
  position: absolute;
  transition: 0.5s;
  z-index: 1;
}

.som .submit-btn input[type="submit"] {
  position: relative;
  display: inline-block;
  border-radius: 3px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  color: #fff;
  padding: 14px 50px 14px 38px;
  outline: none;
  transition: all 0.5s ease;
  background: 0 0;
  border: none;
}

.som .submit-btn:hover input[type="submit"] {
  background-color: #6654bc;
}

.som .submit-btn:hover:before {
  top: 12px;
}

.som .submit-btn.submit-reds {
  background: #11559b;
  border-radius: 15px 15px 15px 15px;
}

.som .submit-btn.submit-reds input[type="submit"] {
  border-radius: 15px 15px 15px 15px;
}

.som .submit-btn.submit-reds:hover input[type="submit"] {
  background-color: #11559b;
}

.som .submit-btn.submit-reds:hover:before {
  top: 12px;
}

.som .submit-btn.submit-stle2 {
  background-color: #f89100;
  border-radius: 15px 15px 15px 15px;
}

.som .submit-btn.submit-stle2 input[type="submit"] {
  border-radius: 15px 15px 15px 15px;
}

.som .submit-btn.submit-stle2:hover input[type="submit"] {
  background-color: #7a36c6;
}

.som .submit-btn.submit-stle2:hover:before {
  top: 12px;
}

.right_contact_form_title {
  padding-top: 20px;
}

.som {
  background-color: #fff !important;
}

.last_col {
  padding-left: 25px;
}

.pop-up-model .modal-header {
  background: #dc3545;
  /* red to blue */
  color: #fff;
  padding: 8px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pop-up-model .modal-header h4 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
}

.pop-up-model .modal-header .btn-close {
  background: #fff;
  color: #000000;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pop-up-model .modal-header .btn-close:hover {
  background: #ea552b;
  color: #fff;
}

/* ============================= */
/* Modal Body                    */
/* ============================= */
.pop-up-model .modal-body {
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.pop-up-model .modal-body .pop-img {
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid #1976d2;
  width: 105px;
}

/* Contact Info Boxes */
.pop-up-model .cbox {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  background: #f5f5f5;
  border-left: 5px solid #d32f2f;
}

.pop-up-model .cbox h3 {
  margin: 0 0 5px;
  color: #1976d2;
  font-size: 1.1rem;
}

.pop-up-model .cbox p a {
  color: #d32f2f;
  font-weight: 500;
  text-decoration: none;
}

.pop-up-model .cbox p a:hover {
  text-decoration: underline;
}

/* ============================= */
/* Form Styling                  */
/* ============================= */
.pop-up-model .form1 {
  width: 100%;
}

.pop-up-model .form-group {
  margin-bottom: 15px;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 8px 15px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccccccc2;
  transition: all 0.3s ease;
  height: auto !important;
  color: #00304f;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #d32f2f;
  box-shadow: 0 0 8px rgba(211, 47, 47, 0.3);
  outline: none;
}

.form-group textarea {
  resize: none;
  min-height: 100px;
}

.form-control-feedback.right-ok {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============================= */
/* Buttons                       */
/* ============================= */
.pop-up-model .Submit-box {
  background: #c31200;
  border: none;
  color: #fff;
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 41%;
  font-size: 1.1rem;
  font-size: 18px;
}

.pop-up-model .Submit-box:hover {
  background: #dc3545;
}

/* reCAPTCHA Box */
.somn_n .g-recaptcha {
  transform: scale(0.95);
  transform-origin: 0 0;
  margin: 0 auto 20px auto;
}

/* ============================= */
/* Responsive Design              */
/* ============================= */
@media (max-width: 768px) {
  .pop-up-model .modal-dialog {
    max-width: 90%;
    margin: 30px auto;
  }

  .pop-up-model .modal-header h4 {
    font-size: 1.3rem;
  }

  .pop-up-model .Submit-box {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .pop-up-model .cbox h3 {
    font-size: 1rem;
  }
}

/* Icons in contact boxes */
.cbox h3 i {
  color: #d32f2f;
  /* Red icon */
  margin-right: 10px;
  font-size: 1.2rem;
  vertical-align: middle;
}

/* Optional: hover effect for links */
.cbox p a:hover {
  color: #1976d2;
  /* blue on hover */
  text-decoration: underline;
}

/* Adjust spacing for better alignment */
.cbox h3 {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  color: #1976d2;
  /* heading color */
  font-weight: 600;
}

.modal-body .row {
  width: 100%;
}


/* Floating Enquiry Button */
.inq-btn-home {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff0000, #0044ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
  animation: softBlink 1.8s infinite ease-in-out;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.inq-btn-home:hover {
  transform: scale(1.15);
  box-shadow: 0 0 35px rgba(0, 68, 255, 0.9), 0 0 60px rgba(255, 0, 0, 0.8);
}

/* Icon Blinking Animation */
@keyframes softBlink {

  0%,
  100% {
    box-shadow: 0 0 10px #ff0000, 0 0 20px #0044ff;
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 25px #ff0000, 0 0 45px #0044ff;
    opacity: 0.8;
  }
}

/* Animated Text */
.inq-btn-home .blink-text {
  position: absolute;
  bottom: 85px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ff0000, #0044ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
  animation: blinkText 2s infinite ease-in-out;
}

/* Text Blinking */
@keyframes blinkText {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Icon Pulse */
.inq-btn-home i {
  animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .inq-btn-home {
    width: 55px;
    height: 55px;
    font-size: 22px;
    bottom: 20px;
    right: 20px;
  }
  .modal-logo{
    width: 60% !important;
  }

  .inq-btn-home .blink-text {
    font-size: 13px;
    bottom: 70px;
  }
}

/* ============================= */
/* Modal Base & Dialog           */
/* ============================= */

.pop-up-model .modal-dialog {
  margin: 50px auto;
}

.pop-up-model .modal-content {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 0px solid #0068ab;
  /* red border */
  animation: fadeInModal 0.5s ease;
}

@keyframes fadeInModal {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


.clearfix-p p {
  color: #fff !important;
}

.pop-up-model .modal-left {
  /* width: 38%; */
  /* background: #fffcfcde; */
  padding: 35px 7px 7px;
  /* border-right: 1px solid #ddd; */
}

.pop-up-model .modal-left-col {
  /* background: #fdfbfc; */
  border-right: 1px solid #ddd;
}

.pop-up-model .modal-left .modal-logo {
  width: 46%;
  margin-bottom: 20px;
}

.contact-box {
  /* padding: 15px 20px; */
  /* background: #f6f9fc; */
  /* border-radius: 12px; */
  /* border: 1px solid #e1e1e1; */
}

.contact-box p {
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  /* align-items: center; */
  color: #312865;
  font-weight: 600;
}

.contact-box i {
  font-size: 12px;
  margin-right: 10px;
  color: #fbfbfb;
  /* padding: 6px; */
  background: #dc3545;
  margin-bottom: 0;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1px;
}



.widget:last-child {
  margin-bottom: 0;
  padding-top: 14px;
}

.contact-box p span {
  width: 90%;
  color: #000;
  font-weight: 500;
}
@media (max-width: 768px) {
    .pop-up-model .modal-dialog {
        max-width: 90%;
        margin: 30px auto;
    }
        .pop-up-model .modal-header h4 {
        font-size: 1.3rem;
    }
}
@media (max-width: 480px) {
    .modal-lg {
        min-width: inherit !important;
        width: 95% !important;
    }
}

.swiper-wrapper {
    transition-timing-function: linear !important;
}

.our-faqs{
	padding: 20px 0 70px 0;
}

.our-faqs-images{
	position: relative;
}

.our-faqs-img figure{
	position: relative;
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.our-faqs-img figure::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(34, 34, 34, 0) 64.31%, rgba(34, 34, 34, 0.8) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.our-faqs-img figure img{
	width: 100%;
	aspect-ratio:  1 / 0.99;
	object-fit: cover;
}

.faqs-img-cta-box{
	position: absolute;
	bottom: 20px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.faqs-img-cta-box ul{
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}

.faqs-img-cta-box ul li{
	display: inline-block;
	margin-right: 40px;
}

.faqs-img-cta-box ul li:last-child{
	margin-right: 0;
}

.faqs-img-cta-box ul li a img{
	max-width: 60px;
	margin-right: 15px;
	vertical-align: middle;
}

.faqs-img-cta-box ul li a{
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	transition: all 0.3s ease-in-out;
	vertical-align: middle;
}

.faqs-img-cta-box ul li:hover a{
	color: #ff9900;
}

.our-faq-section .accordion-item{
	padding: 0;
	border: 1px solid #EBEBEB;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 10px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-item:last-child{
	margin-bottom: 0;
}

.our-faq-section .accordion-header .accordion-button{
	font-size: 19px;
	font-weight: 600;
	line-height: 1.2em;
	background-color: transparent;
	color: #fff;
	padding: 15px 50px 15px 20px;
	transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed){
	background: #c31200;
   	color: #fff;
   	border-bottom: 1px solid #FFFFFF1A;
}

.our-faq-section .accordion-header .accordion-button.collapsed{
	background-color: transparent;
	color: #222222;
}

.our-faq-section .accordion-item .accordion-button::after, 
.our-faq-section .accordion-item .accordion-button.collapsed::after{
    content: '\f077';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
	transform: translateY(-50%);    
    font-size: 16px;
    color: #222222;
    transition: all 0.3s ease-in-out;
}

.our-faq-section .accordion-button:not(.collapsed)::after{
    transform: translateY(-50%) rotate(180deg);
    color: #fff;
}

.our-faq-section .accordion-item .accordion-body{
	background: #c31200;
	padding: 15px 50px 15px 20px;
}

.our-faq-section .accordion-item .accordion-body p{
    color: #fff;
	margin: 0;
}