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

body {
    margin: 0;
    padding: 0;
    list-style: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
}

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

:root {
    --primary1: 34, 48, 86;
    /* #223056 */
    --primary2: 246, 163, 2;
    /* #F6A302 */
    --primary3: 118, 133, 165;
    /* #7685A5 */
    --primary4: 255, 0, 0;
    /* #ff0000 */
    --primary5: 245, 248, 253;
    /* #F5F8FD */
    --baseColor: 106, 106, 106;
    /* #6A6A6A */
    --color_gray: 245, 245, 245;
    /* #F5F5F5 */
    --color_black: 0, 0, 0;
    --color_white: 255, 255, 255;
    --baseFont: 'Quicksand', sans-serif;
    --titleFont: 'Poetsen One', sans-serif;
    --imgPrimary1: invert(16%) sepia(7%) saturate(7217%) hue-rotate(192deg) brightness(90%) contrast(89%);
    --imgPrimary2: invert(57%) sepia(108%) saturate(1822%) hue-rotate(8deg) brightness(127%) contrast(98%);
    --imgPrimary4: invert(66%) sepia(7%) saturate(0%) hue-rotate(251deg) brightness(95%) contrast(80%);
    --imgWhite: invert(100%) sepia(100%) saturate(0%) hue-rotate(13deg) brightness(103%) contrast(102%);
    --imgBlack: invert(0%) sepia(100%) saturate(0%) hue-rotate(108deg) brightness(93%) contrast(103%);
    --padding: clamp(3.125rem, 2.8125rem + 1.5625vw, 4.6875rem);
    --mb: 1.5rem;
    --bs-breadcrumb-divider: '•';
}

/*** 

====================================================================
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;
    font-family: 'Poppins', sans-serif;
}

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

p,
.text {
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #292929;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

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;
    padding: 0 15px;
}

/* Sub-menu initially hidden */
.main-menu .navigation>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100%;
    width: 300px;
    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;
    border-radius: 0px 0px 20px 20px;
    overflow: hidden;
}

/* 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 {
    position: relative;
    padding: 7px 13px;
    line-height: 26px;
    font-weight: 500;
    font-size: 15px;
    color: #ffffff;
    text-align: left;
    margin: 0;
    text-transform: capitalize;
    background-color: #313174;
    /* Ensure a consistent background */
    display: block;
    border-bottom: 1px solid #e5e5e50f !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: #dc241d;
    /* 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: 346px;
}

.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;
    font-weight: 400;
    color: #c40404;
    font-size: 18px;
    letter-spacing: 1px;
    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: #dddddd1c;
}

.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;
    width: 90%;
    margin: 0 auto;
    padding: 0px 0px;
}

.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: 1920px) {

    .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 39px 0px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        padding-right: 25px;
        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;
    }

    .Application-slider .slick-next {
        display: none !important;
    }

    .Application-slider .slick-prev {
        display: none !important;
    }
}

@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;
    }

}

@media (max-width:1440px) {
    #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: 7px;
    }

    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) {
    .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;
    background: #d5250f;
    z-index: 100;
}

.header-top:before {
    content: "";
    /* background: #30337a; */
    transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    height: 100%;
    width: 79px;
    left: 37%;
    top: 0;
    position: absolute;
}

.header-top:after {
    background: #2d2d72;
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    content: '';
    z-index: -1;
}

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

.header-top .top-right {
    float: right;
}

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

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

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

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

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

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

.menu-container {
    width: 90%;
    margin: 0 auto;
}

/* ............banner............. */

.slider-style-seven {
    position: relative
}

.slider-style-seven .slide {
    position: relative;
    /* padding: 229px 0 205px 0; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 85vh;
    display: flex;
    align-items: center;
}

.slider-style-seven .slide:before {
    position: absolute;
    content: '';
    background-image: -webkit-linear-gradient(0deg, rgb(14 14 14 / 39%) 50%, rgb(0 0 0 / 4%) 100%);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.slider-style-seven .content-box h1,
.slider-style-seven .content-box h3 {
    position: relative;
    display: block;
    font-size: 50px;
    line-height: 57px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 24px;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px)
}

.slider-style-seven .active .content-box h1,
.slider-style-seven .active .content-box h3 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 500ms
}

.slider-style-seven .content-box .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 32px;
    color: #fff;
    margin-bottom: 37px;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
    transform: translateX(-20px)
}

.slider-style-seven .active .content-box .text {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 1000ms
}

.slider-style-seven .content-box .btn-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    border: 3px solid #fff;
    background: #fff0;
    text-align: center;
    padding: 13px 30.5px;
}

.slider-style-seven .content-box .btn-box a:hover {
    background: var(--light);
    border-color: var(--light)
}

.slider-style-seven .content-box .btn-box {
    position: relative;
    display: block;
    opacity: 0;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px)
}

.slider-style-seven .active .content-box .btn-box {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 1500ms
}

.slider-style-seven .content-box {
    position: relative;
    max-width: 800px;
    width: 100%;
}

.slider-style-seven .owl-nav,
.slider-style-seven .owl-dots {
    display: none
}

.intro-style-three {
    position: relative;
    display: block
}

.intro-style-three .content-box h2 {
    position: relative;
    display: block;
    font-size: 36px;
    line-height: 47px;
    color: #282828;
    font-weight: 700;
    margin-bottom: 8px
}

.intro-style-three .content-box .text {
    position: relative;
    display: block;
    color: #686868;
    margin-bottom: 16px
}

.intro-style-three .btn-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    color: #0c0d24;
    border: 1px solid #e9e9e9;
    text-align: center;
    padding: 13.5px 31px
}

.intro-style-three .btn-box a:hover {
    color: #fff;
    background: var(--light);
    border-color: var(--light)
}

.intro-style-three .inner-box {
    position: relative;
    margin-top: -60px
}

.intro-style-three .inner-box .single-item {
    position: relative;
    display: block;
    background: #fff;
    padding: 43px 35px 49px 35px;
    box-shadow: 0 0 20px rgb(0 0 0 / .1);
    text-align: center;
    border-radius: 10px
}

.intro-style-three .inner-box .single-item:before {
    width: 100%;
    height: 5px;
    position: absolute;
    content: "";
    background: #fff0;
    left: 0;
    bottom: 0;
    transform: scaleX(0);
    transition: .5s ease
}

.intro-style-three .inner-box .single-item:hover:before {
    transform: scaleX(1);
    background: var(--light)
}

.intro-style-three .inner-box .single-item .icon-box {
    position: relative;
    display: inline-block;
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 22px;
    color: #fff0;
    background: -webkit-linear-gradient(0deg, #fc9636, #fd4471 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0
}

.intro-style-three .inner-box .single-item h3 {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    color: #0c0d24;
    margin-bottom: 10px
}

.intro-style-three .inner-box .single-item h3 a {
    position: relative;
    display: inline-block;
    color: #0c0d24
}

.intro-style-three .inner-box .single-item h3 a:hover {
    color: var(--light)
}

.intro-style-three .inner-box .single-item .text {
    position: relative;
    display: block;
    font-size: 16px;
    margin-bottom: 23px
}

.intro-style-three .inner-box .single-item .btn-box a {
    padding: 6px 34.5px
}

.intro-style-three .content-box {
    position: relative;
    background: #fff;
    padding: 52px 15px 30px 0
}

.intro-style-three .content-box:before {
    position: absolute;
    content: '';
    background: #fff;
    width: 130px;
    height: 100%;
    left: -130px;
    top: 0
}

.intro-style-three .content-box:after {
    position: absolute;
    content: '';
    background: #fff;
    width: 50px;
    height: 100%;
    right: -50px;
    top: 0
}

.intro-style-three .inner-container {
    position: relative;
    background: #fff0;
    margin-top: -55px;
    z-index: 1
}

.fabrics-section {
    position: relative;
    display: block;
    padding: 70px 0 0
}

.fabrics-section .single-item-carousel .owl-dots {
    display: none
}

.products-carousel .owl-dots {
    display: none
}

.fabrics-section .single-item-carousel .owl-nav {
    position: absolute;
    left: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 32px 40px 12px 40px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px
}

.products-carousel .owl-nav {
    position: absolute;
    left: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 32px 40px 12px 40px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px
}

.fabrics-section .single-item-carousel .owl-nav .owl-prev,
.fabrics-section .single-item-carousel .owl-nav .owl-next {
    position: relative;
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    margin: 0 10px;
    color: #d0d0d7;
    cursor: pointer;
    transition: all 500ms ease
}

.products-carousel .owl-nav .owl-prev,
.products-carousel .owl-nav .owl-next {
    position: relative;
    display: inline-block;
    font-size: 30px;
    font-weight: 600;
    margin: 0 10px;
    color: #d0d0d7;
    cursor: pointer;
    transition: all 500ms ease
}

.fabrics-section .single-item-carousel .slide-item img {
    width: 100%
}

.products-carousel .slide-item img {
    width: 100%
}

.slider-style-seven.home-8 .owl-dots {
    position: absolute;
    display: block;
    left: 80%;
    top: 100%;
    transform: translateY(-50px);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto
}

.slider-style-seven.home-8 .owl-theme .owl-dots .owl-dot span {
    position: relative;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 500ms ease
}

.slider-style-seven.home-8 .owl-theme .owl-dots .owl-dot.active span {
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fff0;
    top: 3px
}

.owl-dots button span {
    background-color: #ffffff !important;
    border: 1px solid #0c0d24 !important
}

.owl-dots .owl-dot.active span {
    background: #0c0d24 !important
}

.slider-style-seven.home-8 .content-box h5 {
    position: relative;
    display: block;
    font-size: 15px;
    line-height: 28px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear
}

@keyframes zoom-fade {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }
}

/* 
/* about section second section */
.wps_home_about {
    width: 100%;
    margin: 0;
    padding: 20px 0 20px;
    position: relative;
    z-index: 1;
    background: #fcd619;
}

.h1_title {
    color: #333;
    font-size: 35px;
    line-height: 40px;
    text-transform: capitalize;
    /* letter-spacing: 2px; */
    font-weight: 500;
    position: relative;
    z-index: 111;
}

.text {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}

.text p {
    font-size: 16px;
    color: #121212;
    line-height: 25px;
    margin: 0;
    padding: 0;
    font-weight: 500;
}

.wps_home_about .h1_title {
    margin: 20px 0;
    align-items: center;
    display: flex;
    font-weight: 800;
}

.text .exp {
    display: flex;
    margin-top: 5px;
}

.text .exp .exp_num {
    font-size: 75px;
    font-weight: 700;
    background: url(../images/rocks.jpg);
    background-size: cover;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.text .exp .valign {
    font-weight: 700;
    padding-left: 20px;
    color: #ca2212;
    font-size: 24px;
    line-height: 30px;
    display: flex;
    align-items: center;
}

.hr_padding {
    margin-top: 20px;
    background: #535353;
    margin-bottom: 0;
}

.home_about_2 {
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
    z-index: 100;
}

.h2_title {
    font-size: 36px;
    color: #ca2212;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 30px;
}

.home_about_2 .h2_title {
    font-size: 40px;
    color: #2f3275;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 8px;
    font-weight: 800;
    line-height: 45px;
}

.home_about_2 h2,
.home_about_2 h3 {
    color: #000;
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 700;
}

.about_img {
    float: left;
    max-width: 540px;
    width: 100%;
    position: relative;
    margin: 12px 30px 10px 0px;
}

.about_img .img {
    position: relative;
}

.about_img .img img {
    position: relative;
    z-index: 2;
    background: #272727;
}

.about_img .about_img {
    width: 60% !important;
    position: absolute;
    bottom: 0px;
    right: 35px;
    z-index: 3;
    padding: 10px 15px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 13px;
    line-height: normal;
    text-align: center;
    background: var(--liner);
    background-color: #ca2212;
}

.home_about_2 p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    color: #1a1919;
    margin-bottom: 10px;
    text-align: justify;
}

.about-shape-4 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 893px;
    opacity: 0.08;
}

