@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Michroma&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Play:wght@400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bs-primary-color: #1569a4;
    --bs-black-color: #001F3F;
    --bs-black-color2: #06182B;
    --bs-black-color3: #000E1D;
    --bs-white-color: #ffffff;
    --bs-paragraph-color: #788094;
    --bs-bg-color1: #ECF0F1;
    --bs-bg-color2: #F4F4F4;
    --bs-bg-color3: #FBD9DA;
    --bs-color1: #B0B2B8;
    --bs-color2: #FFE0E0;
    --bs-color3: #F7F7F7;
    --bs-color4: #FEBE42;
    --bs-border: #D8DDE1;
    --bs-body-font-size: 16px;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 160%;
    --bs-shadow: 0px 5px 60px 0px rgba(0, 0, 0, 0.05);
    --bs-shadow2: 0px 5px 27.2px 0px rgba(39, 39, 39, 0.12);
    --bs-transition: all 0.3s ease-out 0s;
}

/* ===============================
   FONT FAMILY UTILITIES
================================ */

.font-dm-sans {
    font-family: 'DM Sans', sans-serif;
}

.font-michroma {
    font-family: 'Michroma', sans-serif;
}

.font-open-sans {
    font-family: 'Open Sans', sans-serif;
}

.font-play {
    font-family: 'Poppins', sans-serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* ===============================
   FONT WEIGHT UTILITIES
================================ */

.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

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; */
    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;
    align-items: center;
}

.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: 275px;
    z-index: 100;
    background-color: #ffffff;
    padding: 0px 0;
    transform: translateY(30px);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: 500ms ease;
}

/* Show sub-menu on hover */
.main-menu .navigation>li:hover>ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0ms;
    /* Visibility activates immediately */
}

/* Sub-menu items styling */
.main-menu .navigation>li>ul>li {
    list-style: none;
    position: relative;
}

/* Styling for all sub-menu links */
.main-menu .navigation>li>ul>li>a,
.main-menu .navigation>li>ul>li>ul>li>a,
.main-menu .navigation>li>ul>li>ul>li>ul>li>a {
    position: relative;
    padding: 7px 13px;
    line-height: 29px;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    text-align: left;
    margin: 0;
    text-transform: capitalize;
    background: #014b81;
    /* Ensure a consistent background */
    display: block;
    border-bottom: 1px solid #e5e5e5b3 !important;
    transition: color 200ms ease, background-color 200ms ease;
    /* Apply specific transition */
    border-right: 1px solid #ffffff75;
}

.main-menu .navigation>li>ul>li>a:hover,
.main-menu .navigation>li>ul>li>ul>li>a:hover,
.main-menu .navigation>li>ul>li>ul>li>ul>li>a:hover {
    color: #ffffff;
    background-color: #003f78;
    /* 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: 252px;
    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: 370px;
    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: 90%;
    padding: 5px;
}

.main-header .logo {
    width: 245px;
}

.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: 600;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.9px;
    line-height: 20px;
    padding: 0;
    /* margin: 0 15px; */
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li>a:before {
    position: absolute;
    left: 50%;
    bottom: -4px;
    height: 2px;
    width: 0%;
    background: #ffffff;
    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>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: 9px;
}

.dropdown2a li {
    bottom: 2px solid #bebdbd !important;
}

.dropdown2a:hover ul {
    display: block;
}

.menu-outer .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;
    padding: 0px 170px;
}


@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: -370px;
    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: 55px;
    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: 40px;
    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: #ffffff;
}

.header-style .main-menu .navigation>li>a {
    color: #0d558a;
    font-weight: 500;
}

.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;
    margin-left: 40px;
}

.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: 35px 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;
    }

    .main-header .logo {
        width: 182px;
    }
}

@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: 12px;
    }

    .main-header .logo img {
        width: 100%;
    }

    .ace-responsive-menu>li>a {
        font-size: 16px;
    }

    .main-menu .navigation>li {
        padding-right: 12px;
        margin-right: 15px;
    }

    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 {
        display: none;
    }

    .header-style .logo {
        padding: 1px 0;
    }

    .mobile-nav-toggler span {
        color: #1769a3;
    }

}

/*----- Header Top -----*/
/*----- Header Top -----*/

.header-top {
    position: relative;
    overflow: hidden;
    /* padding: 5px 0px; */
    background: #2881c4;
    z-index: 100;
}

/* .header-top:before {
    content: "";
    height: 79px;
    width: 79px;
    left: 37%;
    top: 0;
    position: absolute;
    background-image: url(../images/fav.png);
} */

.header-top:after {
    background: #3087c8;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    content: '';
    z-index: -1;
}

.header-top .top-left h6 {
    font-size: 16px;
    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;
    border-right: 1px solid #c6ccda;
    padding: 5px 12px;
}

.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: #444444;
    background-size: cover;
    background-position: center;
    padding: 70px 9px 30px;
    /* background-image: url(../images/footer-imgae.jpg); */
}

footer .widget_logo {
    margin-bottom: 15px;
    position: relative;
}

footer .widget_logo img {
    max-width: 71%;
    padding: 4px;
    /* background-color: #fff; */
    border-radius: 3px;
    filter: brightness(0) invert(1);
}

footer p {
    color: #fffcfc;
}

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: #ffffff;
    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: #ffffff;
    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: #6cb3e5;
    text-decoration: none;
}

footer .widget-title {
    margin: 0 0 25px;
    color: #fff;
    font-size: 23px;
    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: #ffffff;
    /* icon color */
    font-size: 12px;
    /* adjust size if needed */
}

/* border-radius: 5px; */


.social li {
    position: inherit !important;
}

.widget ul li a {
    font-weight: 400;
    font-size: 15px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
}

.widget ul li a:hover {
    color: #ffffff;
}

.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: #444444f2;
    font-weight: 500;
    /* font-family: var(--font); */
    font-size: 14px;
    /* margin-top: 15px; */
}

.som_bottom a {
    font-size: 16px;
    display: inline-block;
    color: #ffffff;
}

.som_bottom a:hover {
    color: #ffffff;
}

#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: #1769a3;
}

/* scroll to top */
.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background-color: rgb(23 105 163);
    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;
    background-position: center;
}

.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: 700;
    /* 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: #ffffff !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: #1769a3;
    font-weight: 700;
    background: #fff;
    border-radius: 30px;
}

.section_title h1 {
    font-size: 39px;
    line-height: 41px;
    color: #1769a3;
    font-weight: 800;
}

h4.style-tow {
    background: #f0f0f0;
}

.section_title h4::before {
    position: absolute;
    content: "";
    height: 2px;
    width: 30px;
    background-repeat: no-repeat;
    left: 11%;
    top: 48%;
    background: #176a9f;
}



.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;
    /* font-family: "Michroma", sans-serif; */
    /* font-family: "Poppins", sans-serif; */
}

.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: "";
}


/* 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: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-contact a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.floating-contact a:hover {
    transform: scale(1.1);
}

.call-button {
    background-color: #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: #0d619f;
    --accent-red: #d32f2f;
    --light-bg: #f8f9fa;
    --border-color: #eaeaea;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    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: #1769a3;
    /* 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: #1769a3;
    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: #1769a3;
}

.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 #1769a3;
    /* 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; */
    text-align: left !important;
}

.pop-up-model .modal-left-col {
    background: #fdfbfc;
    border-right: 1px solid #ddd;
}

.pop-up-model .modal-left .modal-logo {
    width: 69%;
    margin-bottom: 20px;
}


.contact-box p {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #084f81;
    font-weight: 600;
}

.contact-box i {
    font-size: 11px;
    margin-right: 10px;
    color: #fbfbfb;
    padding: 6px;
    background: #1769a3;
    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;
}





.top-bar {
    background-color: #f8f9fa;
    /* Light gray matching your screenshot */
    font-size: 14px;
    color: #333;
}

.top-bar .contact-info i {
    margin-right: 5px;
}

.top-bar .social-links a {
    color: #007bff;
    margin-left: 15px;
    transition: color 0.3s;
}

.top-bar .social-links a:hover {
    color: #0056b3;
}

.headerMarquee span {
    color: #fff;
}

