@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: 15px;
    line-height: 26px;
    font-weight: 400;
    color: #545050;
    margin: 0;
    font-family: "Poppins", sans-serif;
}

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

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

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

.main-menu .navigation>li {
    position: relative;
    padding: 0 15px;
}

/* ===============================
   MAIN SUB-MENU ANIMATION
================================ */
.main-menu .navigation>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 100%;
    width: 300px;
    z-index: 100;
    background-color: #ffffff;
    padding: 0;
    border-radius: 0 0 20px 20px;
    overflow: hidden;

    transform: translateY(25px) scale(0.98);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

    transition:
        opacity 0.45s ease,
        transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        visibility 0.45s;
}

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

/* ===============================
   MENU ITEM STYLING
================================ */
.main-menu .navigation>li>ul>li {
    list-style: none;
    position: relative;
}

/* 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 {
    display: block;
    padding: 11px 15px;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    background-color: #1769a8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        background-color 0.3s ease,
        padding-left 0.3s ease;
}

/* HOVER EFFECT */
.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 {
    background-color: #0d5589;
    padding-left: 22px;
}

/* ===============================
   SECOND LEVEL SUB MENU
================================ */
.main-menu .navigation>li>ul>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 15%;
    width: 270px;
    background-color: #ffffff;

    transform: translateX(20px) scale(0.97);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);

    transition:
        opacity 0.45s ease,
        transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        visibility 0.45s;
}

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

/* ===============================
   THIRD LEVEL SUB MENU
================================ */
.main-menu .navigation>li>ul>li>ul>li>ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left: 100%;
    top: 15%;
    width: 270px;
    background-color: #ffffff;

    transform: translateX(20px) scale(0.97);

    transition:
        opacity 0.45s ease,
        transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        visibility 0.45s;
}

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

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

.main-header-two__bottom {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    /* background-color: transparent; */
}

.main-header-two__bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
    pointer-events: none;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
}

.is-sticky::after {
    display: none !important;
}

.main-header-two__bottom {
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dropdown2a:hover ul {
    display: block;
}

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

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

    to {
        transform: translateY(0);
    }
}

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

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

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

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

.dropdown_t:hover ul {
    display: block;
}

/*** 

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

***/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-style {
    /* background-color: #ffffff; */
    position: relative;
}

.header-style::after {
    content: "";
    width: 450px;
    height: 102%;
    background-color: #eaeced;
    position: absolute;
    top: -1px;
    left: 0;
}

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

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

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

.header-style .menu-outer {
    position: relative;
    width: 90%;
    margin: 0 auto;
    padding: 0px 0px;
}

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

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

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

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

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

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

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

}

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

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

    }

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

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

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

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

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

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

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

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

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

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

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

    .header-span {
        height: 70px;
    }

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

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

    .dropdown a i {
        display: none;
    }

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

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

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

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

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

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

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

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

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

}

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

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

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

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

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

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

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

    .header-span {
        height: 70px;
    }

}

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

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

}

@media (max-width:1440px) {
    #header-main {
        padding: 0px 90px;
    }

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

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

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

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

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

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

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

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

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

    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) {
    .header-style::after {
        display: none !important;
    }

    .our-product-section .container .row {
        justify-content: center;
    }

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

    .ep-portfolio-list-section .portfolio-main .portfolio-item .icon {
        width: 40px;
        height: 40px;
        background-color: var(--bs-primary-color);
        border-radius: 50%;
        top: -8px !important;
        right: 10px;
    }

    .ep-portfolio-list-section .portfolio-main .portfolio-item .overlay .text-wrapper .text-object {
        padding: 0 !important;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        /* width: 100%; */
        /* border-radius: 24px; */
        /* background: #fff; */
    }

    .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: transparent !important;
    }

    .header-top {
        display: none;
    }

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

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

    /* Background */
    .hero-main-slider .swiper-inner {
        position: relative;
        width: 100%;
        height: 64vh !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
    }

    .hero-main-slider .sw-caption {
        padding-top: 0px !important;
    }

    .hero-main-slider .subtitle {
        font-size: 13px !important;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .hero-main-slider .btn-main {
        display: none !important;
    }
}

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

.header-top {
    position: relative;
    overflow: hidden;
    /* padding: 5px 0px; */
    background: #eaeced;
    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: #eaeced; */
    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 #cdd2df;
    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: #716e6e;
    font-size: 15px;
    font-weight: 500;
}

.header-top .top-right .top-info li:nth-child(2) a {
    color: #716e6e;
    font-size: 15px;
    font-weight: 500;
}

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

.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: #1569a4;
    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: #ffffff;
}

.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: 400;
    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 20px; */
    width: 100%;
    width: 100%;
    /* background-color: #f7f7f745; */
    /* background-image: url(../images/why-chouse-us.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.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;
    margin-bottom: 20px;
}

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

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

.item_box .con .tt {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    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: 51px;
    width: 42px;
    min-width: 42px;
    display: block;
    text-align: center;
    align-content: center;
    color: #ffffff;
    background-color: #135d93;
}

.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: #1769a3;
    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: #156aa4;
}

.title_2:before {
    content: '';
    background: #1769a3;
    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: #0f3859;
    background-size: cover;
    background-position: center;
    padding: 30px 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;
    font-size: 16px;
    width: 90%;
}

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: #244763;
    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;
    /* height: 100%; */
}

.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: 50px 0px 80px;
    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(21 105 164 / 82%);
    z-index: -1;
}

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

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

.thm-breadcrumb {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #eaeced;
    padding: 0px 18px 1px 12px;
    /* border-radius: 0px 12px 12px 0px; */
    width: 100%;
}

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

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


.thm-breadcrumb li i::before {
    font-size: 9px;
    color: #1769a2;
}



/* ...............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: #1769a5;
    border: none;
    padding: 12px 0px;
    /* display: contents; */
}

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

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


.contact-details {
    background: #f8f9fa;
    border-left: 4px solid #146ba1;
    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: #1769a3;
    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: #1569a6 !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;
}

/* Hide default Bootstrap icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
}

/* Common Arrow Style */
.carousel-control-prev,
.carousel-control-next {
    width: 42px;
    height: 80px;
    background: rgba(0, 0, 0, 0.4);
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: 0.3s ease;
}

/* Left Position */
.carousel-control-prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

/* Right Position */
.carousel-control-next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

/* Arrow Icons */
.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
    content: '';
    width: 12px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    display: inline-block;
}

/* Left Arrow */
.carousel-control-prev-icon::after {
    transform: rotate(135deg);
}

/* Right Arrow */
.carousel-control-next-icon::after {
    transform: rotate(-45deg);
}

/* Hover Effect */
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: #3087c8;
}

/* .............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: 263px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

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

.call-button {
    background-color: #28a745;
}

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

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

/* New orange color for brochure */

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

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

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

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



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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 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: #1569a4;
    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: #1769a2;
    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: #1769a2;
    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: #1769a2;
    margin-right: 6px;
}

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

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

/* Animated Button (NO gradient) */


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

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

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


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

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

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

.contact-widget i {
    color: #1769a2;
    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: 16px;
    border: 1px solid #dddddd96;
    transition: all 0.3s ease;
    box-shadow: 2px 8px 9px 0px #f2efef;
}

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

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

/* Enquiry Button */
.enquiry-btn {
    background: #1569a4;
    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: #1769a2;
    transform: translateY(-2px);
    color: #fff;
}

/* ================= 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;
    background: #fff;
}

.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: 27px;
    font-weight: 800;
    color: #1769a2;
    line-height: 1.4;
    animation: fadeInUp 1s ease forwards;
}

.subheading {
    font-size: 20px;
    font-weight: 500;
    color: #1769a2;
    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-content p a {
    color: #15519f;
}

.blog-details-content p strong {
    font-weight: 600;
}

.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: #1769a2;
}

.btn-blog-quote {
    display: inline-block;
    background: #1769a2;
    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: 19px;
    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: 500;
    padding: 12px 33px;
    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: 75px;
    height: 75px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.inquiry-btn .ripple-btn svg {
    width: 29px;
    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; */
}

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

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