.about-shape-4 img {
    width: 100%;
}

.about-shape-5 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    width: 893px;
    opacity: 0.1;

}

.about-shape-5 img {
    width: 100%;
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

@keyframes float-bob-y {

    0%,
    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

@keyframes float-bob-x {

    0%,
    100% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }

    50% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

.som_home_product {
    float: left;
    width: 100%;
    margin: 0;
    padding: 40px 0;
    background: url("../images/bg.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.som_home_product::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: #fff;
    opacity: 0;
}

.som_home_product .item .item_info {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    margin-top: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 4px 0px;
    background: #fff;
}

.som_home_product .item:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -webkit-filter: brightness(70%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}

.som_home_product .item:hover .con {
    bottom: 0;
}

.som_home_product .item img {
    -webkit-transition: all .5s;
    transition: all .5s;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.som_home_product .item .con {
    padding: 30px 15px 0;
    position: absolute;
    bottom: -37px;
    left: 0;
    width: 100%;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: center;
    z-index: 20;
    height: auto;
    box-sizing: border-box;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 30%, rgba(255, 255, 255, 0) 100%);
}

.som_home_product .item .con .pr-ti,
.som_home_product .item .con .pr-ti a {
    position: relative;
    color: #fff;
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 5px;
    /* letter-spacing: 1px; */
    text-transform: capitalize;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .6);
    font-weight: 700;
    padding: 0;
}

.som_home_product .item .con p {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.som_home_product .item .con a {
    padding: 10px 0;
}

.som_home_product .item .con svg {
    color: #fff;
    width: 35px;
    height: 35px;
}

.som_home_product .item:hover .con .pr-ti a {
    color: #ff3623;
}

.som_home_product .item:hover .con svg {
    color: #ca2212;
}

.som_home_product .item .con .butn-light {
    margin-left: 0;
    border-radius: 30px;
    border-color: #999;
    padding: 11px 30px;
}

.som_home_product .item .con .butn-light:hover {
    border-color: #ca2212;
}

.som_home_product .owl-carousel .owl-dots .owl-dot.active span,
.som_home_product .owl-theme .owl-dots .owl-dot:hover span {
    background: #ca2212;
}

/* line animation */
.som_home_product .item .line {
    text-align: center;
    height: 1px;
    width: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
    margin: 0 auto 0px;
}

.som_home_product .item:hover .line {
    width: 100%;
    transition-property: all;
    transition-duration: 0.8s;
    transition-timing-function: ease-in-out;
}

.som_product {
    padding: 50px 0;
    width: 100%;
    width: 100%;
    background-color: #f7f7f745;
    background-image: url(../images/why-chouse-us.png);
}

.item_box {
    overflow: hidden;
    text-align: center;
    color: #fff !important;
    box-shadow: #fff 0 0 0 0;
    background: rgba(255, 255, 255, 1);
    border: #eaeaea 1px solid;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 auto
}

.item_box .image {
    position: relative;
    overflow: hidden;
}

.item_box .con {
    background-color: #da251dd9;
    /* padding-left: 10px; */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item_box .con .tt {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    width: calc(100% - 42px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 12px 10px;
    text-transform: capitalize !important;
}

.item_box .con .read-more {
    height: 42px;
    width: 42px;
    min-width: 42px;
    display: block;
    text-align: center;
    align-content: center;
    color: white;
    background-color: #ca2212;
}

.item_box .con .read-more svg {
    width: 18px;
    height: 18px;
}

.item_box .overlay-bx {
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100%;
    padding: 30px;
    padding-left: 50px;
    z-index: 1;
    transition: all 600ms ease;
}

.item_box:hover .overlay-bx {
    top: 0;
}

.item_box .overlay-bx::before {
    position: absolute;
    left: 25px;
    bottom: 0;
    height: 90%;
    width: 1px;
    background-color: #ffffff;
    content: "";
    opacity: .70;
}

.item_box .overlay-bx::after {
    position: absolute;
    bottom: 25px;
    left: 0;
    height: 1px;
    width: 90%;
    background-color: #ffffff;
    opacity: .70;
    content: "";
}

.item_box .overlay-bx p {
    color: white;
    font-size: 16px;
}

.item_box .overlay-bx a {
    color: #ca2212;
}

.item_box .overlay-bx a:hover {
    color: #fff;
}

.item_box .image img {
    width: 100%;
    object-position: center;
}

.services_feature {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background: #fff;
}

.h2_title_1 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    color: #ca2212;
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.h2_title_1:after {
    background: #ca2212 none repeat scroll 0 0;
    bottom: -10px;
    content: "";
    height: 1px;
    left: 50%;
    margin-left: -50px;
    position: absolute;
    width: 100px;
}

.services_feature .item-bx {
    padding: 25px;
    /* height: 100%; */
    background-color: #f5f5f5;
    border: 1px solid #e7e7e7;
    border-right: 0;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.services_feature .item-bx::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: 0.3s linear;
}

.services_feature .item-bx:hover:before {
    width: 100%;
}

.services_feature .item-bx:last-of-type {
    border-right: 1px solid #e7e7e7;
}

.services_feature .item-bx .titleH4 {
    color: var(--sec);
    font-weight: 600;
    /* letter-spacing: 1px; */
    padding: 0;
    margin: 0 0 4px;
    text-align: left;
    font-size: 17px;
    transition: 0.3s linear;
}

.services_feature .item-bx:hover .titleH4 {
    color: white;
}

.services_feature .item-bx .count {
    position: absolute;
    top: 20px;
    right: 50px;
    font-size: 70px;
    font-weight: 800;
    transition: 0.8s;
    color: rgba(255, 255, 255, 0.15);
}

.services_feature .item-bx p {
    color: #555;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    transition: 0.4s;
}

.services_feature .item-bx:hover p {
    color: white;
}

.services_feature .item-bx .numb {
    font-size: 60px;
    margin-bottom: 10px;
    color: transparent;
    -webkit-text-stroke: 1px #c5a47e;
}

.services_feature .item-bx img {
    margin-bottom: 20px;
    max-width: 70px;
}

.home_blog_1 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 50px 0;
    position: relative;
    background: #272727;
}

.img-wrap {
    position: relative;
    width: 100%;
    display: block;
    margin-bottom: 25px;
    height: 365px;
    overflow: hidden;
}

.img-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

.service_content {
    position: relative;
    height: 365px;
    color: #9f9f9f;
    font-size: 16px;
    line-height: 24px;
    background: #333;
    margin-bottom: 25px;
    border-radius: 0px 0px 0px 50px;
}

.home_bgrid_1:nth-child(2) .service_content {
    border-radius: 0px 50px 0px 0px;
}

.service_content .center_box {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    width: 100%;
    padding: 0 60px;
}

.service_content .center_box .sTitle_h4 {
    font-size: 25px;
    text-transform: uppercase;
    color: #ca2212;
    font-weight: 400;
    margin-bottom: 15px;
}

.service_content .center_box .sTitle_h4 a {
    color: #ca2212;
}

.service_content .center_box p {
    margin-bottom: 20px;
    color: #9f9f9f;
}

.testimonials {
    width: 100%;
    margin: 0;
    padding: 50px 0;
    background-image: url(../images/map.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.testimonials:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: #ffffffa1;
    opacity: 0.8;
    z-index: -1;
}

.testimonial-inner-content {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px 30px;
    -webkit-box-shadow: 0 7px 20px rgba(0, 0, 0, .07);
    box-shadow: 0 7px 20px rgba(0, 0, 0, .07);
    min-height: 250px
}

.quote-rating-box {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 15px
}

.how-it-work,
.how-it-work__count,
.how-it-work__count:before {
    position: relative;
    display: block
}

.quote-rating-box .icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 65px;
    height: 45px;
    -webkit-margin-end: 30px;
    margin-inline-end: 30px
}

.quote-rating-box .ratings-box h6 {
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 5px
}

.quote-rating-box .ratings-box ul.ratings {
    line-height: 20px;
    padding-left: 0;
    display: flex;
}

.quote-rating-box .ratings-box ul.ratings li {
    font-size: 14px;
    margin: 2px;
    letter-spacing: -.02em;
}

ul.ratings li {
    display: inline-block
}

ul.ratings li i {
    color: #f90
}

.single-testimonial-item {
    background-color: #fff;
    border-radius: 20px;
    padding: 10px
}

.testimonial-inner-content p,
.thankyou-wrapper {
    text-align: center;
    font-weight: 500;
}

.main-testmonial {
    padding: 50px 0;
    background-color: #fcfaf736
}

.testimonials .owl-next,
.owl-prev {
    background: #d61313 !important;
    width: 40px;
    height: 40px
}

.testimonials .downloads-section::after,
.how-it-work {
    background-repeat: no-repeat;
    background-size: cover
}

.testimonials .owl-nav span {
    color: #fff !important
}

.testimonials .owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.testimonials .owl-theme .owl-nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.testimonials .owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
    overflow: hidden;
}

.testimonials .owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none
}

.testimonials .owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.testimonials .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.testimonials .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.testimonials .owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
    width: 40px;
    overflow: hidden;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonials .owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}

.video_area .titleH5 {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.play_button {
    position: relative;
    width: 85px;
    height: 85px;
    margin: auto;
    -webkit-transform: scale(1.3);
    -ms-transform: scale(1.3);
    transform: scale(1.3);
    z-index: 4;
    margin-left: 15px;
}

.play_button svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.circle-fill circle {
    opacity: 1;
    fill: rgba(197, 164, 126, 0.5);
}

.polygon {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 80px;
    z-index: 2;
    padding-left: 5px;
}

.play_button svg.circle-fill {
    z-index: 1;
    stroke-dasharray: 322;
    stroke-dashoffset: 322;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.play_button:hover svg.circle-fill {
    stroke-dashoffset: 38.5;
}

.play_button svg.circle-track {
    z-index: 0;
}

.play_button.color {
    color: #ca2212;
}

.play_button.color .circle-fill circle {
    fill: #ca2212;
}

.polygon svg {
    width: 50px;
    height: 50px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.video_icon {
    margin-bottom: 30px;
}

.clientSection {
    float: left;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    background-color: #323232;
}

.clientSection .clients {
    opacity: 1;
    padding: 15px 20px;
    line-height: 0;
    position: relative;
    height: 75px;
    overflow: hidden;
}

.clients img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    width: auto !important;
    height: auto;
    -webkit-filter: none;
    filter: none;
    padding: 10px;
}

.clients img:hover {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.clientSection .clients:hover {
    opacity: 1;
}

.title-bx {
    max-width: 1000px;
    margin: 0 auto 30px;
}

.title-bx p {
    text-align: center;
    color: #555;
    font-weight: 500;
    font-size: 17px;
}

.title_1 {
    float: left;
    width: 100%;
    color: #000;
    font-size: 25px;
    text-transform: capitalize;
    font-weight: 700;
    display: block;
    padding-bottom: 15px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.title_1 span {
    color: #ca2212;
}

.title_1:before {
    content: '';
    background: #ca2212;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: -10px;
    width: 50px;
    height: 5px;
    margin: 0 auto;
}

.title_2 {
    color: #313176;
    font-size: 41px;
    /* text-transform: uppercase; */
    font-weight: 900;
    display: block;
    padding-bottom: 3px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.title_2 span {
    color: #191b5f;
}

.title_2:before {
    content: '';
    background: #ca2212;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin-bottom: -10px;
    width: 65px;
    height: 5px;
    margin: 0 auto;
}

.title_3 {
    float: left;
    width: 100%;
    color: #ca2212;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    padding-bottom: 15px;
    text-align: left;
    margin-bottom: 30px;
    position: relative;
}

.title_3:after {
    content: '';
    background: #ca2212;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 5px;
    margin: 0;
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
    position: relative;
    display: block;
    background: linear-gradient(90deg, #323276, #323376);
    /* Red to Yellow gradient */
    /* padding: 62px 0px; */
    overflow: hidden;
    z-index: 1;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.counter-one__bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: .90;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* mix-blend-mode: darken; */
    z-index: -1;
}

.counter-one__shape-1 {
    position: absolute;
    left: 0;
    top: 30px;
    opacity: .89;
    z-index: -1;
}

.counter-one__shape-1 img {
    width: auto;
}

.counter-one__shape-2 {
    position: absolute;
    right: 0;
    top: 0px;
    z-index: -1;
}

.counter-one__shape-2 img {
    width: auto;
}

.counter-one__single {
    position: relative;
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    /* flex-direction: column; */
    justify-content: center;
    border: 1px solid #ffffff0f;
    padding: 40px 14px;
    margin-top: 71px;
    margin-bottom: 50px;
    border-radius: 9px;
    background: #cf1e18;
}

.counter-one__single::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -35px;
    width: 2px;
    height: 400px;
    /* background-color: rgb(255 255 255 / 6%); */
    transform: translateY(-50%);
}

.counter-one ul li:first-child .counter-one__single::before {
    display: none;
}

.counter-one__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.counter-one__single:hover .counter-one__icon {
    background-color: #ffffff;
}

.counter-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 32px;
    color: #cf1e18;
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.counter-one__single:hover .counter-one__icon span {
    transform: scale(0.9);
}

.counter-one__content {
    position: relative;
    display: block;
    flex: 1;
    padding-left: 7px;
}

.counter-one__count-box {
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.counter-one__count-box p {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px !important;
    letter-spacing: -0.02em;
    color: #fff;
}

.counter-one__count-box span {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px !important;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: uppercase;
}

.counter-one__count-text {
    font-size: 19px;
    font-weight: 400;
    line-height: 25px;
    color: #fff;
    margin-top: 8px;
}

footer {
    float: left;
    width: 100%;
    position: relative;
    display: block;
    background: #0f0f0f;
    background-size: cover;
    background-position: center;
    padding: 70px 0 0px;
    background-image: url(../images/footer-imgae.jpg);
}

footer .widget_logo {
    margin-bottom: 15px;
    position: relative;
}

footer .widget_logo img {
    max-width: 200px;
    padding: 10px;
    background-color: #fff;
    border-radius: 3px;
}

footer p {
    color: #d7d7d7;
}

footer .widget_desc {
    font-size: 16px;
    line-height: 1.71;
    color: #d7d7d7;
    margin-bottom: 25px;
    font-weight: 400;
}

footer .widget_info {
    position: relative;
    font-weight: 400;
    font-size: 14px;
    color: #d7d7d7;
    padding-left: 28px;
    margin-bottom: 5px;
}

footer .widget_info p {
    color: #d7d7d7;
    font-size: 14px;
    text-align: left;
}

footer .widget_info svg {
    margin-right: 20px;
    position: absolute;
    left: -10px;
    top: 8px;
    font-style: normal;
    display: inline;
    line-height: unset;
    vertical-align: middle;
    color: #ca2212;
    width: 24px;
    height: 24px;
}

footer .widget_info a {
    font-size: 15px;
    line-height: 1.86;
    color: #ddd;
    font-weight: 600;
}

footer .widget_info a:hover {
    color: #ca2212;
    text-decoration: none;
}

footer .widget-title {
    margin: 0 0 15px;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
}

.widget ul {
    padding: 0;
    margin: 0;
}

.widget ul li {
    list-style: none;
    margin-bottom: 7px;
    line-height: 24px;
    position: relative;
    padding-left: 25px;
    /* slightly more space for icon */
}

/* Remove the old dot and use Font Awesome icon */
.widget ul li:before {
    content: "\f14c";
    /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    /* required for FA6 */
    font-weight: 900;
    /* solid icon weight */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    /* icon color */
    font-size: 12px;
    /* adjust size if needed */
}

/* border-radius: 5px; */


.social li {
    position: inherit !important;
}

.widget ul li a {
    font-weight: 500;
    font-size: 16px;
    color: #d7d7d7;
}

.widget ul li a:hover {
    color: #ca2212;
}

.gallery {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    grid-template-columns: auto auto auto;
    grid-gap: 10px;
    margin: 0;
}

.gallery .gallery-item {
    margin: 0;
    padding: 0;
    position: relative;
}

.sub_footer {
    float: left;
    width: 100%;
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sub_footer_line {
    padding: 15px 15px 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.sub_footer_line:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.sub_footer p {
    font-size: 14px;
    color: #d7d7d7;
    line-height: 1.6;
    margin-bottom: 0;
}

.sub_footer p a:hover {
    color: #ca2212;
}

.sub_footer p.right {
    text-align: right;
}

ul.social {
    float: left;
    margin: 0;
    list-style: none;
    padding: 0px;
    width: 100%;
}

.sub_footer ul.social {
    text-align: center;
}

ul.social li {
    margin: 9px 0 0 7px;
    display: inline-block;
    padding-left: 0px;
}

ul.social li::before {
    display: none;
}

ul.social li a {
    transition: background 400ms ease-in-out;
    text-align: center;
    width: 35px;
    height: 35px;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #231573;
}

ul.social li a svg {
    color: #fff;
    width: 15px;
    height: 15px;
    margin: 0;
    padding: 0;
}

ul.social li.facebook a {
    background: #3C5B9B;
}

ul.social li.twitter a {
    background: var(--liner);
    background-color: #000;
}

ul.social li.linkedin a {
    background: #027ba5;
}

ul.social li.youtube a {
    background: #f70000;
}

ul.social li.instagram a {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.countries_link {
    position: relative;
    cursor: pointer;
    margin-left: 1rem;
    color: #999;
    display: inline-block;
}

.countries_link p {
    border: 1px solid #ca2212;
    color: #ca2212;
    padding: 7px 16px;
    line-height: normal;
    border-radius: 0;
    margin: 0;
}

.countries_link p:hover,
.countries_link p:focus {
    color: #fff;
    background: #ca2212;
    border-color: #ca2212;
}

.market {
    text-align: right;
    color: #d7d7d7;
    font-family: var(--font);
    font-size: 14px;
}

.som_bottom {
    float: left;
    width: 100%;
    margin: 0;
    padding: 14px 0;
    text-align: center;
    color: #d7d7d7;
    background: #3d3c3cad;
    font-weight: 500;
    /* font-family: var(--font); */
    font-size: 14px;
    margin-top: 15px;
}

.som_bottom a {
    font-size: 14px;
    display: inline-block;
    color: #dddddd;
}

.som_bottom a:hover {
    color: #ca2212;
}

#serviceSection {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    padding-top: 40px;
    padding-bottom: 80px;
}

#serviceSection .bodySection .nav-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#serviceSection .bodySection .nav-pills object {
    width: 50px;
    filter: brightness(0) invert(1);
    pointer-events: none;
    vertical-align: middle;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

#serviceSection .bodySection .nav-pills .nav-item {
    margin: 0 30px;
}

#serviceSection .bodySection .nav-pills .nav-link {
    background: transparent;
    border: 2px solid #eb3238;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px
}

#serviceSection .bodySection .nav-pills .nav-link p {
    margin-bottom: 0;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}

#serviceSection .bodySection .nav-pills .nav-link i {
    color: #e92c32;
    font-size: 40px;
}

#serviceSection .bodySection .nav-pills .nav-link:hover,
#serviceSection .bodySection .nav-pills .nav-link:focus,
#serviceSection .bodySection .nav-pills .nav-link.active {
    background-color: #eb3238;
    border: 2px solid #ed3138;
}

#serviceSection .bodySection .tab-content .tab-pane {
    min-height: 250px;
}

#serviceSection .bodySection .tab-content {
    margin-top: 50px;
}

#serviceSection .bodySection .tab-content .tab-pane h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: #eb3238;
}

#serviceSection .bodySection .tab-content .tab-pane hr {
    border: 1px solid #eb3238;
    opacity: 1;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 25px;
}