.headerMarquee {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.headerMarquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

.select2-container--default .select2-selection--single .select2-selection__clear span {
    position: absolute;
    right: 20px;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    top: 12px;
}

.top-right-1 {
    padding: 0px;
}

/*=============================
	16. About CSS Start
===============================*/
/* About section one */
.ep-about-section .about-img {
    padding-right: 71px;
}

@media (max-width: 1199.98px) {
    .ep-about-section .about-img {
        padding-right: 70px;
    }
}

.ep-about-section .about-img .shape {
    right: 12px;
    top: 54px;
}

@media (max-width: 1199.98px) {
    .ep-about-section .about-img .shape {
        right: 10px;
    }
}

@media (max-width: 575.98px) {
    .ep-about-section .about-img .shape {
        top: 20px;
    }
}

.ep-about-section .about-img .shape .experiance {
    top: 18px;
    left: 36px;
    font-size: 21px;
}

.ep-about-section .about-img .video-part {
    width: 234px;
    height: 183px;
    bottom: 44px;
    right: 48px;
    border: 3px solid #ffffff;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.rounded-20 {
    border-radius: 20px;
}

@media (max-width: 1199.98px) {
    .ep-about-section .about-img .video-part {
        right: 0;
    }
}

@media (max-width: 575.98px) {
    .ep-about-section .about-img .video-part {
        bottom: -15px;
        width: 203px;
        height: 155px;
    }
}

.ep-about-section .about-img .video-part .overlay {
    /* background-color: rgba(0, 31, 63, 0.7); */
}

.ep-about-section .about-content .tracking-info {
    border-bottom: 1px solid var(--bs-border);
}

@media (max-width: 1399.98px) {
    .ep-about-section .about-content .tracking-info .title {
        font-size: 20px;
    }
}

.ep-about-section .about-content .tracking-info .support::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 40px;
    width: 1px;
    height: 40px;
    background: var(--bs-border);
    content: "";
}

@media (max-width: 767.98px) {
    .ep-about-section .about-content .tracking-info .support::before {
        display: none;
    }
}

.ep-about-section .about-content .about-text {
    border-radius: 10px;
    text-align: justify;
}

.ep-about-section .about-content .tracking .icon,
.ep-about-section .about-content .support .icon {
    width: 56px;
    height: 56px;
    background-color: var(--bs-color2);
}

.ep-about-section .about-content .tracking .icon img,
.ep-about-section .about-content .support .icon img {
    width: 30px;
}

/* About section two */
.ep-about-section-two .about-images {
    padding-right: 30px;
}

.ep-about-section-two .experiance-shape {
    right: -60px;
    top: 250px;
}

@media (max-width: 991.98px) {
    .ep-about-section-two .experiance-shape {
        right: 0;
        bottom: 50px;
        top: unset;
    }
}

.ep-about-section-two .experiance-shape .exp-text {
    background: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="197" height="105" viewBox="0 0 197 105" fill="none"%3E%3Cpath d="M0 10C0 4.47715 4.47715 0 10 0H98.5H147.75H163.912C169.322 0 174.501 2.19163 178.268 6.07484L184.5 12.5L191.799 20.5287C195.146 24.2101 197 29.0068 197 33.9821V52.5V95C197 100.523 192.523 105 187 105H10C4.47715 105 0 100.523 0 95V10Z" fill="%23E10006"/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 22px 0;
    max-width: 197px;
}

.ep-about-section-two .arrow-up-right {
    position: absolute;
    top: 122px;
    right: -100px;
}

@media (max-width: 991.98px) {
    .ep-about-section-two .arrow-up-right {
        display: none;
    }
}

.ep-about-section-two .about-text .progress-content {
    padding-right: 40px;
}

@media (max-width: 1399.98px) {
    .ep-about-section-two .about-text .progress-content .progress-title {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 991.98px) {
    .ep-about-section-two .about-text .progress-content .progress-title {
        font-size: 20px;
        line-height: 30px;
    }
}

.ep-about-section-two .about-text .btn-wrapper {
    border-top: 1px solid #003667;
}

.ep-about-section {
    padding: 65px 0px;
    padding: 70px 0;
    /* background: url(../images/main-testimonial-bg.jpg) bottom no-repeat; */
    background: #e9e9e9a3;
}

.heading-two {
    font-size: 36px;
    line-height: 54px;
    font-weight: 800;
    color: #0a5f9b;
    margin-bottom: 0px !important;
}



/* ===== Heading popping animation ===== */
.heading-two {
    font-weight: 700;
    /* letter-spacing: -0.5px; */
    animation: popIn 1s ease forwards;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* ===== Paragraph smooth fade ===== */
.about-text {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.about-text:nth-child(1) {
    animation-delay: .2s;
}

.about-text:nth-child(2) {
    animation-delay: .4s;
}

.about-text:nth-child(3) {
    animation-delay: .6s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* After About Us animation */
.ai-anim {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #074e85, transparent);
    margin-left: 12px;
    overflow: hidden;
}

/* Moving shine */
.ai-anim::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #166aa0, transparent);
    animation: slideGlow 1.5s infinite;
}

/* Pulse dot */
.ai-anim::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #ff4a17;
    border-radius: 50%;
    transform: translateY(-50%);
    animation: pulseDot 1.2s infinite;
}

/* Animations */
@keyframes slideGlow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes pulseDot {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-50%) scale(1.6);
        opacity: 0.4;
    }

    100% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

/* ===== Read More Button – Blue Theme ===== */
.btn-read-more {
    position: relative;
    display: inline-block;
    padding: 14px 42px;
    margin-top: 30px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    background: linear-gradient(135deg, #0a5f9b, #0f78c4);
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Shine effect */
.btn-read-more::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transition: 0.5s;
}

/* Bottom border glow */
.btn-read-more::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #ffffff;
    transition: 0.4s ease;
    transform: translateX(-50%);
}

.btn-read-more:hover::before {
    left: 100%;
}

.btn-read-more:hover::after {
    width: 100%;
}

.btn-read-more:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 35px rgba(10, 95, 155, 0.45);
}

/* Text stays above effects */
.btn-read-more span {
    position: relative;
    z-index: 2;
}

.theme-btn {
    background: #176aa1;
    color: #fff;
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    padding: 5px 24px;
    padding-right: 5px;
    border-radius: 0;
    line-height: 1;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    /* border-radius: 6px; */
    font-family: 'Poppins', sans-serif;
}

.theme-btn:hover {
    color: #fff;
}

.theme-btn i {
    width: 44px;
    height: 44px;
    line-height: 48px;
    text-align: center;
    background-color: #fff;
    color: #011944;
    margin-left: 35px;
    transition: all 0.4s ease-in-out;
    border-radius: 5px;
}

.theme-btn::before {
    content: "";
    background-color: #074e85;
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}




.theme-btn:hover i {
    background-color: #1769a3;
    color: #fff;
}

.theme-btn.bg-header {
    background-color: #004079;
}

.theme-btn.bg-header::before,
.theme-btn.bg-header::after {
    background-color: #fff;
}

.theme-btn.bg-header i {
    background-color: #011944;
    color: #fff;
}

.theme-btn.bg-header:hover {
    color: #004079;
}

.theme-btn.theme-btn-2 {
    background: red;
}

.theme-btn.theme-btn-2 i {
    color: red;
}

.theme-btn.theme-btn-2:hover::before,
.theme-btn.theme-btn-2:hover::after {
    width: 100%;
}

.theme-btn.theme-btn-2:hover i {
    background: red;
    color: #fff;
}

.link-btn {
    font-size: 16px;
    font-weight: 600;
    color: #011944;
    text-transform: uppercase;
}




/*=============================
	20. Portfolio CSS Start
===============================*/
.ep-portfolio-section .container-fluid {
    padding: 0 55px;
}

@media (max-width: 1399.98px) {
    .ep-portfolio-section .container-fluid {
        padding: 0 26px;
    }
}