.contact-box p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    /* align-items: center; */
    color: #084f81;
    font-weight: 500;
    justify-content: flex-start;
    text-align: left;
    line-height: 22px;
}

.contact-box i {
    font-size: 11px;
    margin-right: 10px;
    color: #fbfbfb;
    padding: 6px;
    background: #1769a3;
    margin-bottom: 0;
    border-radius: 12px;
    /* width: 28px; */
    /* height: 26px; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
}

/* Optional hover effect */
.contact-box p:hover i {
    transform: scale(1.2);
    transition: .3s ease;
}

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







/* ................banner-slider........... */

/* ===============================
   HERO MAIN SLIDER (SCOPED)
================================ */

.hero-main-slider {
    position: relative;
}

/* Vertical center */
.hero-main-slider .v-center {
    /* height: 100vh; */
    display: flex;
    align-items: center;
}

/* Swiper full screen */
.hero-main-slider .swiper {
    width: 100%;
    /* height: 100vh; */
}

.hero-main-slider .swiper-slide {
    position: relative;
}

/* Background */
.hero-main-slider .swiper-inner {
    position: relative;
    width: 100%;
    height: 84vh;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

/* Overlay */
/* .hero-main-slider .sw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgb(0 0 0 / 52%), rgba(0, 0, 0, .4));
    z-index: 1;
} */

/* Caption */
.hero-main-slider .sw-caption {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 10px;
}

/* Text wrapper */
.hero-main-slider .sw-text-wrapper {
    overflow: hidden;
}

/* Subtitle */
.hero-main-slider .subtitle {
    font-size: 16px;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    margin-bottom: 8px;
}

.subtitle {
    font-weight: 500;
    font-size: 18px;
    /* color: #ffffff; */
}

/* BIG BANNER TITLE */
.hero-main-slider h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
}

/* Paragraph */
.hero-main-slider p {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

/* ===============================
   ANIMATIONS (FULLY CONTROLLED)
================================ */

.hero-main-slider .anim-order-1,
.hero-main-slider .anim-order-2,
.hero-main-slider .anim-order-3,
.hero-main-slider .anim-order-4 {
    opacity: 0;
    transform: translateY(60px);
}

/* Active slide animation */
.hero-main-slider .swiper-slide-active .anim-order-1 {
    animation: heroFadeUp 1.2s ease forwards;
}

.hero-main-slider .swiper-slide-active .anim-order-2 {
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: .2s;
}

.hero-main-slider .swiper-slide-active .anim-order-3 {
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: .4s;
}

.hero-main-slider .swiper-slide-active .anim-order-4 {
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: .6s;
}

/* Keyframes */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

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

/* ===============================
   BUTTON
================================ */

.hero-main-slider .btn-main {
    display: inline-block;
    padding: 9px 24px;
    border-radius: 60px;
    background: #1868a5;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    transition: all .35s ease;
    margin-top: 30px;
    font-size: 14px;
}

.hero-main-slider .btn-main:hover {
    background: #ef0e0e;
    transform: translateY(-4px);
}

/* ===============================
   NAVIGATION
================================ */

.hero-main-slider .swiper-button-prev,
.hero-main-slider .swiper-button-next {
    color: #fff;
}

.hero-main-slider .swiper-button-prev::after,
.hero-main-slider .swiper-button-next::after {
    font-size: 22px;
}

/* ===============================
   BOTTOM FEATURES
================================ */

.hero-main-slider .abs {
    position: absolute;
    left: 0;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
    .hero-main-slider h1 {
        font-size: 72px;
    }
}

@media (max-width: 991px) {
    .hero-main-slider h1 {
        font-size: 56px;
    }

    .hero-main-slider .sw-caption {
        padding-top: 80px;
        text-align: center;
    }

    .about-text {
        text-align: justify;
    }
}

@media (max-width: 575px) {
    .hero-main-slider h1 {
        font-size: 30px;
    }

    .hero-main-slider .sm-hide {
        display: none;
    }
}

/* ===============================
   HERO SLIDER NAVIGATION DESIGN
================================ */

.hero-main-slider .swiper-button-prev,
.hero-main-slider .swiper-button-next {
    width: 35px;
    height: 35px;
    background: rgb(23 105 162);
    backdrop-filter: blur(8px);
    border-radius: 12%;
    color: #fff;
    top: 50%;
    transform: translateY(-50%);
    transition: all .35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

/* Position */
.hero-main-slider .swiper-button-prev {
    left: 40px;
}

.hero-main-slider .swiper-button-next {
    right: 40px;
}

/* Arrow icon */
.hero-main-slider .swiper-button-prev::after,
.hero-main-slider .swiper-button-next::after {
    font-size: 15px;
    font-weight: bold;
}

/* Hover effect */
.hero-main-slider .swiper-button-prev:hover,
.hero-main-slider .swiper-button-next:hover {
    background: #1669a5;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

/* ===============================
   SUBTLE PULSE ANIMATION
================================ */

.hero-main-slider .swiper-button-prev,
.hero-main-slider .swiper-button-next {
    /* animation: heroNavPulse 2.5s infinite; */
}

@keyframes heroNavPulse {
    0% {
        box-shadow: 0 0 0 0 rgb(22 105 165 / 45%);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 183, 3, 0);
    }

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

/* ===============================
   MOBILE ADJUSTMENT
================================ */

@media (max-width: 767px) {

    .hero-main-slider .swiper-button-prev,
    .hero-main-slider .swiper-button-next {
        width: 26px;
        height: 26px;
    }

    .hero-main-slider .swiper-button-prev {
        left: 15px;
    }

    .hero-main-slider .swiper-button-next {
        right: 15px;
    }
}


.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: 41px;
}

@media (max-width: 1199.98px) {
    .ep-about-section .about-img {
        padding-right: 0px;
    }
}

.ep-about-section .about-img .shape {
    right: 22px;
    bottom: 24px;
    width: 190px;
    height: 163px;
    background: #1769a3;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    z-index: 10;
}

@media (max-width: 1199.98px) {
    .ep-about-section .about-img .shape {
        right: 0;
    }
}

@media (max-width: 575.98px) {
    .ep-about-section .about-img .shape {
        bottom: -21px;
    }
}

.ep-about-section .about-img .shape .experiance {
    /* top: 18px; */
    /* left: 36px; */
    font-size: 16px;
    text-align: center;
    font-weight: 600;
}

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

.heading-two {
    font-size: 39px;
    line-height: 48px;
    font-weight: 800;
    color: #0a5f9b;
}



/* ===== Heading popping animation ===== */
.heading-two {
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: popIn 1s ease forwards;
    font-family: 'Poppins', sans-serif;
}

@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: 14px;
    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::after {
    content: "";
    background-color: #074e85;
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 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::before,
.theme-btn:hover::after {
    width: 100%;
}

.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: 4 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: 700;
    color: #055085;
    margin-bottom: 0px;
    font-size: 24px;
    text-align: center;
    display: inline-block;
    position: relative;
    text-transform: uppercase;
}

.text-object h5::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -44px;
    width: 38px;
    height: 1px;
    background-color: #bcbcbc;
}

.text-object h5::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -45px;
    width: 37px;
    height: 1px;
    background-color: #bababa;
}

.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: 10px;
}

.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: #1769a3;
    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;
}

.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: #1769a3;
    border-radius: 5px;
}

.why-choose-info {
    /* padding-right: 11%; */
}

.why-choose-info ul li h5 {
    font-size: 22px;
    margin: 0 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;
}

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

/* Overlay and Text */
.industry-item::after {
    content: '';
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgb(0 0 0 / 81%) 10%, transparent 100%); */
    z-index: 1;
}

.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: 28px;
        line-height: 39px;
        font-weight: 700;
        color: #0a5f9b;
        margin-bottom: 0px !important;
    }

    .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: 16px;
    font-weight: 600;
    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;
}