#serviceSection .bodySection .tab-content .tab-pane p {
    font-size: 18px;
    padding: 0 40px;
    color: #000;
    font-weight: 500;
}

#serviceSection .bodySection .tab-content .tab-pane .btn-showAll {
    color: #000;
    background-color: transparent;
    border: 3px solid #35a937;
    margin-top: 20px;
}

#serviceSection .bodySection .tab-content .tab-pane .btn-showAll:hover,
#serviceSection .bodySection .tab-content .tab-pane .btn-showAll:focus {
    color: #ffffff;
    background-color: #35a937;
}

#serviceSection .bodySection .nav-pills .nav-link:hover p,
#serviceSection .bodySection .nav-pills .nav-link:focus p,
#serviceSection .bodySection .nav-pills .nav-link.active p {
    color: #fff;
}

#serviceSection .bodySection .nav-pills .nav-link:hover i,
#serviceSection .bodySection .nav-pills .nav-link:focus i,
#serviceSection .bodySection .nav-pills .nav-link.active i {
    color: #fff;
}

/*====solution section end=======*/
/*====gallery section start=====*/
.gallerySec {
    padding-bottom: 160px;

    .gallerySlider {

        .galleryTitle {
            padding: 15px 20px;
        }

        .slick-dots {
            display: flex;
            gap: 6px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: -60px;
            align-items: center;

            li {
                button {
                    font-size: 0px;
                    width: 15px;
                    height: 15px;
                    border-radius: 50%;
                    border: 1px solid #3043AB;
                    background-color: transparent;
                    transition: 0.5s;
                }

                &.slick-active {
                    button {
                        width: 80px;
                        border-radius: 10px;
                        height: 10px;
                        background-color: #FFC700;
                        border: 1px solid #FFC700;
                    }
                }
            }
        }
    }
}