.ep-portfolio-section .portfolio-slider .swiper-wrapper .swiper-slide .image {
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

.ep-portfolio-section .portfolio-slider .swiper-wrapper .swiper-slide .image .overlay {
    background-color: rgba(0, 31, 63, 0.8);
    border-radius: 12px;
    padding: 30px;
    opacity: 0;
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

@media (max-width: 1399.98px) {
    .ep-portfolio-section .portfolio-slider .swiper-wrapper .swiper-slide .image .overlay {
        padding: 12px;
    }
}

@media (max-width: 1199.98px) {
    .ep-portfolio-section .portfolio-slider .swiper-wrapper .swiper-slide .image .overlay {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .ep-portfolio-section .portfolio-slider .swiper-wrapper .swiper-slide .image .overlay {
        padding: 20px;
    }
}

.ep-portfolio-section .portfolio-slider .swiper-wrapper .swiper-slide .image .overlay .text-wrapper {
    padding-right: 30px;
}

.ep-portfolio-section .portfolio-slider .swiper-wrapper .swiper-slide .image .overlay .text-wrapper .text-object {
    background: url("../images/protfolio-shape.svg");
    padding: 12px 25px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 245px;
}

.ep-portfolio-section .portfolio-slider .swiper-wrapper .swiper-slide .image .overlay .text-wrapper .text-object p {
    color: var(--bs-primary-color);
}

.ep-portfolio-section .portfolio-slider .swiper-wrapper .swiper-slide .image .icon {
    width: 50px;
    height: 50px;
    background-color: var(--bs-primary-color);
    border-radius: 50%;
    top: 7px;
    right: 19px;
}

.ep-portfolio-section .portfolio-slider .swiper-wrapper .swiper-slide.swiper-slide-active .overlay {
    opacity: 1;
}

.ep-portfolio-section.style2 {
    background: var(--bs-bg-color2);
}

.ep-portfolio-section.style2 .shape {
    top: 0;
    right: 0;
    z-index: -1;
}

.ep-portfolio-section.style2 .shape img {
    width: 110%;
}



/*===============================
	34. Portfolio List Page CSS Start
=================================*/
.ep-portfolio-list-section {
    padding: 50px 0px;
    background-image: url(../images/our-product-bg.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.ep-portfolio-list-section .portfolio-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 1199.98px) {
    .ep-portfolio-list-section .portfolio-menu ul {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

.ep-portfolio-list-section .portfolio-menu ul li button {
    color: #075d97;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-transform: capitalize;
    padding: 12px 22px;
    border: 2px solid #05619d;
    border-radius: 50px;
    background: transparent;
}

.ep-portfolio-list-section .portfolio-menu ul li button.active {
    background: var(--bs-primary-color);
    color: var(--bs-white-color);
    border-color: var(--bs-primary-color);
}

.ep-portfolio-list-section .portfolio-menu ul li button:hover {
    background: var(--bs-primary-color);
    color: var(--bs-white-color);
    border-color: var(--bs-primary-color);
}

.ep-portfolio-list-section .fade {
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

.ep-portfolio-list-section .portfolio-main {
    -webkit-columns: 3 410px;
    -moz-columns: 3 410px;
    columns: 3 306px;
    gap: 24px;
}

@media (max-width: 1399.98px) {
    .ep-portfolio-list-section .portfolio-main {
        -webkit-columns: 3 356px;
        -moz-columns: 3 356px;
        columns: 3 356px;
    }
}

@media (max-width: 991.98px) {
    .ep-portfolio-list-section .portfolio-main {
        -webkit-columns: 3 300px;
        -moz-columns: 3 300px;
        columns: 3 300px;
    }
}

.ep-portfolio-list-section .portfolio-main .portfolio-item {
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
    margin-bottom: 24px;
}

.ep-portfolio-list-section .portfolio-main .portfolio-item .overlay {
    /* background-color: rgba(0, 31, 63, 0.8); */
    /* border-radius: 12px; */
    padding: 0px;
    /* opacity: 0; */
    -webkit-transition: var(--bs-transition);
    transition: var(--bs-transition);
}

@media (max-width: 1399.98px) {
    .ep-portfolio-list-section .portfolio-main .portfolio-item .overlay {
        /* padding: 12px; */
    }
}

@media (max-width: 1199.98px) {
    .ep-portfolio-list-section .portfolio-main .portfolio-item .overlay {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .ep-portfolio-list-section .portfolio-main .portfolio-item .overlay {
        padding: 20px;
    }
}

.ep-portfolio-list-section .portfolio-main .portfolio-item .overlay .text-wrapper {
    /* padding-right: 30px; */
    width: 100%;
}

.ep-portfolio-list-section .portfolio-main .portfolio-item .overlay .text-wrapper .text-object {
    padding: 18px 17px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* width: 100%; */
    /* border-radius: 24px; */
    background: #fff;
}

.text-object h5 {
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #064673;
    margin-bottom: 0px;
    font-size: 17px;
}

.ep-portfolio-list-section .portfolio-main .portfolio-item .overlay .text-wrapper .text-object p {
    color: var(--bs-primary-color);
}

.ep-portfolio-list-section .portfolio-main .portfolio-item .icon {
    width: 40px;
    height: 40px;
    background-color: var(--bs-primary-color);
    border-radius: 50%;
    top: 5px;
    right: 5px;
}

.ep-portfolio-list-section .portfolio-main .portfolio-item:hover .overlay {
    opacity: 1;
}

.pb-60 {
    padding-bottom: 60px;
}

.heading-three {
    text-transform: uppercase;
}

.map-images img {
    width: 100%;
}

.section-title .title span {
    color: var(--bs-primary-color);
}

.section-title .subtitle.style2 {
    color: #ffffff;
    background: #83a846;
    padding: 10px 15px !important;
}

/*=============================
	03. Section title CSS Start
===============================*/
.section-title .title span {
    color: var(--bs-primary-color);
}

.section-title .subtitle {
    font-size: 16px;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 6px;
    /* gap: 10px; */
    /* border: 1px solid var(--bs-primary-color); */
    margin-bottom: 10px;
}

@media (max-width: 575.98px) {
    .section-title .subtitle {
        margin-bottom: 12px;
    }
}

.section-title .subtitle .icon {
    color: var(--bs-primary-color);
    margin-left: 8px;
}

.section-title .subtitle.style2 {
    /* color: var(--bs-primary-color); */
    /* background: var(--bs-bg-color3); */
    /* padding: 10px 15px; */
}

.ep-testimonial-section-two {
    padding: 60px 0px;
}

.stat-box {
    border-left: 4px solid #ffffff;
    padding-left: 1.5rem;
}

.stat-box .h1 {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 100%;
    color: #fff;
}

.stat-box p {
    font-size: 21px;
    line-height: 100%;
    color: #fff;
}

@media (min-width: 992px) and (max-width: 1366px) {
    .stat-box {
        white-space: normal
    }
}


.color-diagonal {
    position: absolute;
    z-index: 0;
    background: #1466a1c7;
    backdrop-filter: blur(3px);
}

@media (min-width: 768px) {
    .color-diagonal {
        bottom: 0;
        left: 0;
        width: 65%;
        height: 100%;
        transform: skew(5deg);
        /*clip-path: polygon(0 0, 100% 0, 50% 50%, 15% 50%, 0 10%);*/
        transition-duration: 0.3s;
        z-index: -1;
    }
}

@media (min-width: 1280px) {
    .color-diagonal {
        bottom: 0;
        left: 0;
        width: 60%;
        height: 100%;
        transform: skew(15deg);
        /*clip-path: polygon(0 0, 100% 0, 50% 50%, 15% 50%, 0 10%);*/
        transition-duration: 0.3s;
    }
}

@media (min-width: 1600px) {
    .color-diagonal {
        bottom: 0;
        left: 20px;
        width: 50%;
        height: 100%;
        transform: skew(35deg);
        /*clip-path: polygon(0 0, 100% 0, 50% 50%, 15% 50%, 0 10%);*/
        transition-duration: 0.3s;
        z-index: -1;
    }
}

@media (max-width: 767.98px) {
    .color-diagonal {
        bottom: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: #1868a2;
    }
}

.diagonal-bottom {
    position: absolute;
    z-index: 0;
    background: rgba(var(--bs-primary-rgb), var(--bs-link-opacity, 0.8))
}

@media (min-width: 768px) {
    .diagonal-bottom {
        bottom: 0;
        left: 0%;
        width: 100%;
        height: 60%;
        clip-path: polygon(0 0, 0% 0%, 90% 100%, 0% 100%);
        transition-duration: .8s;
    }
}

@media (min-width: 1024px) {
    .diagonal-bottom {
        bottom: 0;
        left: 0%;
        width: 100%;
        height: 50%;
        clip-path: polygon(0 0, 0% 0%, 90% 100%, 0% 100%);
        transition-duration: .8s;
    }
}

@media (max-width: 767.98px) {
    .diagonal-bottom {
        bottom: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 75%;
        clip-path: polygon(0 0, 0% 0%, 90% 100%, 0% 100%);
    }
}

.counter-container {
    z-index: 10;
    background-image: url(../images/bg-counter.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767.98px) {
    .bg-parallax {
        background-image: none;
    }
}

.bg-parallax {
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    min-height: 700px;
    overflow: hidden !important;
}

.bg-map {
    background-position: bottom;
    background-size: cover;
}



.counter-value {
    display: inline-block;
    transition: transform 0.3s ease-out;
}

.stat-box small {
    font-size: 16px;
}

.counter-wrapper {
    height: 1.2em;
    overflow: hidden;
}

.counter-vertical {
    display: inline-block;
    position: relative;
    font-weight: bold;
    transition: transform 0.8s ease-out;
}



/* ....why-couse--use....... */

.p-90 {
    padding: 55px 0;
}

.bg-themecolor {
    background: #fbfbfb;
}

.why-choose-info {
    padding-right: 0%;
}

.why-choose-info ul li {
    flex: 0 0 30%;
    padding: 0;
    background: #fff0;
    position: relative;
    margin-bottom: 0;
    border: 0;
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    padding: 31px 0;
    border-bottom: 1px solid #ffffff47;
}

.lets-power-info {
    padding-right: 11%;
}

.recapcha-sec {
    display: flex;
    align-items: center;
    justify-content: end;
}

@media (max-width: 1024px) {
    .advan-list span {
        font-size: 16px;
        line-height: 28px;
        padding: 0px 0 14px 26px;
    }

    .why-choose-info ul li {
        flex: 0 0 47%;
    }

    .why-choose-info ul li:last-child {
        border-bottom: 0;
    }

    .why-choose-info {
        margin-bottom: 0;
    }

    .connect-form {
        margin-top: 50px;
    }

    .lets-power-info {
        padding-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .why-choose-info ul li:nth-last-child(2) {
        border-bottom: 0;
    }
}


.why-choose-info ul {
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 0;
}

.why-choose-info ul li {
    flex: 0 0 46%;
    padding: 0;
    background: #fff0;
    position: relative;
    margin-bottom: 0;
    border: 0;
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    padding: 31px 0;
    border-bottom: 1px solid #ffffff47;
}

.why-img-box {
    width: 23%;
}

.why-info-box {
    /* margin-left: 20px; */
    width: 100%;
}

.why-choose-info ul li img {
    width: 100%;
    padding: 10px;
    background: #83a846;
    border-radius: 5px;
    box-shadow: 0 6px 15px rgb(131 168 70);
}

.why-choose-info {
    /* padding-right: 11%; */
}

.why-choose-info ul li h5 {
    font-size: 19px;
    margin: 10px 0 5px;
    color: #000000;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.why-choose-info ul li p {
    font-size: 16px;
    color: #2b2b2b;
}

.why-choose-info ul li {
    flex: 3 0 31%;
    /* padding: 0; */
    background: #f3f3f3;
    position: relative;
    margin-bottom: 0;
    border: 0;
    position: relative;
    overflow: hidden;
    text-align: left;
    /* display: flex; */
    padding: 28px 26px;
    border-bottom: 1px solid #ffffff47;
    margin: 10px;
    border-radius: 20px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.sec-submit-resume {
    background-image: url(../images/why-chouse-us.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 10;
}

.sec-submit-resume::after {
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #012b49c4;
    z-index: -1;
    backdrop-filter: blur(4px);
}

.industries-slider-section {
    /* background-image: url(../images/new-bg.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 53px 0px;
    background-size: cover;
    /* background: #eeededa3; */
    background-color: rgba(10, 7, 7, 0.09);
}

/* Industry Item Base Styling */
.industry-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    /* height: 350px; */
    margin: 20px 0px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.9);
    /* Side slides small thakbe */
    /* opacity: 0.5; */
    /* Side slides halka thakbe */
}

/* Central Active Slide */
.owl-item.center .industry-item {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    /* border: 2px solid rgba(255, 255, 255, 0.2); */
}

.industry-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}



.industry-content {
    /* position: absolute; */
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
    padding: 9px 15px;
    background: #166aa4;
}

.industry-content h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    /* text-transform: uppercase; */
    /* letter-spacing: 1px; */
    margin: 0;
}

/* Hover Animation for Center Item */
.owl-item.center .industry-item:hover .industry-img img {
    transform: scale(1.15);
}

/* Divider Styling */
.divider {
    width: 80px;
    height: 3px;
    margin-top: 10px;
}

.divider span {
    display: block;
    height: 100%;
    width: 100%;
}

/* Icon placement using FontAwesome (ensure FA is linked) */
.industries-slider-section .owl-nav .owl-prev::before {
    content: '\f104';
    /* Angle Left Icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
}

.industries-slider-section .owl-nav .owl-next::before {
    content: '\f105';
    /* Angle Right Icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
}

/* Navigation Positions */
.industries-slider-section .owl-nav .owl-prev {
    display: none;
    left: -25px;
}

.industries-slider-section .owl-nav .owl-next {
    right: -25px;
    display: none;
}

/* Hover Effects */
.industries-slider-section .owl-nav .owl-prev:hover,
.industries-slider-section .owl-nav .owl-next:hover {
    background: #ffffff !important;
    color: #0d6efd !important;
    /* Apnar primary color */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive Fix for Nav */
@media (max-width: 1200px) {
    .industries-slider-section .owl-nav .owl-prev {
        left: 10px;
    }

    .industries-slider-section .owl-nav .owl-next {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .why-choose-info ul li {
        flex: 0 0 100%;
    }

    .opneng-info .accordion-button {
        font-size: 17px;
        line-height: 24px;
    }

    .why-choose-info ul {
        display: flex;
        justify-content: center;
        flex-direction: column !important;
        flex-wrap: wrap;
        margin-top: 0;
    }

    .heading-two {
        font-size: 29px;
        line-height: 46px;
        font-weight: 800;
        color: #0a5f9b;
    }

    .section-title .subtitle {
        font-size: 12px;
        font-weight: 600;
        padding: 8px 10px;
        border-radius: 6px;
        /* gap: 10px; */
        /* border: 1px solid var(--bs-primary-color); */
        margin-bottom: 10px;
    }
}

/* Dots Styling (Optional but recommended) */
.industries-slider-section .owl-dots {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.industries-slider-section .owl-dot {
    height: 10px;
    width: 10px;
    background: rgb(39 109 160 / 77%) !important;
    margin: 0 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industries-slider-section .owl-dot.active {
    width: 30px;
    border-radius: 20px;
    background: #176aa5 !important;
}

.industry-main-slider .owl-nav {
    display: none;
}





/* ..............new................... */


/* Shadow and Scale Reset */
.industries-slider-section .industry-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 320px;
    margin: 30px 9px;
    transition: all 0.4s ease;
    box-shadow: none !important;
    /* Shob shadow remove kora holo */
    transform: scale(0.95);
    opacity: 0.9;
    background: #fff;
}

/* Center active slide */
.industries-slider-section .owl-item.center .industry-item {
    transform: scale(1.11);
    opacity: 1;
    border: none;
    /* Border shadow remove holo */
}

/* Image styling */
.industries-slider-section .industry-img {
    width: 100%;
    height: 100%;
}

.industries-slider-section .industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Title Container (Bottom Bar) */
.industries-slider-section .industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1769a3;
    /* Blue Bar styling as per your screenshot */
    padding: 12px 5px;
    text-align: center;
    z-index: 5;
}

.industries-slider-section .industry-content h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    /* text-transform: uppercase; */
}

/* Remove Dark Overlay/Shadow effect */
.industries-slider-section .industry-item::after {
    display: none;
    /* Kalo shade ti remove kora holo */
}

/* Owl Navigation Buttons Styling */
.industries-slider-section .owl-nav {
    display: block !important;
}

.industries-slider-section .owl-prev,
.industries-slider-section .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0d6efd !important;
    /* Button color blue */
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    transition: 0.3s;
}

.industries-slider-section .owl-prev {
    left: -20px;
}

.industries-slider-section .owl-next {
    right: -20px;
}

.industries-slider-section .owl-prev:hover,
.industries-slider-section .owl-next:hover {
    background: #000 !important;
    transform: translateY(-50%) scale(1.1);
}

/* Dots Styling */
.industries-slider-section .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.industries-slider-section .owl-dot span {
    background: #ccc !important;
}

.industries-slider-section .owl-dot.active span {
    background: #0d6efd !important;
}

.som_bottom p {
    color: #fff;
}

.widget_infos strong {
    font-size: 15px;
    color: #fff;
    font-weight: 600;
}

.text-justify {
    text-align: justify;
}

.icon .fa-angles-right {
    color: #fff;
}

.navigation .right {
    position: relative;
    /* width: 270px; */
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3087c8;
    color: #fff;
    border-radius: 50px;
    margin-right: 20px;
    padding: 12px 20px;
}

.navigation .right:before {
    /* position: absolute; */
    /* top: 0; */
    left: 0;
    bottom: 0;
    width: 0px;
    /* background: #e0e0e0; */
    /* content: ""; */
}

.main-menu__right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__right .phone_number .number a:hover {
    color: #fff;
}

.main-menu__right .phone_number .number a {
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: -0.03em;
    transition: all 500ms ease;
}

.main-menu__right .phone_number .number p {
    font-size: 17px;
    line-height: 24px;
    font-weight: 500;
    letter-spacing: 1.1px;
    margin: 0;
    color: #fff;
}

.main-menu__right {
    position: relative;
    display: flex;
    align-items: center;
}

.main-menu__right .phone_number {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.industries-slider-section {
    overflow: hidden !important;
}

.sec-submit-resume {
    overflow: hidden !important;
}

.outer-link .service-title {
    position: relative;
    display: inline-block;
    line-height: 24px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 16px;
    z-index: 1;
    padding: 13px 15px 13px 40px;
    background: rgb(1, 47, 93);
    transition: 0.5s;
}

.lower-content .outer-link .service-title {
    position: relative;
    display: inline-block;
    line-height: 24px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 16px;
    z-index: 1;
    padding: 13px 15px 13px 40px;
    background: rgb(1, 47, 93);
    transition: 0.5s;
}

.lower-content {
    position: relative;
}

.lower-content .outer-link {
    position: relative;
    margin-top: -26px;
}

.lower-content .service-title span {
    color: rgb(237, 50, 55);
    font-size: 20px;
    position: absolute;
    left: 10px;
    top: 13px;
    padding: 0px;
}

.lower-content .outer-link .service-title {
    position: relative;
    display: inline-block;
    line-height: 24px;
    color: rgb(255, 255, 255);
    font-weight: 600;
    font-size: 15px;
    z-index: 1;
    padding: 13px 15px 13px 12px;
    background: rgb(1, 47, 93);
    transition: 0.5s;
    width: 88%;
}

.lower-content .service-title::after {
    position: absolute;
    content: "";
    right: -21px;
    top: 0px;
    display: inline-block;
    width: 0px;
    height: 0px;
    border-top: 25px solid transparent;
    border-left: 22px solid rgb(1, 47, 93);
    border-bottom: 25px solid transparent;
}

.lower-content .service-title::after {
    /* border-color: #; */
}


.footer-social-fa {
    display: flex;
    gap: 14px;
    padding: 0;
    /* margin: 0; */
    list-style: none;
    margin-top: 10px !important;
}

.footer-social-fa li a {
    width: 44px;
    height: 44px;
    background: #3087c8;
    /* footer dark bg */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Hover lift */
.footer-social-fa li a:hover {
    transform: translateY(-5px);
}

/* Location hover */
.footer-social-fa li.location a:hover {
    background: #ef4444;
}

/* LinkedIn hover */
.footer-social-fa li.linkedin a:hover {
    background: #0a66c2;
}

/* Icon animation */
.footer-social-fa li a i {
    transition: transform 0.3s ease;
}

.footer-social-fa li a:hover i {
    transform: scale(1.15);
}

.widget2 ul li {
    position: inherit !important;
    padding-left: 0px;

}

.widget2 ul li::before {
    display: none;
}

.section-padding {
    padding: 94px 0;
}

@media (max-width: 1199px) {
    .section-padding {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}

.feature-box-item {
    border: 1px solid rgba(30, 32, 35, 0.12);
    box-shadow: 10px 16px 120px 1px rgba(4, 7, 56, 0.12);
    padding: 50px 20px;
    transition: all 0.5s ease-in-out;
    position: relative;
    z-index: 9;
    height: 100%;
    color: #fff;
    /* default text color */
}

@media (max-width: 575px) {
    .feature-box-item {
        padding: 30px;
    }
}

.feature-box-item::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-bottom: 4px solid #3087c8;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}

.feature-box-item .feature-icon-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.13);
    padding-bottom: 11px;
    margin-bottom: 20px;
}

.feature-box-item .feature-icon-item .icon {
    font-size: 60px;
    color: #3087c8;
}

.feature-box-item .feature-icon-item .icon i {
    display: block;
}

.feature-box-item .feature-icon-item h5 {
    font-weight: 600;
    font-size: 18px;
}

.feature-box-item:hover {
    background-color: #FFF3ED;
}

.feature-box-item:hover::after {
    width: 100%;
    height: 100%;
    visibility: visible;
    opacity: 1;
}

.feature-box-item:hover .icon i {
    animation: icon-bounce 0.8s 1;
}



/* The image overlay */
.feature-box-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    transition: transform 0.5s ease-in-out;
    transform-origin: top;
    transform: scaleY(0);
    /* start collapsed */
    z-index: 0;
}

/* Hover: change text color to white */
.feature-box-item:hover .feature-icon-item h5,
.feature-box-item:hover .content p {
    color: #fff;
}

/* Hover: change text color to white */
.feature-box-item:hover .feature-icon-item h5,
.feature-box-item:hover .content p {
    color: #fff;
}

.feature-box-item .feature-icon-item:hover {
    border-bottom: 1px solid #f9f9f959 !important;
}


/* Target the boxes via parent .feature-box-col */
.feature-box-col:first-child .feature-box-item::before {
    background-image: url('../images/vision-bg.png');
}

.feature-box-col:nth-child(2) .feature-box-item::before {
    background-image: url('../images/our-mission-bg.png');
}

.feature-box-col:nth-child(3) .feature-box-item::before {
    background-image: url('../images/our-value.png');
}

/* Hover effect: unfold the image */
.feature-box-item:hover::before {
    transform: scaleY(1);
    /* expand vertically */
}

/* Ensure text/icons stay above the image */
.feature-box-item .feature-icon-item,
.feature-box-item .content {
    position: relative;
    z-index: 1;
}

/* Default box styling */
.feature-box-item {
    position: relative;
    background-color: #fff;
    /* white background */
    border: 1px solid rgba(30, 32, 35, 0.12);
    padding: 29px 20px;
    overflow: hidden;
    transition: color 0.5s ease;
    color: #000;
}

/* General Section Styling */
.about-section,
.board-section {
    padding: 25px 0px 40px;
    font-family: 'Open Sans', sans-serif;
    color: #222;
}


/* Underline effect */
.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    /* background: #2ab200; */
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Tagline and Vision */
.tagline,
.vision,
.summary {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.2s;
}

/* Numbers Boxes */
.numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.number-box {
    background: #f5f5f5;
    padding: 20px 15px;
    margin: 10px;
    border-radius: 10px;
    min-width: 200px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

.number-box span {
    font-weight: 700;
    color: #2ab200;
}

/* Director Cards */
.director-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s forwards;
}

.director-card img {
    width: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #2ab200;
}

.director-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.director-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.director-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Fade In Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for multiple items */
.numbers .number-box:nth-child(1) {
    animation-delay: 0.2s;
}

.numbers .number-box:nth-child(2) {
    animation-delay: 0.4s;
}

.numbers .number-box:nth-child(3) {
    animation-delay: 0.6s;
}

.numbers .number-box:nth-child(4) {
    animation-delay: 0.8s;
}

.director-card:nth-child(1) {
    animation-delay: 0.3s;
}

.director-card:nth-child(2) {
    animation-delay: 0.5s;
}

/* Responsive */
@media(max-width:768px) {
    .numbers {
        flex-direction: column;
    }

    .number-box {
        width: 100%;
        max-width: 350px;
    }
}


/* General Section Styling */
.about-section,
.board-section {
    /* padding: 80px 0; */
    font-family: 'Open Sans', sans-serif;
    color: #222;
    background: #f9f9f9;
}

.board-section {
    background: #fff;
}



/* Tagline & Vision */
.tagline,
.vision,
.summary {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
    animation-delay: 0.2s;
    color: #555;
}

/* About Numbers */
.about-numbers .number-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s forwards;
    cursor: default;
}

.about-numbers .number-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.number-box h3 {
    font-size: 2rem;
    color: #2ab200;
    margin-bottom: 10px;
}

/* Director Cards */
.director-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.director-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
}

.director-img img {
    width: 160px;
    border-radius: 50%;
    border: 5px solid #2ab200;
    margin-top: -80px;
    background: #fff;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.director-info {
    padding: 20px;
    text-align: center;
}

.director-info h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.director-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Fade In Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger Animations */
.about-numbers .number-box:nth-child(1) {
    animation-delay: 0.2s;
}

.about-numbers .number-box:nth-child(2) {
    animation-delay: 0.4s;
}

.about-numbers .number-box:nth-child(3) {
    animation-delay: 0.6s;
}

.about-numbers .number-box:nth-child(4) {
    animation-delay: 0.8s;
}

.director-card:nth-child(1) {
    animation-delay: 0.3s;
}

.director-card:nth-child(2) {
    animation-delay: 0.5s;
}

/* Responsive */
@media(max-width:768px) {
    .about-numbers .number-box {
        margin-bottom: 20px;
    }

    .director-img img {
        margin-top: -50px;
        width: 130px;
    }
}

/* ===============================
   Leadership / Board Section
================================= */

.sec-leadersothers {
    background: #f6f7f8;
}

/* Wrapper */
.all-leader ul {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: #fff;
    border-radius: 18px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;

    /* Animation */
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease forwards;
}

/* Stagger animation */
.all-leader ul:nth-child(1) {
    animation-delay: .1s;
}

.all-leader ul:nth-child(2) {
    animation-delay: .2s;
}

.all-leader ul:nth-child(3) {
    animation-delay: .3s;
}

.all-leader ul:nth-child(4) {
    animation-delay: .4s;
}

.all-leader ul:nth-child(5) {
    animation-delay: .5s;
}

/* Image Column */
.all-leader ul li:first-child {
    min-width: 220px;
    text-align: center;
}

.all-leader ul li img {
    width: 236px;
    /* height: 200px; */
    object-fit: cover;
    /* border-radius: 50%; */
    /* border: 6px solid #2ab200; */
    transition: transform .4s ease, box-shadow .4s ease;
}

/* Image Hover */
.all-leader ul:hover img {
    transform: scale(1.06);
    box-shadow: 0 15px 35px rgba(42, 178, 0, 0.35);
}

/* Content */
.lead-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}

.lead-info label {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2ab200;
    margin-bottom: 15px;
}

.lead-info p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
}

/* Accent Line */
.all-leader ul::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #3087c8;
}

/* Hover Lift */
.all-leader ul:hover {
    transform: translateY(-6px);
    transition: .4s ease;
}

/* ===============================
   Animation
================================= */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   Responsive
================================= */
@media (max-width: 991px) {
    .all-leader ul {
        flex-direction: column;
        text-align: center;
    }

    .all-leader ul li:first-child {
        margin-bottom: 20px;
    }

    .all-leader ul li img {
        width: 160px;
        height: 160px;
    }

    .lead-info p {
        text-align: left;
    }
}

/* Section spacing & font */
.sec-leaders {
    background: #f9f9f9;
}


/* Leader rows */
.leader-row {
    margin-bottom: 70px;
}

/* Image styling */
.leader-img {
    width: 100%;
    /* height: 260px; */
    /* object-fit: cover; */
    /* border-radius: 50%; */
    /* border: 6px solid #2ab200; */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding: 5px;
}

.leader-img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}

/* Text area */
.leader-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #111;
}

.leader-designation {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2ab200;
    margin-bottom: 15px;
}

.leader-info p {
    font-size: 1rem;
    line-height: 1.75;
    color: #444;
}

.leader-vision {
    margin-top: 16px;
    padding-left: 15px;
    border-left: 4px solid #2ab200;
    font-style: italic;
    color: #333;
}

/* Animation */
.animate-fade {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.animate-fade:nth-child(1) {
    animation-delay: 0.2s;
}

.animate-fade:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .leader-img {
        width: 170px;
        height: 170px;
        margin-bottom: 20px;
    }

    .leader-row {
        text-align: center;
    }

    .leader-vision {
        border-left: none;
        padding-left: 0;
        margin-top: 12px;
    }
}

.phone_number .icon img {
    width: 24px;
    margin-right: 5px;
}

/* ================= GLOBAL ADVANCED ================= */
.elyxys-global-advanced {
    padding: 40px 0 70px;
    background: radial-gradient(circle at top, #f4fdf1, #ffffff);
    /* font-family: 'Open Sans', sans-serif; */
    overflow: hidden;
}

/* section head */
.section-head h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(107, 191, 69, 0.15);
    color: #3c8f2f;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 10px;
}

/* card */
.global-card {
    height: 100%;
    padding: 45px 20px;
    border-radius: 25px;
    background: #fafafa;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.global-card::before {
    /* content: ''; */
    position: absolute;
    inset: 0;
    /* background: linear-gradient(135deg, #6bbf45, #3c8f2f); */
    opacity: 0;
    transition: 0.5s;
}

.global-card:hover::before {
    opacity: 0.06;
}

.global-card:hover {
    transform: translateY(-12px);
}

/* header */
.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    /* margin-bottom: 30px; */
    position: relative;
    z-index: 1;
    justify-content: center;
}

.card-header i {
    font-size: 34px;
    color: #6bbf45;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* location grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    position: relative;
    z-index: 1;
}

.location-grid span {
    padding: 12px 11px;
    background: #3087c8;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: 0.4s;
    color: #fff;
}

.location a {
    background: #ef4444;
}

.global-card:hover .location-grid span {
    background: #82a746;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* theme tweak */
.global-card.india i {
    color: #3487c5;
}

.global-card.international i {
    color: #138808;
}

/* responsive */
@media(max-width: 767px) {
    .section-head h2 {
        font-size: 28px;
    }
}

.dropdown-2-i a i {
    float: right;
    margin-top: 10px;
    transform: rotate(269deg);
}

.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);
    }
}