.counter {
    font-size: 50px;
    font-weight: 700;
}

.our-product-section {
    padding: 38px 0px 116px;
    background: #f5f5f582;
    background-image: url(../images/bg-flanges.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.our-product-section::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    /* background-color: #000000; */
    top: 0;
    left: 0;
    z-index: -1;
}

.text-wrapper {
    width: 100%;
    padding: 13px 12px 10px;
    text-align: center;
    background: #f9f8f6;
    min-height: 172px;
}

.text-object p {
    text-align: center;
    font-size: 15px;
}

.cta-bg-section {
    position: relative;
    margin-top: -70px;
    z-index: 10;
    margin-bottom: 93px;
}

.cta-bg-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    top: -50%;
    background-image: url(../images/our-products.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.cta-bg-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 84px;
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 1399px) {
    .cta-bg-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        padding: 50px;
    }
}

@media (max-width: 767px) {
    .cta-bg-wrapper {
        padding: 40px 30px;
        justify-content: center;
        text-align: center;
    }
}

.cta-bg-wrapper::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgb(0 0 0 / 64%);
    /* backdrop-filter: blur(2px); */
}

.cta-bg-wrapper .content {
    z-index: 1;
}

.cta-bg-wrapper .content h2 {
    color: #fff;
    font-size: 56px;
    margin-bottom: 0px;
    font-weight: 700;
    line-height: 59px;
}

.cta-bg-wrapper .content p {
    color: #fff;
}

.cta-bg-wrapper h4 {
    color: #fff;
    z-index: 1;
    font-size: 29px;
    line-height: 40px;
    font-weight: 700;
    /* text-align: center; */
}

.cta-bg-wrapper-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

@media (max-width: 1399px) {
    .cta-bg-wrapper-2 {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .cta-bg-wrapper-2 {
        justify-content: center;
        text-align: center;
    }
}

.cta-bg-wrapper-2 .cta-item {
    display: flex;
    align-items: center;
    gap: 60px;
}

@media (max-width: 767px) {
    .cta-bg-wrapper-2 .cta-item {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .cta-bg-wrapper-2 .cta-item {
        justify-content: center;
        text-align: center;
    }
}

.cta-bg-wrapper-2 .cta-item .cta-image {
    border: 4px solid #fff;
}

.cta-bg-wrapper-2 .cta-item .cta-image img {
    width: 100%;
    height: 100%;
}

.cta-bg-wrapper-2 .cta-item .content h4 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-bg-wrapper-2 .cta-item .content p {
    color: #fff;
}

.cta-bg-section-2 {
    position: relative;
}

.cta-bg-section-2::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(30, 32, 35, 0.95);
}

@media (max-width: 1399px) {
    .cta-bg-wrapper-3 {
        padding: 120px 0;
    }
}

@media (max-width: 1199px) {
    .cta-bg-wrapper-3 {
        padding: 100px 0;
    }
}

@media (max-width: 991px) {
    .cta-bg-wrapper-3 {
        padding: 80px 0;
    }
}

.cta-bg-wrapper-3 .cta-image {
    margin-left: -310px;
}

@media (max-width: 1399px) {
    .cta-bg-wrapper-3 .cta-image {
        display: none;
    }
}

.cta-bg-wrapper-3 .cta-image img {
    width: 100%;
    height: 100%;
}

.cta-bg-wrapper-3 .cta-content {
    margin-left: 50px;
    max-width: 640px;
}

@media (max-width: 1399px) {
    .cta-bg-wrapper-3 .cta-content {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .cta-bg-wrapper-3 .cta-content .section-title {
        text-align: left;
    }
}

.cta-bg-wrapper-3 .cta-content h4 {
    margin-bottom: 15px;
}

.cta-bg-wrapper-3 .cta-content .list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}

@media (max-width: 1199px) {
    .cta-bg-wrapper-3 .cta-content .list-item {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .cta-bg-wrapper-3 .cta-content .list-item {
        margin-top: 30px;
        display: grid;
    }
}

.cta-bg-wrapper-3 .cta-content .list-item ul li {
    font-weight: 500;
}

.cta-bg-wrapper-3 .cta-content .list-item ul li:not(:last-child) {
    margin-bottom: 10px;
}

.cta-bg-wrapper-3 .cta-content .list-item ul li i {
    color: var(--primary-color);
    margin-right: 5px;
}

.cta-bg-wrapper-3 .cta-content .list-item .icon-item {
    display: flex;
    align-items: center;
    gap: 22px;
}

@media (max-width: 767px) {
    .cta-bg-wrapper-3 .cta-content .list-item .icon-item {
        display: grid;
    }
}

.cta-bg-wrapper-3 .cta-content .list-item .icon-item h6 {
    line-height: 175%;
}

.cta-bg-wrapper-3 .cta-right .caller-button {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.cta-bg-wrapper-3 .cta-right .caller-button .icon {
    width: 55px;
    height: 55px;
    line-height: 67px;
    border-radius: 100px;
    text-align: center;
    background-color: var(--primary-color);
    font-size: 30px;
    color: #fff;
}

.cta-bg-wrapper-3 .cta-right .caller-button .content span {
    font-size: 14px;
    font-weight: 500;
}

.cta-bg-wrapper-3 .cta-right .caller-button .content h5 {
    font-size: 18px;
    font-weight: 600;
}

.quality {
    padding-bottom: 60px;
}

.quality-image {
    position: relative;
}

.quality-image img {
    margin-left: 2rem;
    margin-top: 2rem;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    aspect-ratio: 1;
    object-fit: cover;
}

.quality-image:before {
    content: "";
    background-color: #146aa31a;
    /* opacity: .2; */
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 82%;
    height: 82%;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    z-index: -1
}

.quality-image {
    position: relative;
    clip-path: polygon(100% 0, 100% 73%, 78% 100%, 0 100%, 0 0);
    overflow: hidden;
}

.cert-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #0a5f9b;
    /* red button */
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cert-btn i {
    font-size: 18px;
}

.cert-btn:hover {
    background-color: #c92d3a;
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width:767px) {
    .hm-projects-panel {
        background: url(../images/hm-manf-plant-parllax-img.jpg) no-repeat center;
        background-attachment: fixed;
    }
}

ul.category-list-hm a {
    display: block;
    position: relative;
    min-height: 56px;
    /* border: #ffffff 1px solid; */
    color: rgb(255 255 255);
    background: #014677;
    backdrop-filter: blur(12px);
    border-radius: 4px;
}

ul.category-list-hm a:hover {
    border-color: rgb(255 255 255);
}

ul.category-list-hm a:before {
    content: '';
    background: url(../images/logo-icn.png) no-repeat center center;
    height: 100%;
    width: 30px;
    position: absolute;
    left: -16px;
    top: 0;
}

.hm-projects-panel {
    background: #fbfbfbf2;
    padding: 20px 0px 50px;
}

.heading h2,
.heading h1 {
    font-size: 31px;
    font-weight: 600;
    color: #005584;
    /* margin: 0; */
    margin-bottom: 22px;
}

.user-icon {
    width: 53px;
}

.client-logo {
    height: 81px !important;
    object-fit: contain;
    padding: 0px;
}

.client-section {
    background-image: url(../images/client.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.testimonials-bx {
    border-radius: 20px;
    overflow: hidden;
}

@media (max-width: 991px) {


    .ep-testimonial-section-two {
        padding: 40px 0px;
    }
}

.map_area {
    padding: 70px 0;
    position: relative;
    background: #164970;
}

.justify-content-center {
    justify-content: center !important;
}

.eachBoxTop ul li:not(:last-child),
.headingWrap,
.investorSec .headingWrap {
    margin-bottom: 15px;
}

.text-center {
    text-align: center !important;
}

.bannerSiderItem,
.bannerSliderItem,
.bannerWrap,
.homeMain,
.mapWrap,
.menu-child,
.newsletterForm .frmWrap,
.sp_img,
.videoSec {
    position: relative;
}

.bannerBottomImg img,
.export-logos img,
.footerLogo img,
.mapWrap img,
.mileStoneImg img,
.our-project-slider,
.productSec .swiper-slide .productBox .productImg img,
.videoBottomLayer img {
    width: 100%;
}

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

    .book-app,
    .footer-box {
        width: 100%;
        text-align: center
    }

    .footer-box {
        display: flex !important;
        position: fixed;
        left: 0;
        bottom: 0;
        background-color: #0f4da2;
        color: #fff;
        z-index: 999999;
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .book-app {
        padding: 2%;
        float: left;
        line-height: 40px;
        max-height: 100px
    }

}

.vibrate-3 {
    -webkit-animation: 1s linear infinite both vibrate-3;
    animation: 1s linear infinite both vibrate-3
}

@-webkit-keyframes vibrate-3 {

    0%,
    100% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }

    10%,
    50%,
    80% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px)
    }

    20%,
    60%,
    90% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px)
    }

    30%,
    70% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px)
    }

    40% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px)
    }
}