.galleryItem {
    margin: 0px 20px !important;
}

.testimonial2 {
    background: #f3f2f2c7 !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
    visibility: hidden;
}

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

.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
}

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

.goog-te-gadget-simple li a {
    color: #000 !important;
}

.hmallproduct {
    padding: 70px 0;
    background: #f4f4f5;
}

.solidtitle {
    margin: 0 0 20px 0;
    text-transform: uppercase;
    font-size: 45px;
    text-align: center;
    font-weight: 600;
    line-height: 1.1em;
    font-family: 'Poppins', sans-serif;
    background: -webkit-linear-gradient(45deg, #a00000, #da0808 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo_items img {
    height: 108px;
    margin: 0 10px;
    padding: 4px 10px;
    object-fit: contain;
    width: 198px;
    border: 1px solid #d2d2d2;
    border-radius: 8px;
    max-width: inherit;
}

.logos {
    overflow: hidden;
    padding-bottom: 30px;
    white-space: nowrap;
    position: relative;
}

.slides1 {
    animation: 25s slides infinite linear;
}

.logo_items {
    display: inline-block;
}

@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.tag a {
    color: #fff;
    position: relative;
}

.tag a::before {
    content: '\f121';
    font-family: 'FontAwesome';
    margin-right: 13px;
    font-size: 15px;
    margin-top: -3px;
    color: #d41c22;
}

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

#action-tabs-wrap {
    z-index: 9999;
}

#action-tabs {
    position: fixed;
    left: 100%;
    top: 58%;
    z-index: 109;
}

#action-tabs a {
    height: 50px;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-align: left;
    color: white;
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateX(-50px);
    position: relative;
    transition: transform ease-in-out 500ms;
    white-space: nowrap;
    border-radius: 5px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

#action-tabs .newcall {
    background-image: url('../images/phone-call.png');
    background-color: #cb2528;

}

#action-tabs .whatsp {
    background-image: url('../images/wtsp2.png');
    background-color: #cb2528;
}

#action-tabs .deal-wrp {
    background-image: url('../images/locationside.png');
    background-color: #cb2528;
}

#action-tabs .mail-wrp {
    background-image: url('../images/mail.png');
    background-color: #cb2528;
}

#action-tabs a:hover {
    transform: translateX(-100%);
    text-decoration: none;
}

#action-tabs a span {
    display: block;
    background: #011944;
    height: 50px;
    margin-left: 50px;
    padding: 0px 20px 0 15px;
    line-height: 50px;
    width: 190px;
}

.why-span {
    color: #eb3238 !important;
    font-size: 34px;
}

.why-title_2 {
    line-height: 45px;
}

.portfolio-area {
    position: relative;
}

.pa-bg {
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 500px;
}

.pa-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 63, 114, .85);
    width: 100%;
    height: 100%;
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: #ea313a70;
    transform: scale3d(1.5, 1.5, 1.5);
    transition: all .5s ease-in-out;
}

.portfolio-item:hover .portfolio-img::before {
    opacity: .8;
    transform: scaleY(1);
}

.portfolio-link {
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #ea313a;
    background: #fff;
    border-radius: 50px;
    text-align: center;
    left: 50%;
    top: 50%;
    font-size: 28px;
    margin-top: 50px;
    opacity: 0;
    box-shadow: var(--box-shadow);
    transform: translate(-50%, -50%);
    transition-delay: 0.3s;
}

.portfolio-link:hover {
    color: #ea313a;
}

.portfolio-item:hover .portfolio-link {
    margin-top: 0px;
    opacity: 1;
}

.portfolio-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: #f4f6f7d9;
    text-align: center;
}

.portfolio-content small {
    text-transform: uppercase;
    font-weight: 600;
    color: #ea313a;
    letter-spacing: 2px;
}

.portfolio-content h4 a {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    text-transform: capitalize !important;
}

.portfolio-content h4 a:hover {
    color: #ea313a;
}

.portfolio-arrow {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #ec3339;
    color: #fff;
    text-align: center;
    border-radius: 50px;
}

.portfolio-arrow i {
    color: #fff;
    transform: rotate(-45deg);
    transition: all .5s ease-in-out;
}

.portfolio-arrow:hover i {
    transform: rotate(0);
}

.sa-bg {
    position: relative;
    z-index: 1;
    padding: 60px 0px;
    background: #f1f1f130;
}

.portfolio-item {
    height: auto;
    border-radius: 25px;
    overflow: hidden !important;
    margin-bottom: 40px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.portfolio-slider img {
    background: #ffffff;
}

/* 
..................other-product............... */

.other-product .owl-nav {
    display: none !important;
}

.other-product .owl-dots {
    text-align: center;
    padding-top: 20px;
}

.other-product .owl-dot {
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.other-product .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background: #ccc !important;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.other-product .owl-dot:hover span {
    background: #666;
    transform: scale(1.2);
}

.other-product .owl-dot.active span {
    background: #ea313a !important;
    /* Accent color for active dot */
    transform: scale(1.5);
}



/***
=============================================
    Page Header
=============================================
***/
.page-header {
    position: relative;
    display: block;
    padding: 130px 0 130px;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.page-header:before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: rgb(0 0 0 / 68%);
    z-index: -1;
}

.page-header__inner {
    position: relative;
    display: block;
    text-align: center;
    z-index: 3;
}

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

.thm-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

.thm-breadcrumb li {
    position: relative;
    /* display: inline-block; */
    color: #999;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 500ms ease;
    margin-left: 10px;
    line-height: 39px;
}

.thm-breadcrumb li a {
    color: #ffffff;
    font-size: 16px;
    /* letter-spacing: 3px; */
    font-weight: 400;
    /* text-transform: uppercase; */
    transition: all 500ms ease;
}


.thm-breadcrumb li i::before {
    font-size: 15px;
    color: #ffffff;

}



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

.inner-pages-section {
    padding: 50px 0px;
}


.inner-pages-product-image {
    float: right;
    max-width: 410px;
    width: 100%;
    margin-left: 25px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.inner-pages-product-image img {
    width: 100%;
    border: 2px solid #abb2ba52;
    border-radius: 10px;
}

.product-innerdescription p {
    font-weight: 400;
    text-align: justify;
    margin-bottom: 15px;
}


.product-innerdescription-h2 {
    font-weight: 800;
    color: #cb2528;
}

.product-innerdescription strong {
    font-weight: 500;
    color: #000000;
}

.product-innerdescription a {
    font-weight: 700;
    color: #0249b1;
}

.portfolio-slider .col-md-6 {
    margin-bottom: 20px;
}

.gallery ul {
    margin: 0;
}

.gallery ul li {
    float: left;
    width: 31.33%;
    list-style: none;
    /* padding: 10px; */
    position: relative;
    border: 1px solid #00000038;
    /* gap: 20px; */
    margin-bottom: 20px;
    border-radius: 16px;
    margin: 10px;
}

.gallery ul li::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 92%;
    width: 95%;
    opacity: 0;
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    content: "";
    background: rgba(0, 0, 0, 0.4);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    right: 0;
    bottom: 0;
    margin: auto;
}

.gallery ul li:hover:before {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
}

.gallery ul li a {
    float: left;
    width: 100%;
}

.gallery ul li a::after,
.gallery ul li a::before {
    width: 40%;
    height: 40%;
    opacity: 0;
    content: "";
    transition: 0.5s;
    position: absolute;
}

.gallery ul li a::before {
    top: 10%;
    left: 7%;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
}

.gallery ul li a::after {
    bottom: 10%;
    right: 7%;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
}

.gallery ul li:hover a::after,
.gallery ul li:hover a::before {
    width: 86%;
    height: 80%;
    opacity: 0.7;
}

.gallery ul li img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.gallery ul li i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    background: #f6811a;
    color: #fff;
    opacity: 0;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 100%;
    font-size: 21px;
    cursor: pointer;
}

.gallery ul li:hover i {
    opacity: 1;
}