.industry-item2 {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    /* height: 350px; */
    margin: 14px 0px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: inherit;
    /* opacity: 0.5; */
    width: 100%;
}

.contact-section {
    background: #f8f9fa;
    font-family: 'Open Sans', sans-serif;
}

.contact-title {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-subtitle {
    color: #666;
    font-size: 15px;
}

.contact-info-box,
.contact-form-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-info-box h4,
.contact-form-box h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-info-item i {
    font-size: 20px;
    color: #0d6efd;
    margin-top: 5px;
}

.contact-info-item p {
    margin: 0;
    font-size: 14px;
    color: #444;
    font-weight: 400;
}

.contact-info-item a {
    color: #000;
    text-decoration: none;
}

.contact-info-item a:hover {
    color: #0d6efd;
}

.contact-form-box .form-control {
    border-radius: 6px;
    font-size: 14px;
    padding: 10px;
}

.contact-btn {
    background: #3087c8;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s ease;
    font-weight: 600;
}

.contact-btn:hover {
    background: #084298;
    color: #fff;
}

.contact-info-item i {
    font-size: 22px;
    color: #3087c8;
    transition: transform 0.3s ease, color 0.3s ease;
}



.contact-section {
    background: linear-gradient(120deg, #f8f9fa, #fbfdff);
}

@media (max-width: 991px) {

    .contact-info-box,
    .contact-form-box {
        padding: 25px 20px;
    }
}

/* ===== Header Search ===== */
.nav-search {
    position: relative;
}

.search-btn {
    font-size: 16px;
    color: #222;
    cursor: pointer;
}

/* Dropdown Box */
.search-dropdown {
    position: absolute;
    /* bottom: -49px; */
    right: 0;
    background: #fff;
    width: 320px;
    padding: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    z-index: 999;
}

/* Active */
.nav-search.active .search-dropdown {
    opacity: 1;
    visibility: visible;
    /* transform: translateY(0); */
}

/* Form */
.search-dropdown form {
    display: flex;
    align-items: center;
}

/* Input */
.search-dropdown input {
    flex: 1;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

/* Button */
.search-dropdown button {
    width: 44px;
    height: 44px;
    background: #6fa228;
    /* Cardolite green vibe */
    border: none;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

/* Small Arrow */
.search-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    right: 18px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.search-dropdown {
    position: absolute;
    right: 0;
    top: 82px;
    width: 360px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    z-index: 9999;
}

.nav-search.active .search-dropdown {
    opacity: 1;
    visibility: visible;
    /* transform: translateY(0); */
}




#searchResults {
    max-height: 290px;
    overflow-y: auto;
    border-top: 1px solid #eee;
}

#searchResults a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f1f1f1;
}

#searchResults a:hover {
    background: #f5f5f5;
}

.sr-title {
    display: block;
    padding: 8px 15px;
    font-weight: 600;
    color: #7aa641;
    background: #fafafa;
}

.about-vijai-section {
    /* background: linear-gradient(135deg, #f8f9fb, #eef2f7); */
    overflow: hidden;
}

/* Title Styling */
.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #1c2b4a;
    position: relative;
}