@keyframes vibrate-3 {

    0%,
    100% {
        -webkit-transform: translate(0);
        transform: translate(0)
    }

    10%,
    50%,
    80% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px)
    }

    20%,
    60%,
    90% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px)
    }

    30%,
    70% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px)
    }

    40% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px)
    }
}

.blob:before,
.bod-single .text-box span.plus-btn {
    display: flex;
    left: 50%;
    transform: translateX(-50%)
}

.map_area {
    padding: 50px 0 60px;
    position: relative;
    background: #0d578b;
}

.blob_1 {
    top: 32.8%;
    left: 68.3%;
    position: absolute
}

.titile,
.titile-span {
    left: 0;
    position: absolute
}

.blob img {
    position: relative;
    animation: ease-in-out infinite bounce
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.blob:before {
    width: 10px;
    height: 10px;
    content: "";
    top: 83%;
    border-radius: 50%;
    position: absolute;
    border: 3px solid #f16724;
    -webkit-animation-name: pulse;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: pulse;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: infinite;
    animation-name: pulse;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    justify-content: center
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 6px rgba(52, 65, 163, .8)
    }

    100% {
        box-shadow: 0 0 0 20px rgba(254, 255, 6, 0)
    }
}

.titile-span {
    background-color: #0d578b;
    padding: 5px;
    color: #fdfdfd;
    top: -10px;
    display: none;
    font-size: 11px;
    transition: .3s;
    z-index: 100;
    padding: 5px 10px;
    border-radius: 5px;
}

.blob:hover .titile-span {
    display: block;
    transition: .3s
}

.blob,
.blob img {
    width: 34px
}

.titile {
    top: 0;
    opacity: 0
}

.blob_1 img {
    -webkit-animation-duration: 1.4s;
    -moz-animation-duration: 1.4s;
    animation-duration: 1.4s
}

.blob_1:before {
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    animation-duration: 1.5s
}

.blob_2 {
    top: 10%;
    left: 44%;
    position: absolute
}

.blob_2 img,
.blob_2:before {
    -webkit-animation-duration: 1.6s;
    -moz-animation-duration: 1.6s;
    animation-duration: 1.6s
}

.blob_3 {
    top: 32%;
    left: 73.5%;
    position: absolute
}

.blob_3 img,
.blob_3:before {
    -webkit-animation-duration: 2.5s;
    -moz-animation-duration: 2.5s;
    animation-duration: 2.5s
}

.blob_4 {
    top: 38%;
    left: 59%;
    position: absolute
}

.blob_4 img,
.blob_4:before {
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    animation-duration: 3s
}

.blob_5 {
    top: 35%;
    left: 61.5%;
    position: absolute
}

.blob_27 img,
.blob_27:before,
.blob_5 img,
.blob_5:before {
    -webkit-animation-duration: 2.1s;
    -moz-animation-duration: 2.1s;
    animation-duration: 2.1s
}

.blob_27 {
    top: 41%;
    left: 16.5%;
    position: absolute
}

.blob_6 {
    top: 60%;
    left: 52.5%;
    position: absolute
}

.blob_6 img,
.blob_6:before {
    -webkit-animation-duration: 3.6s;
    -moz-animation-duration: 3.6s;
    animation-duration: 3.6s
}

.blob_7 {
    top: 43%;
    left: 44.5%;
    position: absolute
}

.blob_7 img,
.blob_7:before {
    -webkit-animation-duration: 1.1s;
    -moz-animation-duration: 1.1s;
    animation-duration: 1.1s
}

.blob_8 {
    top: 42%;
    left: 46.5%;
    position: absolute
}

.blob_10 img,
.blob_10:before,
.blob_11 img,
.blob_11:before,
.blob_12 img,
.blob_12:before,
.blob_13 img,
.blob_13:before,
.blob_14 img,
.blob_14:before,
.blob_15 img,
.blob_15:before,
.blob_16 img,
.blob_16:before,
.blob_17 img,
.blob_17:before,
.blob_18 img,
.blob_18:before,
.blob_25 img,
.blob_25:before,
.blob_28 img,
.blob_28:before,
.blob_29 img,
.blob_29:before,
.blob_8 img,
.blob_8:before,
.blob_9 img,
.blob_9:before {
    -webkit-animation-duration: 2.6s;
    -moz-animation-duration: 2.6s;
    animation-duration: 2.6s
}

.blob_9 {
    top: 49%;
    left: 78%;
    position: absolute
}

.blob_10 {
    top: 44%;
    left: 70.3%;
    position: absolute
}

.blob_11 {
    top: 21%;
    left: 11.5%;
    position: absolute
}

.blob_25 {
    top: 26%;
    left: 61.5%;
    position: absolute
}

.blob_28 {
    top: 66%;
    left: 21.5%;
    position: absolute
}

.blob_29 {
    top: 53%;
    left: 51.5%;
    position: absolute
}

.blob_12 {
    top: 10%;
    left: 46.2%;
    position: absolute;
    z-index: 100
}

.blob_13,
.blob_14 {
    z-index: 10;
    position: absolute
}

.blob_13 {
    top: 55%;
    left: 56%
}

.blob_14 {
    top: 40%;
    left: 53.5%
}

.blob_15 {
    top: 48%;
    left: 54.5%;
    position: absolute
}

.blob_16 {
    top: 49%;
    left: 56.5%;
    position: absolute
}

.blob_17 {
    top: 42.9%;
    left: 57.5%;
    position: absolute
}

.blob_18 {
    top: 28%;
    left: 70.5%;
    position: absolute
}

.bod .row {
    flex-wrap: wrap
}

.bod .bod-single {
    position: relative;
    padding-bottom: 31px;
    cursor: pointer;
    border-radius: 20px
}

.bod .bod-single img {
    width: 100%;
    object-fit: cover;
    border-radius: 17px;
    aspect-ratio: 1/1
}

.bod .bod-single p {
    font-weight: 300;
    font-size: 14px;
    margin-bottom: 0;
    color: #161616
}

.bod .bod-single h3 {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0
}

.awards .text-box p,
.investor-address.investor-bg p b,
.promoters-single p span,
.vision .text-box p {
    font-weight: 700
}