.gallery .mfp-wrap.mfp-gallery,
.mfp-ready {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.mfp-figure figure {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.news-one__content h3 {
    margin-bottom: 0px;
}

.special-links {
    position: sticky;
    top: 10%;
}

.contact-form {
    border: 1px solid #ddd;
    transition: all 0.4s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: #f8f9fa;
    border-left: 5px solid #ca2528;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.contact-info:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ca2528;
}

.contact-info p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info i {
    color: #ca2528;
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
}

.contact-info a {
    color: #ca2528;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.btn-primary {
    background: #ca2528;
    border: none;
    padding: 12px 0px;
    /* display: contents; */
}

.fa-paper-plane {
    color: #ca2528 !important;
}

.contact-form h3 {
    font-weight: 600;
}


.contact-details {
    background: #f8f9fa;
    border-left: 4px solid #ca2528;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-details:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.contact-details h4 {
    color: #ca2528;
    font-weight: 600;
}

.contact-details a {
    color: #000000;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}



.contact-details li {
    font-weight: 500;
}

.contact-details li i {
    color: #ca2528 !important;
}

.fa-map-marker-alt {
    color: #ca2528 !important;
}

.fa-phone-alt {
    transform: rotate(90deg);
}

.about-p strong {
    font-weight: 700;
}

.home-abhou-t-conetnt a {
    color: #0156a5;
    font-weight: 700;
}


.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    background-color: #ea313a;
    border-radius: 50%;
    font-size: 20px
}


/* .............owner-setcion.......... */

.food-tech-section {
    background-color: #f9f9f9;
    border-radius: 10px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    padding: 40px 0;
}

.food-tech-section .section-title {
    font-size: 36px;
    color: #333333;
    font-weight: 700;
}

.food-tech-section .section-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: justify;
}

.food-tech-section .btn-success {
    padding: 10px 20px;
    border-radius: 5px;
}

.owner-image {
    width: 100%;
}

.custom-btn {
    background: linear-gradient(90deg, #de2a1b, #fab400cc);
    /* Red to Yellow gradient */
    color: #fff;
    font-weight: bold;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none;
}

.custom-btn:hover {
    background: linear-gradient(90deg, #e60000, #ffb300);
    transform: translateY(-2px);
    text-decoration: none;
}

.about_img img {
    width: 100%;

}

/* Section Styling */
.about_us_section {
    position: relative;
    padding: 60px 0;
    background: #f9f9f9;
    overflow: hidden;
}

/* Floating shapes */
.shape-1 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    opacity: 0.6;
}

.float-bob-x {
    animation: floatX 6s ease-in-out infinite alternate;
}

@keyframes floatX {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(20px);
    }

    100% {
        transform: translateX(0px);
    }
}

/* Image animation */
.about_img_col img.animated-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-30px);
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
}

/* Headings animation */
.animated-heading {
    font-size: 1.5rem;
    color: #d51f17;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
    margin-bottom: 0px;
}

.animated-company {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.7s;
    color: #313073;
}

/* Description animation */
.animated-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.9s;
    text-align: justify;
    font-weight: 500;
    color: #2b2b2b;
}

/* Features animation */
.animated-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.animated-features li {
    font-size: 1rem;
    margin-bottom: 12px;
    opacity: 0;
    animation: fadeInRight 0.8s forwards;
    font-weight: 500;
}

.animated-features li i {
    color: #2c2f77;
    margin-right: 10px;
}

/* Staggered feature animation */
.animated-features li:nth-child(1) {
    animation-delay: 1.1s;
}

.animated-features li:nth-child(2) {
    animation-delay: 1.3s;
}

.animated-features li:nth-child(3) {
    animation-delay: 1.5s;
}

.animated-features li:nth-child(4) {
    animation-delay: 1.7s;
}

/* Button animation */
.animated-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 1.9s;
}

.animated-btn i {
    font-size: 0.9rem;
}

/* FadeInUp Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* FadeInRight Animation */
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

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

/* Responsive */
@media (max-width: 991px) {
    .about_us_section {
        padding: 60px 20px;
    }

    .animated-company {
        font-size: 2rem;
    }
}

.animated-desc strong {
    font-weight: 600;
}

.about_content_col {
    padding-left: 15px;
}



.section_title h4 {
    padding: 4px 31px 3px 62px;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    display: inline-block;
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    color: #e53825;
    font-weight: 500;
    background: #fff;
    border-radius: 30px;
}

.section_title h1 {
    font-size: 33px;
    line-height: 44px;
    color: #2c3071;
    font-weight: 800;
}

h4.style-tow {
    background: #ffebed;
}

.section_title h4::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 30px;
    background-repeat: no-repeat;
    left: 11%;
    top: 48%;
    background: #e53925;
}



.section_title span {
    color: #e53925;
    display: inline-block;
}

.section_title.text-center {
    margin-bottom: 68px;
}

.section_title.text-left {
    margin-bottom: 36px;
}

.section_title p {
    font-weight: 400;
    margin-bottom: 15px;
    text-align: justify;
    font-size: 17px;
}

.popular_btn_arrow.roadly_btn.style-two {
    margin-left: 20px;
}

.roadly_btn {
    display: inline-block;
}

.roadly_btn a {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    background: #cc1b0f;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: none;
    padding: 15px 30px 15px;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 500;
    border-radius: 4px;
}

.roadly_btn a::before {
    position: absolute;
    content: "";
    height: 0;
    width: 0;
    background: #33337a;
    right: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}

.roadly_btn a i {
    display: inline-block;
    font-size: 20px;
    margin-left: 8px;
    transform: rotate(-45deg);
}

.roadly_btn a:hover::before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.about_thumb {
    position: relative;
    z-index: 1;
    text-align: right;
}

.about-shape {
    position: absolute;
    top: 39%;
    left: 6%;
    animation-name: float-bob;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -moz-animation-name: float-bob;
    -moz-animation-duration: 2s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob;
    -ms-animation-duration: 2s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob;
    -o-animation-duration: 2s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@keyframes float-bob {
    0% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
}

@keyframes float-bob2 {
    0% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }

    50% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    100% {
        -webkit-transform: translateY(-60px);
        transform: translateY(-60px);
    }
}

@keyframes float-bob3 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

@keyframes float-bob4 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

@keyframes float-bob5 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

@keyframes float-bob6 {
    0% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    50% {
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes movebounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    50% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes moveleftbounce {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }

    50% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.about-coun-box {
    position: absolute;
    bottom: -38px;
    right: 24px;
    text-align: center;
    background: #e53925;
    padding: 11px 31px 26px;
}

.about-coun-box::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: url(../images/coun-shape.png);
    background-repeat: no-repeat;
    left: 56%;
    background-position: center;
    bottom: -41%;
}

span.coun-number {
    display: inline-block;
    font-size: 59px;
    line-height: 120px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: -17px;
    width: 120px;
    height: 120px;
    border-radius: 60px;
    background-image: linear-gradient(180deg, #c7210f 0%, #e53725 100%);
}

h3.coun-title {
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 600;
}

.about_area {
    padding: 62px 0px;
    background: url(../images/bg-intro-1.png) no-repeat right top 50px;

    /* background: #ebebeb70; */
    border-top: 1px solid #0e0e0e1c;
}

.section_title p strong {
    font-weight: 600;
}


.products .left-block {
    border-radius: 1rem;
}

.bg-clr-1 {
    background-color: rgb(34, 48, 86);
}

.products .nav-tabs,
.products .left-block .bg-white {
    padding: 15px 16px;
}

.products .nav-tabs a.active,
.products .nav-tabs a:focus {
    color: rgb(246, 163, 2);
    background: none;
    box-shadow: none;
}

.products .nav-tabs a.active,
.products .nav-tabs a:focus {
    color: rgb(246, 163, 2);
    background: none;
    box-shadow: none;
}

.fw-medium {
    font-weight: 500 !important;
}

.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

/* products */
.products {
    background: url('../images/product-bg.png') center top no-repeat #f7f7f7;
    padding: 45px 0px;
    background-size: cover;
    background-attachment: fixed;
}

.products .left-block {
    border-radius: 1rem;
}

.products .nav-tabs,
.products .left-block .bg-white {
    /* padding: clamp(1rem, 0.675rem + 1.625vw, 2rem); */
}

.products .nav-tabs a {
    border: none;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    padding: 12px;
    position: relative;
    margin-bottom: 0;
    border-radius: 0px !important;
}

.products .nav-tabs a:after {
    content: '';
    width: 13px;
    height: 24px;
    background: url('../images/arrow-right.svg') left top no-repeat;
    position: absolute;
    right: 9px;
    top: calc(50% - 12.5px);
    opacity: 0;
    transition: 0.4s;
}

.products .nav-tabs a.active,
.products .nav-tabs a:focus {
    color: #ffffff;
    background: none;
    box-shadow: none;
    padding: 10px;
    background: #d31b17;
}

.products .nav-tabs a.active:after {
    opacity: 1;
    filter: var(--imgPrimary2);
}

.products .item .img-wrapper img {
    max-width: 180px;
    max-height: 260px;
    padding: 0.5rem;
}

.products.seasoning .item .img-wrapper img {
    max-height: fit-content;
}

.products .item .img-wrapper:before {
    content: '';
    width: 117px;
    height: 117px;
    background: #d31b17;
    border-radius: 50%;
    position: absolute;
    inset: 0;
    margin: auto;
    transition: 0.4s;
    transform: scale(0);
}

.products .item:hover .img-wrapper:before {
    transform: scale(1.8);
}

.products .item h6 span {
    width: 38px;
    height: 4px;
    border-radius: 1rem;
    background-color: red;
    display: block;
    margin: 0.75rem auto 0;
    position: relative;
}

.products .item h6 span:before,
.products .item h6 span:after {
    content: '';
    width: 15px;
    height: 4px;
    background-color: red;
    position: absolute;
    right: 0;
    transition: 0.3s;
}

.products .item:hover h6 span:before {
    transform: rotate(40deg);
    top: -5px;
}

.products .item:hover h6 span:after {
    transform: rotate(-40deg);
    top: 5px;
}

/* button custom */
.btn-custom {
    position: relative;
    display: inline-block;
    border: 0;
    border-radius: 1.5rem;
    transition: 0.2s;
    background: #223056;
    color: rgb(255 255 255);
    padding: 0.53rem 1.25rem;
    height: 43px;
    text-transform: uppercase;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
    background: linear-gradient(90deg, #F00 0%, #F6A302 60%);
}

.btn-custom.dashed-bordered {
    border-radius: 2.66556rem;
    border: 1px dashed #B4B4B4;
    background: none;
}

.btn-custom.dashed-bordered img {
    transition: 0.4s;
}

.btn-custom.dashed-bordered:hover img {
    transform: scale(1.1);
}

.nav-tabs {
    padding: 0px !important;
}

.item {
    background: #fcfcfc;
    padding: 10px;
    border-radius: 20px;
    /* border: 1px solid #d31b170f; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.jarallax {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}

.bg-parallax {
    position: absolute;
    z-index: -1;
    background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 0.85));
    height: 100%;
    left: 0;
    right: 0;
    top: 0
}

@media (max-width: 767.98px) {
    .bg-parallax {
        background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1));
    }

    .left-block .bg-white {
        margin-bottom: 20px;
    }

    .counter-one__single {
        margin-top: 0px;
    }

    .counter-one {
        padding: 60px 0px;
    }

    .ItemBox {
        background-color: #ededed;
        border-radius: 20px;
        position: relative;
        padding: 40px 18px;
        min-height: auto;
        transition: 0.5s;
    }

    .serviceWrap .serviceItem {
        width: 100% !important;
        padding: 20px 5px;
    }

    .ItemBox {
        background-color: #ededed;
        border-radius: 20px;
        position: relative;
        padding: 20px 30px !important;
        min-height: auto;
        transition: 0.5s;
    }

    .widget {
        margin-top: 20px;
    }

    footer {
        float: left;
        width: 100%;
        position: relative;
        display: block;
        background: #0f0f0f;
        background-size: cover;
        background-position: center;
        padding: 30px 5px 0px !important;
        background-image: url(../images/footer-imgae.jpg);
    }

    .section_title h1 {
        font-size: 33px;
        line-height: 34px !important;
        color: #2c3071;
        font-weight: 800;
    }
}

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

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


/* ......map......... */

body {
    position: inherit !important;
}

@-moz-keyframes Ani {
    0% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        border: 1px solid rgba(255, 255, 255, 0);
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    70% {
        box-shadow: 0 0 50px #fff;
        border: 1px solid #fff;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        box-shadow: 0 0 60px rgba(255, 255, 255, 0);
        border: 0 solid rgba(255, 255, 255, 0);
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
}

@-webkit-keyframes Ani {
    0% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        border: 1px solid rgba(255, 255, 255, 0);
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    70% {
        box-shadow: 0 0 50px #fff;
        border: 1px solid #fff;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        box-shadow: 0 0 60px rgba(255, 255, 255, 0);
        border: 0 solid rgba(255, 255, 255, 0);
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
}

@keyframes Ani {
    0% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        border: 1px solid rgba(255, 255, 255, 0);
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    70% {
        box-shadow: 0 0 50px #fff;
        border: 1px solid #fff;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    100% {
        box-shadow: 0 0 60px rgba(255, 255, 255, 0);
        border: 0 solid rgba(255, 255, 255, 0);
        -webkit-transform: scale(1.5);
        transform: scale(1.5)
    }
}

#powerTip {
    background-color: #000;
}

#powerTip.n:before {
    border-top: 10px solid rgba(0, 0, 0, 1);
}

#powerTip.s:before {
    border-bottom: 10px solid #000;
}

#powerTip.e:before {
    border-right: 10px solid #000;
}

#powerTip.w:before {
    border-left: 10px solid #000;
    right: -10px
}

#powerTip.ne:before,
#powerTip.nw:before {
    border-top: 10px solid #000;
    border-top: 10px solid rgba(0, 0, 0, 1);
}