.about-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #0d6efd;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

/* Text Styling */
.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 9px;
}

/* Image Animation */
.about-image img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Animation Effects */
.about-content {
    animation: fadeLeft 1.2s ease forwards;
}

.about-image {
    animation: fadeRight 1.2s ease forwards;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Fix */
@media (max-width: 991px) {
    .about-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-content {
        text-align: center;
    }
}

.about-img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}



/* Features */
.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 15px;
}

.feature-list li::before {
    content: '\f138';
    font-family: 'FontAwesome';
    margin-right: 13px;
    font-size: 20px;
    margin-top: -3px;
    margin-right: 13px;
    font-size: 16px;
    margin-top: -3px;
    position: absolute;
    top: 3px;
    left: 0;
    color: #3087c8;
    background-position: center;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(48 135 200) !important;
}

table tr th {
    color: #000 !important;
    vertical-align: middle;
    border-bottom: rgba(212, 15, 20, 1) 1px solid;
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    font-weight: 600;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgb(15 109 181) !important;
}

table tr td {
    vertical-align: middle;
}

/* ===== Product Table Custom Styling ===== */

.product-table {
    font-size: 15px;
    vertical-align: middle;
}

.product-table thead tr:first-child th {
    font-size: 20px;
    letter-spacing: 1px;
    padding: 14px 10px;
}