.bod-single .text-box {
    background-color: #fff;
    color: #070707;
    padding: 20px 6px;
    text-align: center;
    border-radius: 15px;
    position: relative;
    bottom: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.bod-single .text-box span.plus-btn {
    background-color: transparent;
    align-items: center;
    justify-content: center;
    color: #000;
    border-radius: 50%;
    font-size: 20px;
    position: absolute;
    top: -13px;
    transition: .3s;
    width: 80px
}

.about img,
.awards .item.slick-slide img,
.driven .img-box img,
.media-slider .item img,
.vision img {
    transition: .6s
}

.bod-single .view-text,
.core.current figcaption .view-text {
    display: none;
    font-size: 14px
}

.bod-single:hover .view-text,
.core.current figcaption:hover .view-text {
    display: block;
    width: auto
}

.bod-single .plus,
.core.current figcaption .plus {
    background-color: #ebc533;
    align-items: center;
    justify-content: center
}

.bod-single:hover .plus {
    background-color: #fff;
    align-items: center;
    justify-content: center
}

.bod-single:hover span.plus-btn {
    width: 134px;
    height: 38px;
    border-radius: 23px;
    top: -26px;
    background-color: #ebc533
}

.bod {
    background-color: #205781;
    padding-top: 70px
}

.bod-single .img-box {
    overflow: hidden;
    border-radius: 10px
}

.team .bod-single .img-box {
    max-height: 223px
}

.blog-p {
    text-align: justify;
}

.white a {
    color: #f36723;
    font-style: italic;
    font-weight: 400;
}

.thankyou-wrapper a:hover {
    font: 26px;
    text-align: center;
    color: #ffffff;
    display: block;
    text-decoration: none;
    width: 250px;
    background: #0172be;
    margin: 10px auto 0px;
    padding: 15px 20px 15px;
}

.thankyou-wrapper a {
    font: 26px;
    text-align: center;
    color: #ffffff;
    display: block;
    text-decoration: none;
    width: 250px;
    background: #cc640b;
    margin: 10px auto 0px;
    padding: 15px 20px 15px;
}

.thankyou-wrapper {
    text-align: center;
}

@media (min-width: 1200px) and (max-width: 1450px) {
    .swiper-pagination3 {
        position: absolute;
        bottom: 53px !important;
        display: flex;
        align-items: center;
        top: auto !important;
        z-index: 2 !important;
        left: 124px !important;
        right: 0;
        width: 100% !important;
        max-width: 1300px !important;
        margin: 0 auto !important;
    }
}

.only-blog-page .media-single-wrapper .text-box p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.map-responsive img {
    width: 100%;
}

/* Image */
.product-image-wrap {
    /* margin-bottom: 10px; */
    border-radius: 14px;
    overflow: hidden;
    /* box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15); */
    float: left;
    margin-right: 25px;
}

.product-image-wrap img {
    width: 100%;
    height: 380px;
    display: block;
    /* margin-right: 20px; */
}

/* Content Wrapper */
.product-content-wrap {
    /* background: #ffffff; */
    /* padding: 35px; */
    /* border-radius: 14px; */
    /* box-shadow: 0 18px 40px rgba(23, 105, 162, 0.12); */
}

/* Title */
.product-main-title {
    font-size: 30px;
    font-weight: 800;
    color: #1769a2;
    margin-bottom: 8px;
    /* margin-top: 21px; */
}

/* Text */
.product-description p {
    font-size: 16.5px;
    line-height: 1.75;
    color: #333;
    margin-bottom: 10px;
    text-align: justify;
}

/* Headings */
.product-description h2 {
    font-size: 25px;
    font-weight: 700;
    color: #1769a2;
    /* margin: 28px 0 12px; */
    /* border-left: 4px solid #1769a2; */
    /* padding-left: 12px; */
    margin-top: 33px;
}

/* Lists */
.application-list,
.choose-list {
    margin: 15px 0 25px;
    padding-left: 20px;
}

.application-list li,
.choose-list li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
    position: relative;
}

.application-list li::marker,
.choose-list li::marker {
    color: #1769a2;
}

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

.feature-list li {
    position: relative;
    padding: 6px 0px 3px 21px;
    margin-bottom: 0px;
    font-size: 15px;
    color: #333;
    /* background: #f8f9fa; */
    border-radius: 6px;
    /* padding-left: 15px; */
    transition: all 0.3s ease;
}

/* After icon */
.feature-list li::after {
    content: "\f058";
    /* Font Awesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 17px;
    transform: translateY(-50%);
    color: #1769a3;
    font-size: 13px;
}







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

.design-list li {
    position: relative;
    padding: 6px 0px 3px 21px;
    margin-bottom: 0px;
    font-size: 15px;
    color: #333;
    /* background: #f8f9fa; */
    border-radius: 6px;
    /* padding-left: 15px; */
    transition: all 0.3s ease;
}

/* After icon */
.design-list li::after {
    content: "\f058";
    /* Font Awesome check-circle */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 17px;
    transform: translateY(-50%);
    color: #1769a3;
    font-size: 13px;
}








/* Sidebar friendly spacing */
.product-sidebar .feature-list li {
    font-size: 14px;
    margin-bottom: 8px;
}

.product-description p strong {
    font-weight: 600;
}

.product-description h3 {
    font-size: 16px;
    font-weight: 600;
    color: #135e92;
    margin: 6px 0px 5px;
}

.feature-list li strong {
    font-weight: 600;

}

.dist-sidebar {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 25px;
    border: 1px solid #e0e6ed;
}

.dist-main-title {
    background: #f1f1f1;
    /* Navy Blue */
    color: #156aa2;
    padding: 9px 20px;
    font-size: 19px;
    font-weight: 700;
    margin: 0;
    text-align: left;
    letter-spacing: 1px;
}

.dist-item {
    border-bottom: 1px solid #f0f4f8;
}

.dist-item:last-child {
    border-bottom: none;
}

.dist-btn {
    width: 100%;
    padding: 12px 20px;
    background: #f8fafc;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    transition: all 0.3s ease;
    text-align: left;
}

.dist-btn i {
    color: #ffffff;
    font-size: 15px;
    transition: transform 0.3s ease;
    padding: 9px 10px;
    background: #1769a2;
    border-radius: 50%;
}

.dist-btn:hover {
    background: #eff6ff;
    color: #1e3a8a;
}

.dist-item.active .dist-btn {
    background: #1769a2;
    color: #ffffff;
}

.dist-item.active .dist-btn i {
    color: #ffffff;
    transform: rotate(180deg);
}

.dist-content {
    display: none;
    padding: 20px;
    background: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
}

.dist-content p {
    margin: 0;
    text-align: justify;
}

.dist-sub-item {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #cbd5e1;
}

.dist-sub-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.dist-sub-item strong {
    color: #1769a2;
    display: block;
    margin-bottom: 5px;
    font-size: 17px;
    text-transform: uppercase;
}

.app-section {
    margin: 0 auto;
}

.app-header {
    color: #1a365d;
    margin-bottom: 30px;
    font-size: 28px;
}

/* Flex Container */
.app-flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 21px;
}

/* Individual Card Design */
.app-card {
    display: flex;
    align-items: center;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.app-card:hover {
    transform: scale(1.02);
    background: #f0f7ff;
}

.app-icon {
    font-size: 33px;
    color: #1769a2;
    margin-right: 15px;
    width: 40px;
    text-align: center;
}

.app-text {
    font-size: 16px;
    color: #334155;
    font-weight: 500;
    line-height: 1.4;
}

/* Mobile Responsive (Media Query) */
@media (max-width: 992px) {
    .app-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .app-card {
        flex: 1 1 100%;
        padding: 15px;
    }

    .app-header {
        font-size: 22px;
    }
}

/* Forged Material Table Ã¢â‚¬â€œ Fittinco India Pvt. Ltd. */

.forged-material-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    margin: 25px 0;
    font-size: 15px;
    color: #333;
}

/* Table Header */
.forged-material-table thead th {
    background-color: #135b8d;
    /* industrial navy */
    color: #ffffff;
    text-align: left;
    padding: 14px 12px;
    font-weight: 600;
    border: 1px solid #fdfeff;
    vertical-align: middle;
    text-align: center;
    font-size: 18px;
}

/* Table Body Cells */
.forged-material-table tbody td {
    padding: 12px 12px;
    border: 1px solid #ddd;
    vertical-align: top;
    line-height: 1.6;
    text-align: center;
}

/* Alternate Row Background */
.forged-material-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

/* Hover Effect */
.forged-material-table tbody tr:hover {
    background-color: #eef4fb;
    transition: background-color 0.3s ease;
}

/* Material Category Column */
.forged-material-table td:first-child {
    font-weight: 500;
    color: #0f2a44;
    background-color: #f1f5f9;
}