#powerTip.se:before,
#powerTip.sw:before {
    border-bottom: 10px solid #000;
    border-bottom: 10px solid rgba(0, 0, 0, 1);
}

#powerTip.nw-alt:before,
#powerTip.ne-alt:before,
#powerTip.sw-alt:before,
#powerTip.se-alt:before {
    border-top: 10px solid #000;
    border-top: 10px solid rgba(0, 0, 0, 1);
}

#powerTip.sw-alt:before,
#powerTip.se-alt:before {
    border-bottom: 10px solid #000;
    border-bottom: 10px solid rgba(0, 0, 0, 1);
}

.wrap_svl {
    position: relative;
    float: left;
    margin: 0 auto;
    max-width: 100%;
}

.wrap_svl:after {
    content: "";
    display: table;
    clear: both;
}

.images_wrap img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(1px 4px 3px black);
}

.drag_element {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 1px;
    min-height: 1px;
}

.point_style {
    position: relative;
    z-index: 10;
    display: block;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    box-sizing: border-box;
    text-align: center;
}

.point_style img {
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    max-width: inherit;
}

body .wrap_svl img.pins_image_hover,
body .wrap_svl .point_style.has-hover:hover img.pins_image {
    display: none !important;
}

body .wrap_svl .point_style.has-hover:hover img.pins_image_hover {
    display: block !important;
}

.tolltip_points {
    text-align: center;
}

.tolltip_points img {
    width: 130px;
    height: 130px;
    border: 1px solid #fff;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.tolltip_points .points_name {
    display: block;
    font-size: 16px;
}

.tolltip_points .points_desc {
    display: block;
    font-size: 14px;
}

.mobile_points_wrap {
    display: none;
}

.mobile_points_box {
    width: 50%;
    float: left;
    padding: 0 5px 15px 5px;
    text-align: center;
}

.img_points_box {
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #fff;
}

.img_points_box img {
    width: 100%;
    height: 100%;
}

.mobile_points_box:nth-child(2n+1) {
    clear: both;
}

ul.list_content_point {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

ul.list_content_point li {
    position: relative;
    padding: 3px 0 0 20px;
    margin: 0 0 5px 0;
}

ul.list_content_point li:before {
    content: "";
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
}

ul.list_content_point li.address_point:before {
    content: "\f041";
}

ul.list_content_point li.person_point:before {
    content: "\f183";
}

ul.list_content_point li.tel_point:before {
    content: "\f095";
}

ul.list_content_point li.fax_point:before {
    content: "\f1ac";
    font-size: 15px;
    top: 4px;
}

ul.list_content_point li.mail_point:before {
    content: "\f0e0";
    font-size: 15px;
    top: 4px;
}

.box_view_html {
    color: #fff;
    font-weight: 300;
    max-width: 530px;
    white-space: normal;
    overflow: hidden;
    position: relative;
}

.thumb_point {
    float: left;
    width: 30%;
}

.has-thumb .content_point {
    width: 70%;
    float: left;
    padding: 0 0 0 15px;
}

.has-thumb .content_point h3 {
    font-size: 19px;
}

.linkto_point {
    text-align: right;
    margin: 20px 0 0 0;
}

.wrap_svl_center {
    text-align: center;
}

.wrap_svl_center_box {
    display: inline-block;
}

body .point_style a img,
body .point_style img {
    max-width: inherit !important;
    vertical-align: inherit;
    border-radius: 0 !important;
    ;
    -moz-border-radius: 0 !important;
    ;
    -webkit-border-radius: 0 !important;
    ;
    box-shadow: none !important;
    ;
    -moz-box-shadow: none !important;
    ;
    -webkit-box-shadow: none !important;
    ;
}

.pins_animation {
    border: 3px solid rgba(255, 255, 255, .5);
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, .5);
    pointer-events: none;
}

.pins_animation.ihotspot_pulse {
    -moz-animation: Ani 2s infinite;
    -webkit-animation: Ani 2s infinite;
    animation: Ani 2s infinite;
}

span.close_ihp {
    display: none;
}

body .point_style a:hover img {
    background: transparent !important;
}

span.close_ihp svg {
    width: 25px;
    height: 25px;
}

@media (max-width: 500px) {
    .ihp_popup_full div#powerTip {
        position: fixed;
        top: 0 !important;
        left: 0 !important;
        width: 100%;
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .ihp_popup_full span.close_ihp {
        display: block;
        float: right;
        width: 25px;
        height: 25px;
    }

    .ihp_popup_full span.close_ihp svg {
        fill: #fff;
    }
}

.sales-bg {
    background-image: url(../images/sales-bg.png);
    padding-top: 50px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 10;
}

.sales-bg::after {
    content: "";
    background-color: #fbfbfb6e;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.section-bg-2 {
    padding: 70px 0px;
    position: relative;
    background-image: url(../images/product-bg-2.png);
}

/* .section-bg-2::after{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: #000;
    width: 100%;
    height: 100%;
} */

.what-we-do-2__text {

    font-style: normal;

    font-weight: 700;

    font-size: 176px;

    line-height: 252px;

    color: #676767;

    opacity: 0.03;

    -webkit-writing-mode: tb-rl;

    -ms-writing-mode: tb-rl;

    writing-mode: tb-rl;

    -webkit-transform: rotate(180deg);

    transform: rotate(180deg);

    left: 12px;

    top: 5%;

    /* transform: translateY(-50%); */
}

.what-we-do-2__shape-1 {
    right: -185px;
    bottom: 75px;
}

.what-we-do-2__shape-2 {
    right: -371px;
    top: -265px;
}

.what-we-do-2__item .mt-auto .title {
    font-size: 26px;
    font-weight: 500;
    text-align: center;
}

.what-we-do-2__item {
    overflow: hidden;
    padding: 30px 36px 37px;
    border: 1px solid rgba(21, 24, 27, 0.1);
    border-radius: 10px;
    z-index: 1;
    position: relative;
    height: calc(100% - 30px);
    text-align: center;
}

