@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');

/* 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: 17px;
    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: 270px;
    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;
    }

    .header-top {
        display: none !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%;
    height: 83vh;
    position: relative;
}

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

/* 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;
}

/* Slide 3 Text Position */
.this-text-center {
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    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: 1rem;
    }

    .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: 300px;
    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%;
        height: 73vh !important;
        position: relative;
    }

    .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: 26px;
        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: 26px !important;
        letter-spacing: 1px !important;
        /* font-style: italic; */
    }
}

/* CSS */
.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 100px;
    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: 20px;
    margin-top: 0;
    padding: 10px 20px 10px 20px;
    /* text-transform: capitalize; */
  }
  .blog-text-nw h3 a {
    color: inherit;
    line-height: 125%;
  }
  .blog-text-nw p {
    text-align: justify;
    font-size: 17px;
    line-height: 28px;
    padding: 10px 20px 20px 20px;
    color: #333;
    font-weight: 400;
  }
  .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;
  }
  
 