/* Application Column Styling */
.forged-material-table td:last-child {
    color: #444;
    font-size: 14px;
}

/* Strong text inside table */
.forged-material-table strong {
    color: #0f2a44;
    font-size: 17px;
    font-weight: 600;
}

/* Responsive Table */
@media (max-width: 768px) {
    .forged-material-table {
        font-size: 14px;
    }

    .forged-material-table thead {
        display: none;
    }

    .forged-material-table,
    .forged-material-table tbody,
    .forged-material-table tr,
    .forged-material-table td {
        display: block;
        width: 100%;
    }

    .forged-material-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        background-color: #ffffff;
    }

    .forged-material-table td {
        padding: 10px 12px;
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
    }

    .forged-material-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #0f2a44;
        display: block;
        margin-bottom: 4px;
        font-size: 13px;
    }

    .forged-material-table td:last-child {
        border-bottom: none;
    }
}

.forged-table-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f2a44;
    margin: 40px 0 15px;
    position: relative;
}

.forged-table-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: #c62828;
    /* subtle accent */
    display: block;
    margin-top: 6px;
}

/* ===== Anchor Navigation ===== */
.product-anchor-nav {
    background: #f8f9fa;
    padding: 12px 15px;
    margin: 20px 0 30px;
    border-left: 4px solid #c62828;
}

.product-anchor-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-anchor-nav ul li a {
    font-size: 14px;
    font-weight: 600;
    color: #c62828;
    text-decoration: none;
}

.product-anchor-nav ul li a:hover {
    text-decoration: underline;
}

/* ===== Table Title ===== */
.forged-table-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f2a44;
    margin: 40px 0 15px;
    position: relative;
}

.forged-table-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background-color: #c62828;
    display: block;
    margin-top: 6px;
}

/* ===== Forged Material Table ===== */
.forged-material-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.forged-material-table th {
    background: #0f2a44;
    color: #fff;
    padding: 12px;
    text-align: center;
}

.forged-material-table td {
    padding: 10px;
    vertical-align: middle;
}

.forged-material-table tr:nth-child(even) {
    background: #f9f9f9;
}

.forged-material-table tr:hover {
    background: #eef3f7;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .product-anchor-nav ul {
        flex-direction: column;
    }
}

.tech-wrapper {
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    /* display: flex; */
    gap: 23px;
    align-items: flex-start;
    padding: 20px 0px;
    /* background: #f7f7f7; */
}

/* 
.tech-header-side {
    flex: 1;
    position: sticky;
    top: 100px;
} */
/* .fittinco-tech-specs {
    margin-top: 25px;
} */

.tech-header-side .tag {
    color: #1769a3;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    border-left: 3px solid #166aa4;
    padding-left: 10px;
}

.tech-header-side h2 {
    font-size: 28px;
    color: #11598d;
    margin: 15px 0;
    line-height: 1.2;
}

.tech-header-side p {
    color: #64748b;
    font-size: 16px;
    text-align: initial;
}

/* Grid/Row Styling */
.tech-grid-side {
    /* flex: 1.5; */
    display: flex;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}

.tech-row {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* border: 1px solid #e2e8f0; */
    transition: all 0.3s ease;
    width: 48%;
}

.tech-row:hover {
    border-color: #1e40af;
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: #1769a3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.tech-icon i {
    font-size: 24px;
    color: #ffffff;
}

.tech-info h4 {
    margin: 0 0 5px 0;
    font-size: 23px;
    color: #1769a3;
    font-weight: 700;
}

.tech-info p {
    margin: 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.5;
}

/* Responsive Mobile */
@media (max-width: 992px) {
    .tech-wrapper {
        flex-direction: column;
    }

    .tech-header-side {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }

    .tech-row:hover {
        transform: translateY(-5px);
    }

    .tech-row {
        width: 100%;
    }
}

.brochure-download {
    /* margin: 50px auto; */
    /* padding: 30px; */
    /* max-width: 900px; */
    /* text-align: center; */
    /* background: linear-gradient(135deg, #f8fbff, #eef4ff); */
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.brochure-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 26px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #11598d, #11598d);
    border-radius: 50px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 12px 30px rgba(0, 71, 171, 0.25); */
    transition: all 0.4s ease;
}

/* Icon styling */
.download-btn .icon {
    font-size: 22px;
    animation: pulse 2s infinite;
}

.download-btn .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Hover effects */
.download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 71, 171, 0.35);
}

.download-btn:hover .arrow {
    transform: translateY(4px);
}

/* Glow effect */
.download-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.download-btn:hover::after {
    transform: translateX(100%);
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .brochure-text {
        font-size: 15px;
    }

    .download-btn {
        font-size: 15px;
        padding: 12px 22px;
    }
}

.download-btn:hover i {
    color: #dddddd;
}



.tech-grid-side .tech-row .tech-info p {
    text-align: left;
}

/* Main feature list */
.feature-list2-only-double-ul-li {
    list-style: none;
    /* Remove default bullets */
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* Top-level list items */
.feature-list2-only-double-ul-li>li {
    margin-bottom: 20px;
    padding-left: 0;
    position: relative;
}

/* Bold the titles */
.feature-list2-only-double-ul-li>li>strong {
    display: block;
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #166aa3;
    /* Optional: red accent color for headings */
}

/* Nested ULs */
.feature-list2-only-double-ul-li li ul {
    list-style: none;
    /* Remove default bullets */
    padding-left: 20px;
    /* Indent nested list */
    margin: 5px 0 0 0;
}

/* Nested list items with custom bullets */
.feature-list2-only-double-ul-li li ul li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 15px;
}

/* Create custom bullet with before pseudo-element */
.feature-list2-only-double-ul-li li ul li::before {
    content: "Ã¢â‚¬Â¢";
    /* Bullet character */
    position: absolute;
    left: 0;
    color: #1976d2;
    /* Optional: blue bullet */
    font-size: 1.2em;
    line-height: 1;
}

/* Hover effect on nested items (optional) */
.feature-list2-only-double-ul-li li ul li:hover {
    color: #d32f2f;
    transition: 0.3s;
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
    .feature-list2-only-double-ul-li {
        font-size: 14px;
    }

    .feature-list2-only-double-ul-li>li>strong {
        font-size: 1em;
    }
}

.accordion-listing-padding {
    padding: 0px 5px !important;
}

.accordion-listing-padding li::before {
    left: 0px !important;
}


/* Section Styling */
.fittinco-contact-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* Info Card (Left Side) */
.contact-info-card {
    background: #00508d;
    /* Dark Blue from your brand */
    color: #ffffff;
    padding: 40px;
    border-radius: 15px;
}

.section-title {}

.info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    font-size: 20px;
    margin-right: 20px;
    color: #00d2ff;
    /* Highlight color */
}

.info-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 2px;
}

.info-text p,
.info-text a {
    color: rgb(255 255 255 / 80%);
    text-decoration: none;
    margin: 0;
}

/* Form Styling (Right Side) */
.custom-contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #eee;
}

.form-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
}

.custom-input {
    border: 1px solid #e1e1e1;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #004a8c;
    box-shadow: 0 0 10px rgba(0, 74, 140, 0.1);
}


.submit-btn {
    background: #004a8c;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .fittinco-contact-section {
        padding: 40px 0;
    }

    .contact-info-card,
    .custom-contact-form {
        padding: 25px;
    }

    .captcha-wrapper {
        transform: scale(0.85);
        /* Mobile par captcha fix karne ke liye */
    }
}

.info-icon i {
    padding: 15px;
    background: #1769a3;
    color: #fff;
    border-radius: 25px;
}

.info-icon i {
    color: #fff !important;
}

/* Container Background */
.ftc-about-section-v2 {
    background: #ffffff;
    position: relative;
    z-index: 1;
}

/* Image Styling with Overlap */
.about-img-container {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
}

.main-img-box img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 8px solid #fff;
}

.exp-floating-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #004a8c;
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 74, 140, 0.3);
    z-index: 2;
}