.what-we-do-2__item:after {
    visibility: hidden;
    z-index: -1;
    content: "";
    position: absolute;
    background: linear-gradient(89.91deg, #EEF0F4 46.5%, rgba(255, 255, 255, 0) 99.92%);
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 10px;
    height: 100%;
}

.what-we-do-2__item-bg {
    position: absolute;
    top: 0;
    opacity: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.what-we-do-2__item-shape-1 {
    opacity: 0;
    position: absolute;
    top: -107px;
    right: -39px;
}

.what-we-do-2__item:hover {
    border-color: transparent;
}

.what-we-do-2__item:hover:after {
    visibility: visible;
}

.what-we-do-2__item:hover .what-we-do-2__item-bg,
.what-we-do-2__item:hover .what-we-do-2__item-shape-1 {
    opacity: 1;
}

.planning-execute__item {
    padding: 40px 16px;
    position: relative;
    z-index: 1;
    border-radius: 10px;
}

.planning-execute__item .number {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 68px;

    font-style: normal;
    font-weight: 700;
    font-size: 100px;
    line-height: 120px;
    color: rgba(21, 24, 27, 0.04);
}

.what-we-do__shape-1 {
    bottom: -120px;
    right: -315px;
    opacity: 70%;
}

.what-we-do__shape-2 {
    top: -120px;
    left: -315px;
    opacity: 40%;
}

.what-we-do__item {
    position: relative;
    height: 304px;
    background-color: #fff;
    border: 1px solid rgba(21, 24, 27, 0.1);
    border-radius: 10px;
    padding: 30px 30px 30px;
    z-index: 1;
}

.what-we-do__item-bg {
    position: absolute;
    top: 0;
    opacity: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    border-radius: 10px;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 575px) {
    .what-we-do__item .title {
        font-size: 20px;
    }
}

.what-we-do__item p {

    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #6A6A6A;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.what-we-do__item-img {
    background-color: rgba(255, 122, 1, 0.1);
    width: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 500px;
    height: 80px;
}

.what-we-do__item a.readmore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 0;
    gap: 6px;

    color: #fff;
}

.what-we-do__item:hover {
    background-color: #ed3237;
}

.what-we-do__item:hover .what-we-do__item-img {
    opacity: 0;
    visibility: hidden;
}

.what-we-do__item:hover .what-we-do__item-bg {
    opacity: 10%;
}

.what-we-do__item:hover .what-we-do__item-text {
    -webkit-transform: translate(0, -33px);
    transform: translate(0, -33px);
}

@media (max-width: 575px) {
    .what-we-do__item:hover .what-we-do__item-text {
        -webkit-transform: translate(0, -25px);
        transform: translate(0, -25px);
    }
}

.what-we-do__item:hover p,
.what-we-do__item:hover .title a {
    color: #fff;
}

.what-we-do__item:hover a.readmore {
    height: 100%;
}

.what-we-do__item:hover p {
    -webkit-line-clamp: 5;
}

.testimonial-2 {
    z-index: 1;
    position: relative;
}

.testimonial-2-bg {
    top: 0;
    opacity: 50%;
    left: 0;
    width: 100%;
    z-index: -1;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
}

.testimonial-2__slider .swiper-slide-active .testimonial-2__item {
    -webkit-box-shadow: 0px 10px 20px rgba(21, 24, 27, 0.06);
    box-shadow: 0px 10px 20px rgba(21, 24, 27, 0.06);
}

.testimonial-2__item {
    padding: 30px;
    overflow: hidden;
    z-index: 1;
    position: relative;
    background: #fff;
    border-radius: 10px;
}

.testimonial-2__item-bg {
    position: absolute;
    bottom: 0;
    right: -18px;
    z-index: -1;
    opacity: 4%;
    background-size: cover;
    background-repeat: no-repeat;
    width: 146.65px;
    height: 59px;
}

.testimonial-2__item-header {
    gap: 20px;
}

.testimonial-2__item-author-company {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;

    color: #ed3237;
}

.testimonial-2__item-title {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;

    color: #ed3237;
}

.testimonial-2__item-author-content {
    gap: 0 9px;
}

.testimonial-2__item-author-position {

    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #6A6A6A;
}

.testimonial-2__item-rating {
    list-style: none;
    gap: 3.5px;
}

.testimonial-2__item-author-thumb {
    width: 80px;
    min-width: 80px;
    height: 80px;
    min-height: 80px;
    border-radius: 500px;
    overflow: hidden;
}

.testimonial-2__item-author-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-2__item p {

    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #6A6A6A;
}

.testimonial-2__slider__arrow {
    gap: 20px;
}

.testimonial-2__slider__arrow-prev,
.testimonial-2__slider__arrow-next {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(21, 24, 27, 0.1);
    border-radius: 3px;
}

.testimonial-2__slider__arrow-prev:hover,
.testimonial-2__slider__arrow-next:hover {
    background-color: #ed3237;
    border-color: #ed3237;
}

.testimonial-2__slider__arrow-prev:hover svg path[stroke="#ed3237"],
.testimonial-2__slider__arrow-next:hover svg path[stroke="#ed3237"] {
    stroke: #fff;
}

/*--service start --*/
.serviceSec {
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}

.serviceSec .container {
    position: relative;
    z-index: 1;
}

.serviceSec::before {
    width: 600px;
    height: 600px;
    position: absolute;
    background-color: #f1f5f9;
    content: "";
    left: -386px;
    bottom: 380px;
    border-radius: 70px;
    transform: rotate(35deg);
}

.serviceSec::after {
    width: 600px;
    height: 600px;
    position: absolute;
    background-color: #f1f5f9;
    content: "";
    right: -440px;
    bottom: 170px;
    border-radius: 70px;
    transform: rotate(35deg);
}

.serviceWrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.serviceWrap .serviceItem {
    width: 33.33%;
    padding: 20px;
}

.serviceWrap .serviceItem:hover .ItemBox {
    box-shadow: -4px 24px 37px -13px #959595;
}

.ItemBox {
    background-color: #ededed;
    border-radius: 20px;
    position: relative;
    padding: 40px 40px;
    min-height: 230px;
    transition: 0.5s;
}

.serviceIcon {
    position: absolute;
    border-radius: 0 0 0 20px;
    padding: 0 0px 10px 10px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 0;
}

.serviceIcon img {
    filter: brightness(0) invert(1);
}

.iconBox {
    background-color: #ed3237;
    width: 60px;
    height: 60px;
    border-radius: 0 20px 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.serviceContent {
    padding-right: 20px;
}

.serviceContent h4 {
    font-weight: 600;
    margin-bottom: 7px;
    font-size: 20px;
    color: #000000;
}

.serviceTxt p {
    margin-bottom: 0px;
    color: #000000;
}

.ItemBox:hover {
    transform: translateY(-10px);
}

.ItemBox:hover .iconBox {
    background-color: #2e2f74;
}

.sBottomLayer {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.sBottomLayer img {
    width: 100%;
}

.iconBox img {
    width: 40px;
}

.blog {
    background: #f9f9f9;
}

.blog__item-title {
    font-weight: 500;
    line-height: 33px;
    font-size: 27px;
    margin-bottom: 16px !important;
}

/* Trusted Clients Section */
.trusted-clients {
    position: relative;
    padding: 80px 0;
    background: #f5f2f200;
    overflow: hidden;
}

.trusted-clients__title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.trusted-clients__subtitle {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #ff6b00;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.trusted-clients__subtitle .left-separator,
.trusted-clients__subtitle .right-separator {
    display: inline-block;
    height: 2px;
    background-color: #ff6b00;
    margin: 0 8px;
}

.trusted-clients__title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    text-transform: capitalize;
}

.trusted-clients__slider {
    position: relative;
}

.trusted-clients__item {
    text-align: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.trusted-clients__thumb {
    display: inline-block;
    width: 150px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.trusted-clients__thumb:hover {
    opacity: 1;
    transform: scale(1.08);
}

/* Swiper Pagination */
.trusted-clients .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.trusted-clients .swiper-pagination-bullet {
    background-color: #000000;
    opacity: 0.6;
}

.trusted-clients .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 767px) {
    .trusted-clients {
        padding: 60px 0;
    }

    .trusted-clients__title {
        font-size: 26px;
    }

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

    .modal-left {
        /* width: 38%; */
        background: #fffcfcde;
        padding: 10px 13px !important;
        /* border-right: 1px solid #ddd; */
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 4px 15px !important;
        font-size: 1rem;
        border-radius: 8px;
        border: 1px solid #ccc;
        transition: all 0.3s ease;
    }

    .form-group textarea {
        resize: none;
        min-height: 78px !important;
    }
}

/* Trusted Client Logo Style */
.trustedClient__item {
    display: inline-block;
    background: #fff;
    padding: 20px;
    border: 2px solid #e6e6e6;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trustedClient__item img {
    width: 100%;
    height: auto;
    max-width: 100%;
    /* filter: grayscale(100%); */
    opacity: 0.85;
    transition: all 0.3s ease;
}

.trustedClient__item:hover {
    border-color: #ff6b00;
    /* Accent color */
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.2);
    transform: translateY(-5px);
}

.trustedClient__item:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

.trusted-clients {
    /* background-image: url(../images/client-bg.png); */
}

.rr-shape-p-s_1 {
    position: absolute;
    z-index: 0;
}

.rr-upDown {
    -webkit-animation: upDown 1.3S infinite alternate;
    animation: upDown 1.3S infinite alternate;
}

.fourth-section {
    width: 100%;
    height: auto;
    padding: 90px 0 70px;
    position: relative;
}

.bgSec::after {
    content: '';
    position: absolute;
    top: 22px;
    width: 500px;
    height: 350px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: .1;
    z-index: 1;
    background-image: url(../image/logo-shape.png);
    right: 0;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 360px;
    transform: none !important;
    border-radius: 20px;
    border: 1px solid rgb(0 0 0 / 9%);
    padding: 25px 30px;
    transition: all .5s;
}

.flip-card-btm .title {
    text-align: center;
    font-size: 27px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px;
    text-align: left;
    margin-bottom: 12px;
    transition: all .5s;
    margin-top: 15px;
}

.flip-card-Para p {
    font-size: 17px;
    line-height: 27px;
    color: #000;
    transition: all .3s;
    font-weight: 400;
}

.flipCardInn .imgCon {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: linear-gradient(140deg, #f2941d 12%, #ff8c00 45%, #fa900c 80%);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    transition: all .5s;
    margin: 0;
}

.flipCardInn .imgCon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(0) saturate(100%);
    transition: all .5s;
}

.flip-card:hover {
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, .25);
    border-color: transparent;
    border: 1px solid transparent
}

.ltSkyBg {
    background-color: #fffaf4;
}


.imgCon i {
    font-size: 45px;
    color: #fff;
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 263px;
    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: #28a745;
}

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

.download-brochure {
    background-color: #ff9800;
}

/* New orange color for brochure */

.floating-contact i {
    font-size: 22px;
    line-height: 0;
}

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



.footer-locations h5 {
    font-weight: 600;
    color: #ffffff;
}

.footer-list {
    font-size: 14px;
    line-height: 1.8;
    color: #dddddd;
}

.footer-locations .btn {
    border-radius: 30px;
    transition: all 0.3s ease;
}

.footer-locations .btn:hover {
    background: #ffffff;
    color: #000;
}

.product-section-design {
    padding: 70px 0px;
    background: #f2f2f2 url(../images/pro-bg.jpg) repeat-y;
    background-position: right center;
    background-attachment: fixed;
    padding-top: 30px;
}

/* Main Image Styling */
.slider-main img {
    width: 100%;
    /* border: 1px solid #ddd; */
    /* padding: 10px; */
    border-top: 0px !important;
}

/* Thumbnails Container */
.slider-nav {
    margin-top: 15px;
}

.thumb-item {
    padding: 5px;
    cursor: pointer;
}

.thumb-item img {
    width: 100%;
    border: 1px solid #ddd;
    transition: 0.3s;
}

/* Highlight the active thumbnail */
.slider-nav .slick-current img {
    border: 2px solid #d32f2f;
    /* Matching the red color from your image */
}



/* Main Image Styling */
.slider-main img {
    width: 100%;
    border-bottom: 1px solid #ddd;
    /* padding: 10px; */
    border-top: 0px !important;
}

/* Thumbnails Container */
.slider-nav {
    margin-top: 15px;
}

.thumb-item {
    padding: 5px;
    cursor: pointer;
}

.thumb-item img {
    width: 100%;
    border: 1px solid #ddd;
    transition: 0.3s;
    border-radius: 10px;
}

/* Highlight the active thumbnail */
.slider-nav .slick-current img {
    border: 2px solid #d72018;
    /* Matching the red color from your image */
}

.product-slider-container {
    background: #ededed;
    border-radius: 18px;
    /* border: 1px solid #e9e8e8; */
    overflow: hidden;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #303173;
    margin-bottom: 0.5rem;
}

.specs-table {
    font-size: 0.95rem;
    overflow: hidden;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 20px;
}

.specs-table .row:nth-child(odd) {
    /* background-color: #fcfcfc; */
}

.specs-table .row:hover {
    /* background-color: #f8f9fa; */
}

.alert-warning {
    background-color: #fff8e1;
    border-left: 4px solid #ffc107;
    color: #856404;
    border-radius: 0;
}

.btn-danger {
    background-color: #d32f2f;
    /* Matching the red brand color */
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-danger:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

.padding-0 {
    padding: 0px !important;
}

.content-product-2 {
    padding: 23px 10px !important;
    background: #ffffffe8 !important;
}

.product-row {
    align-items: center;
    background: #ededed;
    border-radius: 51px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

/* Color Palette from Image */
:root {
    --primary-blue: #303173;
    --accent-red: #d32f2f;
    --light-bg: #f8f9fa;
    --border-color: #eaeaea;
}

.product-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.product-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* THE HIGHLIGHTED TABLE */
.specs-table {
    background: #ffffff;
    border-radius: 15px;
    /* padding: 10px 20px; */
    border: 1px solid var(--border-color);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row:hover {
    padding-left: 5px;
    background-color: #fcfcfc;
}

.spec-label {
    font-weight: 600;
    color: #555;
    flex: 1;
}

.spec-value {
    color: #222;
    flex: 1;
    text-align: left;
}

/* ORDER INFO & NOTE */
.moq-text {
    font-weight: 700;
    color: var(--accent-red);
}

.moq-text span {
    color: #333;
}

.note-box {
    background: #fff9e6;
    border-left: 5px solid #ffc107;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin: 9px 0;
}

/* PREMIUM BUTTON */
.btn-get-quote {
    background: var(--accent-red);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    transition: 0.3s;
    margin-top: 10px;
}

.btn-get-quote:hover {
    background: #b71c1c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.map-link {
    color: #cf1c13 !important;
}

.unit h5 {
    font-size: 16px;
}



/* ================= QUALITY SECTION ================= */

.quality-info-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.quality-info-section .quality-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

.quality-info-section .quality-title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
}

.quality-info-section .quality-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: #c0392b;
    display: block;
    margin-top: 8px;
}

.quality-info-section .quality-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.quality-info-section .quality-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #333;
}

.quality-info-section .quality-points {
    /* padding-left: 20px; */
    margin-bottom: 25px;
}

.quality-info-section .quality-points li {
    font-size: 16px;
    color: #444;
    margin-bottom: 8px;
}

.quality-info-section .quality-btn {
    display: inline-block;
    padding: 10px 22px;
    background-color: #c0392b;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.quality-info-section .quality-btn:hover {
    background-color: #a93226;
}

/* ================= CLIENT SECTION ================= */

.client-info-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.client-info-section .client-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

.client-info-section .client-title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    position: relative;
}

.client-info-section .client-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: #c0392b;
    display: block;
    margin-top: 8px;
}