.product-table thead tr:nth-child(2) th {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.product-table th,
.product-table td {
    padding: 14px 12px;
    vertical-align: middle;
    text-align: center;
}

.product-table tbody tr {
    transition: all 0.3s ease;
}

.product-table tbody tr:hover {
    background-color: #f2f8ff;
}

.product-table td:nth-child(5) {
    /* text-align: left; */
    /* Special Features column left aligned */
}

.product-table td a {
    text-decoration: none;
    font-weight: 600;
    color: #0d6efd;
    transition: 0.3s;
}

.product-table td a:hover {
    color: #084298;
    text-decoration: underline;
}

/* Rounded Table Container */
.product-panle .border-primary {
    border-width: 2px !important;
}

/* ===== Mobile Responsive Table ===== */



@media screen and (max-width: 768px) {

    /* 1. Parent padding gulo remove kora jate table screen-er edge porjonto jay */
    .intro-panel,
    .product-panle .container-fluid,
    .product-panle .p-4,
    .product-panle .bg-white.curve-bottom-right {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* 2. Table-er wrapper div-ta ke 100% width kora */
    .text-panel .border.rounded-4 {
        border-radius: 0 !important;
        /* Mobile-e corner baka thakle bhalo lage na */
        border-left: none !important;
        border-right: none !important;
        width: 100% !important;
        overflow-x: auto !important;
        /* Scroll enable kora */
        display: block !important;
    }

    /* 3. Table ke scrollable kora */
    .product-table {
        display: table !important;
        /* Table layout maintain kora */
        width: 100% !important;
        min-width: 850px !important;
        /* Jate column gulo gajagaji na hoy */
        margin-bottom: 0 !important;
    }

    /* 4. Table header (th) and rows (tr) fix */
    .product-table thead,
    .product-table tbody {
        display: table-header-group !important;
    }

    .product-table tr {
        display: table-row !important;
    }

    .product-table th,
    .product-table td {
        display: table-cell !important;
        padding: 12px 10px !important;
        white-space: nowrap !important;
        /* Text jate bhenge na jay */
        vertical-align: middle !important;
        border: 1px solid #dee2e6 !important;
    }

    /* 5. Title (MODIFIED EPOXY RESIN) full width kora */
    .product-table thead tr:first-child th {
        width: 100% !important;
        white-space: normal !important;
        /* Title jate bhenge line hoy */
    }

    /* 6. Special Features column-er width aktu barano jate text pora jay */
    .product-table td:nth-last-child(2) {
        white-space: normal !important;
        min-width: 280px !important;
        text-align: left !important;
    }

    /* Labels hide kora (jodi ager code theke thake) */
    .product-table td::before {
        display: none !important;
    }

    /* 8. Scrollbar design */
    /* --- Scrollbar Always Visible Design --- */

    .text-panel .border.rounded-4 {
        overflow-x: scroll !important;
        /* 'auto' bad diye 'scroll' jate container sobsomoy active thake */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #3188c8 #f1f1f1;
    }

    /* Webkit Browsers (Chrome, Safari, Edge) */
    .text-panel .border.rounded-4::-webkit-scrollbar {
        height: 8px;
        /* Scrollbar er thickness */
        display: block !important;
        /* Forcefully display kora */
    }

    .text-panel .border.rounded-4::-webkit-scrollbar-track {
        background: #f1f1f1;
        /* Track ta ke halka color dewa jate user bujhte pare path ta */
        border-radius: 10px;
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
        /* Halka depth jate sobsomoy bujha jay */
    }

    .text-panel .border.rounded-4::-webkit-scrollbar-thumb {
        background-color: #3188c8;
        /* Apnar dewa blue color */
        border-radius: 10px;
        border: 2px solid #f1f1f1;
        /* Thumb ke track theke alada korbe */
    }

    /* Table er default scrollbar hide kora (jodi browser nij theke add kore) */
    .product-table::-webkit-scrollbar {
        display: none !important;
    }
}


/* --- Section Design --- */
.application-details-section .section-title {
    color: #27a243;
    font-weight: 600;
    border-left: 4px solid #27a343;
    padding-left: 15px;
    line-height: 30px;
    font-size: 28px;
}

.application-image-wrapper img {
    width: 100%;
    /* height: 260px; */
    /* object-fit: cover; */
    border: 3px solid #fff;
    transition: all 0.3s ease;
}

.application-image-wrapper img:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
}

/* --- Table Styles --- */
.table-heading {
    color: #0066ff;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.application-table thead th {
    background-color: #3087c8 !important;
    color: #4c4d4e !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 18px 15px;
    border: none;
    text-align: center;
}

.application-table-animated tbody tr {
    transition: all 0.3s ease;
}

.application-table-animated tbody tr:hover {
    background-color: rgba(0, 102, 255, 0.04) !important;

}

.grade-links {
    color: #0066ff;
    font-weight: 600;
}

/* --- Mobile Responsive (Card View) --- */


.application-table-animated tbody tr td {
    text-align: center;
}


/* Custom Styles for Recommended Boxes */
.recommended-products .section-heading {
    font-weight: 700;
    color: #333;
    font-size: 24px;
}

.product-feature-card {
    background: #fff;
    border: 1.5px solid #0066cc;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-feature-card:hover {
    transform: translateY(-5px);
}

.card-header-box {
    background: #cce5ff;
    /* Halka Nil Background */
    padding: 20px;
    border-bottom: 1px solid #0066cc;
}

.card-header-box.alternate-bg {
    background: #d1ecf1;
    /* Aktu bhinno shade Box 2 er jonno */
}

.icon-box {
    background: #0066cc;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 24px;
}

.header-info h4 {
    color: #002244;
    font-weight: 700;
    font-size: 1.15rem;
}

.header-info .subtitle {
    color: #004488;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-body-box {
    padding: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

.feature-list li::before {
    content: "•";
    /* Bullet symbol */
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
    font-size: 18px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .search-dropdown {
        position: absolute;
        left: 50%;
        top: 40px;
        width: 360px;
        background: #fff;
        opacity: 0;
        visibility: hidden;
        transform: translatex(-72%) !important;
        transition: all .3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
        z-index: 9999;
    }

    .search-btn {
        font-size: 16px;
        color: #222;
        cursor: pointer;
        margin-right: 15px;
    }

    .header-info h4 {
        font-size: 1rem;
    }



    .icon-box {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .card-header-box {
        padding: 15px;
    }
}

/* Table Styles */
.custom-marine-table-wrapper {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.marine-product-table thead th {
    background-color: #d1e9f7 !important;
    /* Light blue from image ab5f79 */
    color: #000;
    font-weight: 700;
    padding: 15px;
    border-bottom: 2px solid #3188c8;
}

.tech-name {
    font-weight: 700;
    color: #000;
    padding-left: 20px !important;
}

.table-light-blue {
    background-color: #f1f8fd !important;
    /* Subtle alternate row color */
}

.feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feat-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}

.feat-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.product-grades {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* Table Wrapper - scroll active korar jonno */
.custom-marine-table-wrapper {
    width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    /* Smooth scrolling for iOS */
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

/* Table general styling */
.marine-product-table {
    margin-bottom: 0 !important;
    white-space: normal;
    /* Text jate wrap hoy */
}

/* Header styling */
.marine-product-table thead th {
    background-color: #d1e9f7 !important;
    /* Image reference color */
    color: #000 !important;
    white-space: nowrap;
    /* Header jate ek line e thake */
    padding: 15px !important;
    font-weight: 700;
}

/* Row colors */
.table-light-blue {
    background-color: #f1f8fd !important;
}

/* List styling */
.feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 250px;
    /* Mobile e jate column ta choto na hoye jay */
}

.feat-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 14px;
}

.feat-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.product-grades {
    min-width: 300px;
    /* Grades gulo jate gajagaji na hoy */
    font-size: 14px;
    color: #3188c8;
    font-weight: 600;
}

/* Technology Name column width */
.tech-name {
    font-weight: 700;
    min-width: 180px;
}

/* --- Mobile Specific Screen Adjustments --- */
@media screen and (max-width: 768px) {

    /* Table ke force kora jate screen er baire jay ebong scroll active hoy */
    .marine-product-table {
        min-width: 850px !important;
    }

    /* Scrollbar Styling (Always Visible) */
    .custom-marine-table-wrapper::-webkit-scrollbar {
        height: 8px;
        display: block !important;
    }

    .custom-marine-table-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .custom-marine-table-wrapper::-webkit-scrollbar-thumb {
        background: #3188c8;
        /* Blue color scrollbar */
        border-radius: 10px;
        border: 2px solid #f1f1f1;
    }

    /* Title size choto kora mobile er jonno */
    .table-main-title {
        font-size: 18px !important;
        padding-left: 10px;
    }
}

/* Container & Titles */
.performance-technical-section {
    background-color: #f9fcff;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #002b5c;
}

/* Test Result Card */
.test-result-box img {
    max-height: 180px;
    object-fit: contain;
}

.test-specs {
    font-size: 11px;
    background: #f1f1f1;
    padding: 5px 8px;
    border-radius: 4px;
}

.spec-item span {
    font-weight: 700;
    color: #3188c8;
}

/* Product Feature List */
.icon-circle {
    width: 35px;
    height: 35px;
    background: #3188c8;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

.icon-shield {
    background: #002b5c;
}

.check-list {
    list-style: none;
    padding-left: 5px;
}

.check-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Mobile Adjustments */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 18px;
    }

    .technical-card {
        padding: 20px !important;
    }
}

/* Container & Mobile Scrollbar */
.custom-marine-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.application-table {
    min-width: 100%;
    /* Essential for mobile responsive scroll */
    background: #fff;
}

/* Header Design */
.application-table thead th {
    background-color: #d1e9f7 !important;
    /* Blue from image */
    color: #002b5c;
    padding: 16px !important;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 3px solid #3188c8 !important;
}

/* Category Group Bars (The Light Blue Sections) */
.group-header td {
    background-color: #f1f8fd !important;
    color: #3188c8;
    font-weight: 800;
    font-size: 15px;
    padding: 12px 20px !important;
    border-left: 6px solid #3188c8 !important;
}

/* Cells Styling */
.application-table td {
    padding: 14px 16px !important;
    font-size: 14px;
    border-color: #f1f1f1 !important;
}

.sub-category {
    font-weight: 700;
    color: #555;
    width: 200px;
}

.p-id {
    font-weight: 700;
    color: #000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Scrollbar Customization */
.custom-marine-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.custom-marine-table-wrapper::-webkit-scrollbar-thumb {
    background: #3188c8;
    border-radius: 10px;
}

/* Responsive Font Scaling */
@media screen and (max-width: 768px) {
    .table-main-title {
        font-size: 20px;
        text-align: center;
    }
}

/* Container & Mobile Responsiveness */
.custom-marine-table-wrapper {
    width: 100%;
    overflow-x: auto;
    /* Required for mobile view */
    border-radius: 8px;
    border: 1px solid #dee2e6;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.master-table {
    min-width: 1100px;
    /* Essential to keep all 8 columns readable */
    background: #fff;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* Header Styling - Light Blue Theme from Image */
.master-table thead th {
    background-color: #d1e9f7 !important;
    color: #002b5c;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    padding: 12px !important;
    border: 1px solid #b8d4e6 !important;
    text-transform: uppercase;
}

.bg-header-dark {
    background-color: #c2e1f2 !important;
    /* Slightly darker shade for grouping */
}

/* Category Group Headers (Floor Coating, etc.) */
.group-header td {
    background-color: #f1f8fd !important;
    color: #3188c8;
    font-weight: 800;
    font-size: 15px;
    padding: 10px 20px !important;
    border-left: 6px solid #3188c8 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Cell Styling */
.master-table td {
    padding: 12px 10px !important;
    font-size: 13.5px;
    border-color: #f0f0f0 !important;
    text-align: center;
}

.sub-cat {
    font-weight: 700;
    color: #444;
    text-align: left !important;
    background: #fafafa;
}

.p-id {
    font-weight: 700;
    color: #000;
}

/* Divider for visual clarity between sub-items */
.row-divider td {
    border-top: 1.5px solid #e9ecef !important;
}

/* Mobile Scrollbar */
.custom-marine-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.custom-marine-table-wrapper::-webkit-scrollbar-thumb {
    background: #3188c8;
    border-radius: 10px;
}

/* --- Global Variables for Branding --- */
:root {
    --primary-blue: #002b5c;
    /* Dark Marine Blue */
    --accent-blue: #3188c8;
    /* Corporate Cyan Blue */
    --light-bg: #f8fbff;
    /* Soft Tech Background */
    --white: #ffffff;
    --text-muted: #666;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* --- Section & Container --- */
.tech-showcase {
    background-color: var(--light-bg);
    padding: 40px 0;
}

.main-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Technology Grid & Cards --- */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* margin-bottom: 60px; */
}

.tech-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 43, 92, 0.15);
}

.tech-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f1f8fd;
    /* Light Header Blue */
    border-bottom: 2px solid #d1e9f7;
}

.tech-header i {
    font-size: 28px;
    color: var(--accent-blue);
}

.tech-header h3 {
    margin: 0;
    font-size: 18px;
    color: var(--primary-blue);
    font-weight: 700;
    line-height: 1.2;
}

.tech-features {
    list-style: none;
    padding: 25px;
    margin: 0;
    flex-grow: 1;
}

.tech-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

.tech-features li::before {
    content: "\f30c";
    /* Font Awesome 'check' icon code */
    font-family: "Font Awesome 6 Free";
    /* Font Awesome family link kora thakte hobe */
    font-weight: 900;
    /* Solid icon-er jonno weight 900 proyojon */
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
    transform: rotate(88deg);
    color: #3087c8;
}

.tech-footer {
    background: #1867a2;
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- Performance & Recommendation Split --- */
.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, transparent);
    margin: 50px 0;
}

.performance-split {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: start;
}

.sub-title {
    color: var(--primary-blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.sub-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: var(--accent-blue);
}

.test-meta {
    font-size: 13px;
    color: var(--text-muted);
    background: #e9ecef;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 25px;
}

/* Salt Spray Image Boxes */
.test-img-container {
    display: flex;
    gap: 20px;
}

.test-box {
    flex: 1;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
}

.placeholder-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #888;
    background: #fff;
    border: 1px solid #eee;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-blue);
    color: #fff;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 20px;
    z-index: 10;
}

/* Recommendation Highlights */
.highlight-item {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease;
}

.highlight-item:hover {
    transform: scale(1.02);
}

.highlight-item i {
    font-size: 24px;
    color: var(--accent-blue);
    padding-top: 5px;
}

.highlight-item strong {
    display: block;
    color: var(--primary-blue);
    font-size: 16px;
    margin-bottom: 5px;
}

.highlight-item p {
    margin: 0;
    font-size: 13.5px;
    color: #555;
    line-height: 1.4;
}

/* --- Mobile Responsiveness --- */
@media screen and (max-width: 992px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .performance-split {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 26px;
    }

    .test-img-container {
        flex-direction: column;
    }
}



/* Container Wrapper */
.vijai-access-container {
    padding: 60px 0;
    /* font-family: 'Open Sans', sans-serif; */
    background-color: #e7e3e342;
}

/* Content Section Styles */
.content-section .main-title {
    color: #003366;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-text {
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.benefits-box h3 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 15px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list li i {
    color: #003366;
    font-size: 14px;
}

/* Form Section Styles */
.form-section {
    padding-top: 40px;
}

.form-card {
    background: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.form-title {
    color: #003366;
    font-size: 24px;
    margin-bottom: 30px;
    border-bottom: 2px solid #003366;
    display: inline-block;
}

.form-label-custom {
    font-weight: 600;
    color: #003366;
    font-size: 14px;
}

.form-control,
.form-select {
    border-radius: 2px;
    border: 1px solid #ccc;
    padding: 10px;
}

.form-control:focus {
    border-color: #003366;
    box-shadow: none;
}

.terms-box {
    height: 100px;
    overflow-y: scroll;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 12px;
    color: #777;
    background: #f9f9f9;
}

.btn-submit {
    background-color: #8cc63f;
    /* Green like the screenshot */
    color: #fff;
    padding: 10px 40px;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #76ac32;
    color: #fff;
}

/* Mock Captcha Style */
.recaptcha-mock {
    border: 1px solid #d3d3d3;
    background: #f9f9f9;
    padding: 15px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 3px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .form-card {
        padding: 20px;
    }

    .vijai-access-container {
        padding: 30px 0;
    }
}

/* Terms & Conditions Container */
.terms-wrapper {
    background: #f8f9fa;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.terms-label {
    font-size: 15px;
    color: #003366;
    /* Deep blue to match Vijai branding */
    cursor: pointer;
}

.terms-scroll-container {
    height: 150px;
    overflow-y: scroll;
    background: #fff;
    border: 1px solid #ced4da;
    padding: 15px;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.6;
    color: #495057;
}

.terms-scroll-container h6 {
    font-size: 14px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.terms-scroll-container ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.terms-scroll-container li {
    margin-bottom: 8px;
}

/* Custom Scrollbar for a modern look */
.terms-scroll-container::-webkit-scrollbar {
    width: 8px;
}

.terms-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.terms-scroll-container::-webkit-scrollbar-thumb {
    background: #003366;
    border-radius: 4px;
}

.terms-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #002244;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
    .terms-scroll-container {
        height: 120px;
        font-size: 12px;
    }
}

.floar-images img {
    width: 100%;
}

.padding-15 {
    padding: 15px;
    text-align: justify;
}

.font-size-15 th {
    font-size: 16px !important;
}

@media (max-width: 991px) {

    #mainSearchItem {
        width: 100%;
        padding: 12px 15px;
        display: block !important;
    }

    #mainSearchItem .search-dropdown {
        position: relative;
        width: 100%;
    }

    #mainSearchItem input {
        width: 100%;
    }
}

/* Cardolite Style Search Dropdown */
.search-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 380px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 0;
    /* Layout thik rakhar jonno padding 0 */
    display: none;
    z-index: 9999;
    border: 1px solid #eee;
}

/* Internal Padding for Content */
.search-results-wrapper {
    padding: 20px;
}

.search-category-title {
    font-size: 14px;
    font-weight: 800;
    color: #2c3e50;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.search-results-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.search-item:last-child {
    border-bottom: none;
}

/* Icon Style (Green circle with pencil) */
.search-icon {
    width: 35px;
    height: 35px;
    background-color: #79c142;
    /* Reference green color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 14px;
}

.search-info {
    flex-grow: 1;
}

.res-title {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}

.res-date {
    display: block;
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin-top: 2px;
}

.view-all-link {
    display: block;
    text-align: right;
    padding-top: 15px;
    font-size: 13px;
    font-weight: 700;
    color: #79c142;
    text-decoration: none;
}

.view-all-link:hover {
    text-decoration: underline;
}