.exp-content h3 {
    font-size: 45px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.exp-content h3 span {
    color: #fdfdfd;
    margin-left: 6px;
}

.exp-content p {
    font-size: 14px;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.4;
    color: #fff;
}

/* Content Area */
.top-tag {
    color: #004a8c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.main-heading {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 25px;
}

.main-heading span {
    color: #004a8c;
}

.description-text {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: justify;
}

/* Feature Bullets */
.feature-bullets {
    list-style: none;
    padding: 0;
}

.feature-bullets li {
    display: flex;
    margin-bottom: 20px;
}

.icon-wrap {
    width: 45px;
    height: 45px;
    background: rgba(0, 74, 140, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #004a8c;
    margin-right: 15px;
    flex-shrink: 0;
}

.text-wrap strong {
    display: block;
    font-size: 18px;
    color: #1a1a1a;
}

.text-wrap p {
    margin: 0;
    font-size: 15px;
    color: #777;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-box h4 {
    font-size: 32px;
    font-weight: 800;
    color: #004a8c;
    margin-bottom: 5px;
}

.stat-box span {
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

/* Button */
.theme-btn-primary {
    background: #004a8c;
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.theme-btn-primary:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-5px);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .main-heading {
        font-size: 32px;
    }

    .about-img-container {
        padding-right: 20px;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    .exp-floating-card {
        padding: 20px;
    }
}


.ftc-about-section-v2 {
    padding: 50px 0px;
}

/* Vision Mission Section */
.ftc-vision-mission {
    background-color: #fafafa;
    /* Light grey background for contrast */
    padding: 60px 0px;
}

.sub-title {
    color: #004a8c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-main-title {
    font-size: 38px;
    font-weight: 800;
    color: #222;
}

.section-main-title span {
    color: #004a8c;
}

/* Card Styling */
.purpose-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid #e1e1e1;
    position: relative;
    overflow: hidden;
}

.purpose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 74, 140, 0.1);
    border-color: #004a8c;
}