.client-info-section .client-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.client-info-section .client-btn {
    display: inline-block;
    padding: 10px 22px;
    background-color: #c0392b;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s ease;
}

.client-info-section .client-btn:hover {
    background-color: #a93226;
}

/* ================= BLOG PAGE ================= */

.blog-page-section {
    background-color: #f8f9fa;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.blog-card .blog-img img {
    width: 100%;
    height: auto;
}

.blog-card .blog-content {
    padding: 25px;
}

.blog-card .blog-title a {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.blog-card .blog-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-card .blog-read-more {
    font-size: 15px;
    font-weight: 600;
    color: #c0392b;
    text-decoration: none;
    transition: 0.3s;
}

.blog-card .blog-read-more:hover {
    color: #a93226;
}

/* ================= SIDEBAR ================= */

.blog-sidebar {
    position: sticky;
    top: 20px;
}

.blog-sidebar .sidebar-box {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.blog-sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.blog-sidebar .sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar .sidebar-list li {
    margin-bottom: 10px;
}

.blog-sidebar .sidebar-list li a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.blog-sidebar .sidebar-list li a:hover {
    color: #c0392b;
    padding-left: 5px;
}

/* ================= SIDEBAR BASE ================= */
.blog-right-sidebar .sidebar-widget {
    background: #ffffff;
    padding: 22px;
    margin-bottom: 25px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: fadeUp 0.7s ease both;
}

/* Entry animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= SIDEBAR TITLE ================= */
.blog-right-sidebar .sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d2d72;
    margin-bottom: 18px;
    padding-left: 12px;
    position: relative;
}

.blog-right-sidebar .sidebar-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 4px;
    height: 22px;
    background: #d5250f;
    border-radius: 2px;
}

/* ================= PRODUCT LIST ================= */
.sidebar-product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-product-list li {
    margin-bottom: 12px;
}

.sidebar-product-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    background: #f9f9f9;
    transition: all 0.35s ease;
}

.sidebar-product-list li a i {
    color: #d5250f;
    font-size: 14px;
    transition: transform 0.35s ease;
}

.sidebar-product-list li a:hover {
    background: #2d2d72;
    color: #ffffff;
    padding-left: 18px;
}

.sidebar-product-list li a:hover i {
    color: #ffffff;
    transform: rotate(-10deg);
}

/* ================= QUICK CONTACT ================= */
.contact-widget p {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
}

.contact-widget i {
    color: #d5250f;
    margin-right: 6px;
}

/* Animated Button */
/* ================= QUICK CONTACT ================= */
.contact-widget p {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
}

.contact-widget i {
    color: #d5250f;
    margin-right: 6px;
}

/* Animated Button (NO gradient) */


.btn-contact {
    background: #d5250f;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 12px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

/* Hover */
.btn-contact:hover {
    background: #d5250f;
    color: #fff;
    animation-play-state: paused;
}

/* ================= KEYFRAMES ================= */


/* ================= QUICK CONTACT ================= */
.contact-widget p {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
}

.contact-widget i {
    color: #d5250f;
    margin-right: 6px;
}

/* Animated Button (NO gradient) */
/* ================= QUICK CONTACT ================= */
.contact-widget p {
    font-size: 15px;
    color: #444;
    margin-bottom: 10px;
}

.contact-widget i {
    color: #d5250f;
    margin-right: 6px;
}

/* Animated Button (NO gradient) */




/* ================= KEYFRAMES ================= */

/* Pulse + Blink */
@keyframes pulseBlink {
    0% {
        box-shadow: 0 0 0 0 rgba(213, 37, 15, 0.6);
        opacity: 1;
    }

    50% {
        box-shadow: 0 0 14px 6px rgba(213, 37, 15, 0.45);
        opacity: 0.92;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(213, 37, 15, 0.6);
        opacity: 1;
    }
}

/* Outer glow ring */
@keyframes glowRing {
    0% {
        box-shadow: 0 0 0 0 rgba(213, 37, 15, 0.6);
    }

    100% {
        box-shadow: 0 0 0 14px rgba(213, 37, 15, 0);
    }
}

/* ================= KEYFRAMES ================= */


/* ================= ENQUIRY FORM ================= */
.enquiry-widget form .form-control {
    height: 45px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.enquiry-widget textarea.form-control {
    height: auto;
}

.enquiry-widget form .form-control:focus {
    border-color: #d5250f;
    box-shadow: 0 0 0 0.15rem rgba(213, 37, 15, 0.25);
}

/* Enquiry Button */
.enquiry-btn {
    background: #2d2d72;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 6px;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.enquiry-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.4s;
}

.enquiry-btn:hover::after {
    left: 100%;
}

.enquiry-btn:hover {
    background: #d5250f;
    transform: translateY(-2px);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 767px) {
    .blog-right-sidebar {
        margin-top: 40px;
    }

    .sidebar-title {
        font-size: 18px;
    }

    .sidebar-product-list li a {
        font-size: 14px;
    }
}

/* ================= BLOG DETAILS PAGE ================= */
.blog-details-page {
    font-family: 'Poppins', sans-serif;
}

.blog-details-card {
    /* background: #fff; */
    border-radius: 10px;
    /* padding: 25px; */
    /* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
}

.blog-details-card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); */
}

.blog-details-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.35s ease;
}



.blog-details-title {
    font-size: 28px;
    font-weight: 600;
    color: #2d2d72;
    line-height: 1.4;
    animation: fadeInUp 1s ease forwards;
}

.subheading {
    font-size: 20px;
    font-weight: 500;
    color: #d5250f;
    margin-bottom: 10px;
    animation: fadeInLeft 1s ease forwards;
}

.blog-details-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
    text-align: justify;
}

.blog-details-list {
    padding-left: 20px;
    list-style-type: disc;
    color: #444;
}

.blog-details-list li {
    margin-bottom: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.blog-details-list li::before {
    content: "✓";
    position: absolute;
    left: -20px;
    color: #d5250f;
}

.btn-blog-quote {
    display: inline-block;
    background: #d5250f;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 6px;
    transition: all 0.35s ease;
    margin-top: 15px;
}

.btn-blog-quote:hover {
    background: #2d2d72;
    transform: translateY(-2px) scale(1.05);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

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

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-15px);
    }

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

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 991px) {
    .blog-details-title {
        font-size: 24px;
    }

    .subheading {
        font-size: 18px;
    }

    .blog-details-card {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .blog-details-title {
        font-size: 20px;
    }

    .subheading {
        font-size: 16px;
    }

    .btn-blog-quote {
        width: 100%;
        text-align: center;
    }
}

.pagination {
    margin-top: 40px;
    gap: 8px;
}

.pagination .page-item .page-link {
    border: 1px solid #e0e0e0;
    color: #333;
    padding: 10px 18px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.pagination .page-item .page-link:hover {
    background-color: #f8f9fa;
    color: #007bff;
    border-color: #007bff;
}

/* Active Page Style */
.pagination .page-item.active .page-link {
    background-color: #d2251b;
    border-color: #d31d19;
    color: #fff;
    box-shadow: 0 4px 10px rgb(211 40 28);
}

.pagination .page-item.disabled .page-link {
    background-color: #f1f1f1;
    color: #aaa;
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination-circle .page-link {
    border-radius: 50% !important;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.blog-title {
    line-height: 32px;
}


/* ......................pop-up............ */



/* ============================= */
/* Modal Header                  */
/* ============================= */
.pop-up-model .modal-header {
    background: linear-gradient(90deg, #30317e, #e02e25);
    /* 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: 1.6rem;
    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: 20px;
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

.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: #d32417;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
}

.pop-up-model .Submit-box:hover {
    background: linear-gradient(135deg, #1976d2, #077cb3);
}

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

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

.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: linear-gradient(90deg, #303179, #d72019);
}

.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;
}

/* ============================= */
/* 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: 3px solid #d11a16;
    /* 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 13px;
    /* 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: 99%;
    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: 11px;
    margin-right: 10px;
    color: #fbfbfb;
    padding: 6px;
    background: #d32417;
    margin-bottom: 0;
    border-radius: 12px;
}

/* Optional hover effect */
.contact-box p:hover i {
    transform: scale(1.2);
    transition: .3s ease;
}

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