.purpose-icon {
    width: 70px;
    height: 70px;
    background: #004a8c;
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.purpose-card:hover .purpose-icon {
    transform: rotateY(180deg);
    background: #222;
}

.purpose-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.purpose-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Checklist Styling */
.purpose-list {
    list-style: none;
    padding: 0;
}

.purpose-list li {
    margin-bottom: 10px;
    font-weight: 600;
    color: #444;
    display: flex;
    align-items: center;
}

.purpose-list li i {
    color: #28a745;
    font-size: 14px;
    margin-right: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .purpose-card {
        padding: 30px 20px;
    }

    .section-main-title {
        font-size: 28px;
    }

    .product-image-wrap img {
        width: 100%;
        height: auto !important;
        display: block;
        /* margin-right: 20px; */
        margin-bottom: 20px;
    }

    .tech-grid-side {
        width: 100%;
    }
}

.exp-content {
    text-align: center;
}



.product-card {
    border-radius: 20px;
    overflow: hidden;
    background: #f9f9f9;
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.product-img {
    background-color: #fff;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 20px 0 0;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px 15px;
    color: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.product-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    /* font-family: 'Poppins', sans-serif; */
    color: #1669a3;
}

.product-info p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    min-height: 100px;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 30px;
    border: 2px solid #1769a3;
    color: #1769a3;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #fff;
    color: #b1b1b1;
}

@media (max-width: 767px) {
    .product-img {
        height: 200px;
    }
}


.fittinco-about-section {
    background-color: #ffffff;
}

.fittinco-content .description {
    line-height: 1.7;
    color: #333;
    font-size: 15px;
    text-align: justify;
}

.product-list {
    list-style: none;
    padding-left: 0;
}

.product-list li {
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
}

.fittinco-image-wrapper img {
    transition: transform 0.3s ease;
    object-fit: cover;
}

@media (max-width: 991px) {
    .fittinco-content {
        text-align: left;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

.product-grid-section {
    background: #ededed;
}


.fittinco-details-section {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

.section-title {
    color: #2c567a;
    font-weight: 700;
    font-size: 24px;
    position: relative;
    padding-bottom: 10px;
}



.custom-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    font-size: 15px;
}

.custom-list li::before {
    color: #2c567a;
    font-size: 14px;
    content: "\f14c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}



.detail-box p {
    font-size: 15px;
    text-align: justify;
}

.service-item h4 {
    color: #2c567a;
    font-size: 18px;
}

@media (max-width: 991px) {
    .section-title {
        font-size: 22px;
    }

    .detail-box p {
        text-align: left;
    }
}

@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid #ddd;
    aspect-ratio: 1 / 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 86, 122, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay i {
    color: #fff;
    font-size: 24px;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .overlay i {
    transform: scale(1);
}

.section-title2 h2 {
    /* display: inline-block; */
    font-size: 32px;
    font-weight: 600;
}


.mission-card {
    background: rgb(15 56 89 / 48%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mission-card:hover {
    background: rgb(9 43 71);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mission-card h3 {
    font-size: 24px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.mission-card h3::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 2px;
    background: #fff;
    bottom: 0;
    left: 25%;
}

.mission-card p,
.mission-card li {
    font-size: 15px;
    line-height: 1.6;
    color: #e0e0e0;
}

.icon-box i {
    color: #fff;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .mission-card {
        margin-bottom: 20px;
    }
}

.description strong {
    font-weight: 600;
}

/* Custom About Section Styling */
.ftc-about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.ftc-main-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.ftc-description {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 11px;
    text-align: justify;
}

.ftc-description strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Stats Counter */
.ftc-stats-wrapper {
    display: flex;
    gap: 17px;
    margin-top: 40px;
}

.ftc-stat-item h3 {
    font-size: 46px;
    font-weight: 800;
    color: #1c4a8a;
    /* Image er blue color onujayi */
    margin-bottom: 5px;
}

.ftc-stat-item span {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Image Styling */
.ftc-image-wrapper {
    padding-left: 30px;
}

.ftc-rounded-img {
    width: 100%;
    border-radius: 30px;
    /* Image er rounded corner */
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Mobile Responsive Rules --- */

@media (max-width: 991px) {
    .ftc-image-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }

    .ftc-main-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .ftc-about-section {
        padding: 50px 0;
    }

    .ftc-stats-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .ftc-stat-item h3 {
        font-size: 32px;
    }
}

.ftc-stat-item {
    padding: 22px 34px;
    text-align: center;
    background: #f0f2f3;
    border-radius: 20px;
}


/* Product Portfolio Section */
.ft-portfolio-area {
    padding: 35px 0 70px;
    background-color: #fbfbfbeb;
}

.ft-portfolio-title {
    color: #1c4a8a;
    font-size: 32px;
    font-weight: 700;
}

.ft-portfolio-subtitle {
    font-size: 14px;
    color: #666;
}

/* Card Styling */
.ft-product-card {
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ft-img-box {
    background-color: #ffffff;
    padding: 4px;
    /* height: 220px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.ft-img-box img {
    max-width: 100%;
    /* max-height: 100%; */
    /* object-fit: contain; */
    border-radius: 16px;
}

.ft-content-box {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
}

.ft-content-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ft-content-box p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #fff;
}

/* Background Colors */
.ft-blue-bg .ft-content-box {
    background-color: #4372a8;
    /* Image-er moto Blue */
}

.ft-gray-bg .ft-content-box {
    background-color: #afafaf;
    /* Image-er moto Gray */
}

/* Button Styling */
.ft-btn-outline {
    display: inline-block;
    padding: 8px 25px;
    border: 1.5px solid #fff;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.ft-btn-outline:hover {
    background-color: #fff;
    color: #1c4a8a;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .ft-product-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 575px) {
    .ft-portfolio-title {
        font-size: 26px;
    }

    .ft-img-box {
        /* height: 180px; */
    }
}

/* Parallax Section Styling */
.ft-parallax-banner {
    position: relative;
    padding: 42px 0;
    /* Niche apnar image-er path diye din */
    background-image: linear-gradient(rgb(0 0 0 / 80%), rgb(12 46 71 / 75%)), url(../images/parallax-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Eta image ke fixed rakhbe */
    color: #ffffff;
    /* min-height: 450px; */
    display: flex;
    align-items: center;
}

.ft-parallax-content {
    z-index: 2;
}

.ft-banner-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 7px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.ft-banner-subtitle {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    /* max-width: 600px; */
    color: #fff;
}

/* Contact Button Styling */
.ft-contact-btn {
    display: inline-block;
    background-color: #4272a7;
    /* Blue color matching your theme */
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.ft-contact-btn:hover {
    background-color: #fff;
    color: #4272a7;
    text-decoration: none;
}

/* --- Mobile Responsive --- */

@media (max-width: 991px) {

    /* Mobile-e parallax fixed thakle onek somoy laggy hoy, tai scroll kora bhalo */
    .ft-parallax-banner {
        background-attachment: scroll;
        padding: 60px 0;
    }

    .ft-banner-title {
        font-size: 30px;
    }

    .ft-banner-subtitle {
        font-size: 16px;
    }
}

/* Expertise Section Styling */
.expertise-section {
    padding: 60px 0 80px;
    background-color: #fff;
}

.expertise-main-title {
    color: #1c4a8a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    /* text-align: center; */
}

.expertise-intro {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    max-width: 1000px;
    margin-bottom: 0;
    /* margin: 0 auto; */
}

/* Individual Item Layout */
.expertise-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.expertise-img {
    flex: 0 0 240px;
    /* Fixed width for image box */
}

.expertise-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 15px;
    /* Screenshot er moto rounded corner */
}

.expertise-text {
    flex: 1;
}

.expertise-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1c4a8a;
    margin-bottom: 10px;
}

.expertise-text p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    margin: 0;
}

.expertise-text strong {
    color: #222;
    font-weight: 600;
}

/* --- Mobile Responsive --- */

@media (max-width: 767px) {
    .expertise-item {
        flex-direction: column;
        /* Mobile e image upore ar text niche */
        gap: 15px;
    }

    .expertise-img {
        flex: 0 0 auto;
        width: 100%;
    }

    .expertise-img img {
        height: 200px;
        /* Mobile e image ektu boro dekhabe */
    }

    .expertise-main-title {
        font-size: 26px;
    }
}

/* Quality & Metal Grades Styling */
.ft-quality-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.ft-section-title {
    color: #1c4a8a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ft-section-intro {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 9px;
}

/* Quality Part */
.ft-quality-img-box img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.ft-quality-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    text-align: justify;
}

/* Metal Grades Part */
.ft-grades-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ft-grade-item {
    display: flex;
    align-items: flex-start;
    background: #f8fafd;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #1c4a8a;
    /* Accent border */
    transition: 0.3s;
}

.ft-grade-item:hover {
    background: #eff4fb;
    transform: translateX(10px);
}

.ft-grade-icon {
    color: #1c4a8a;
    font-size: 20px;
    margin-right: 15px;
    /* margin-top: 2px; */
}

.ft-grade-content {
    font-size: 15px;
    color: #444;
    line-height: 1.5;
}

.ft-grade-content strong {
    color: #1c4a8a;
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .ft-quality-img-box {
        margin-bottom: 30px;
    }

    .ft-section-title {
        font-size: 28px;
    }

    .ft-grade-item:hover {
        transform: none;
    }
}

/* --- Testimonials Styling --- */
.ft-testimonial-area {
    padding: 55px 0 60px;
    background-color: #f3f3f394;
}

.ft-section-title {
    color: #1c4a8a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.ft-section-subtitle {
    font-size: 16px;
    color: #555;
}

.ft-testi-card {
    background: #eceff3;
    /* Light bluish-gray background from image */
    padding: 30px;
    border-radius: 5px;
    height: 100%;
}

.ft-stars {
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 15px;
}

.ft-testi-text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.ft-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ft-user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.ft-user-info span {
    font-weight: 600;
    font-size: 15px;
    color: #1c4a8a;
}

/* --- CTA Section Styling --- */
.ft-cta-section {
    padding: 10px 0;
    background-color: #f1f5f9;
    /* border-top: 1px solid #dee2e6; */
}

.ft-cta-title {
    font-size: 26px;
    font-weight: 700;
    color: #1c4a8a;
    margin-bottom: 25px;
    /* padding: 0px !important; */
}

.ft-btn-primary {
    display: inline-block;
    background-color: #4272a7;
    color: #fff;
    padding: 7px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.ft-btn-primary:hover {
    background-color: #1c4a8a;
    color: #fff;
}

/* Branding & Products */
.ft-cta-branding {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    border-left: 3px solid #1c4a8a;
    /* Blue vertical line from image */
    padding-left: 30px;
}

.ft-made-in {
    font-size: 34px;
    font-weight: 800;
}

.mi-text {
    color: #f18c1c;
}

/* Orange */
.mi-india {
    color: #1e8e3e;
}

/* Green */

.ft-cta-products img {
    max-height: 120px;
}

/* --- Mobile Responsive --- */
@media (max-width: 991px) {
    .ft-cta-branding {
        border-left: none;
        padding-left: 0;
        margin-top: 40px;
        justify-content: center;
        flex-direction: column;
    }

    .ft-cta-content {
        text-align: center;
    }

    .ft-cta-title {
        font-size: 28px;
    }
}

/* Main Wrapper Class */
.ft-contact-page {
    padding: 80px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Form Styling */
.ft-contact-form-wrapper .ft-form-title {
    color: #4272a7;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.ft-contact-form-wrapper label {
    font-weight: 600;
    color: #4272a7;
    margin-bottom: 5px;
    font-size: 14px;
}

.ft-contact-form-wrapper .form-control {
    background-color: #f1f1f1;
    border: none;
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 14px;
}

.ft-submit-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.ft-submit-btn:hover {
    background-color: #333333;
}

/* Info Box Styling */
.ft-contact-info-box {
    background-color: #4272a7;
    /* Industrial Blue from image */
    color: #ffffff;
    padding: 40px;
    border-radius: 5px;
}

.info-main-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.ft-info-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ft-info-item p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
    color: #fff;
}

.ft-info-item strong {
    font-weight: 700;
}

/* Image & Map */
.ft-contact-extra-img img {
    width: 100%;
    object-fit: cover;
}

.ft-map-wrapper iframe {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Mobile Responsive --- */
@media (max-width: 991px) {
    .ft-contact-page {
        padding: 50px 0;
    }

    .ft-contact-info-box {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .ft-contact-form-wrapper .ft-form-title {
        text-align: center;
    }

    .ft-submit-btn {
        width: 100%;
        /* Mobile e button full width */
    }
}

/* Download Section Styling */
.ft-download-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.ft-download-main-title {
    color: #1c4a8a;
    font-size: 28px;
    font-weight: 700;
}

.ft-title-separator {
    width: 60px;
    height: 4px;
    background: #4272a7;
    margin-top: 10px;
}

/* Download Card */
.ft-download-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    border: 1px solid #eee;
}

.ft-download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #4272a7;
}

/* PDF Icon Styling */
.ft-pdf-icon {
    font-size: 35px;
    color: #e74c3c;
    /* PDF Red Color */
}

.ft-pdf-info {
    flex-grow: 1;
}

.ft-pdf-info h6 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.ft-pdf-info p {
    margin: 0;
    font-size: 13px;
    color: #777;
}

/* Download Button Styling */
.ft-dl-btn {
    width: 40px;
    height: 40px;
    background: #4272a7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.ft-dl-btn:hover {
    background: #1c4a8a;
    color: #fff;
    transform: scale(1.1);
}

/* --- Mobile Responsive --- */
@media (max-width: 575px) {
    .ft-download-card {
        padding: 15px;
    }

    .ft-pdf-info h6 {
        font-size: 14px;
    }

    .ft-pdf-icon {
        font-size: 30px;
    }
}