@import url('https://fonts.googleapis.com/css2?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');

body {
    margin: 0px 0px;
    padding: 0px 0px;
    list-style: none;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
}

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

/*** 

====================================================================
Main Header
====================================================================

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

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

a {
    text-decoration: none !important;
    cursor: pointer;
    color: #1c73ea;
    font-family: 'Poppins', sans-serif;
}

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

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

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Poppins", sans-serif;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: 500;
    color: #092e68;
    font-size: 15px;
    /* letter-spacing: 1px; */
    line-height: 20px;
    padding: 0;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    /* text-transform: uppercase; */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

}

@media only screen and (max-width: 1600px) {
    .main-menu .navigation>li>a {
        position: relative;
        display: block;
        text-align: center;
        opacity: 1;
        font-weight: 500;
        color: #092e68;
        font-size: 15px;
        /* 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; */
    }
}

@media only screen and (max-width: 1440px) {
    .main-menu .navigation>li {
        position: relative;
        float: left;
        padding: 35px 0px;
        -webkit-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        padding-right: 5px;
        margin-right: 10px;
    }
}

@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) {
    .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 {
        /* height: 489px; */
        max-width: 276px !important;
        position: absolute;
        right: -90px !important;
        bottom: -27%;
        border-radius: 10px;
        overflow: hidden;
    }

    .slider-style-seven.home-8 .owl-dots {
        top: 97% !important;
    }

    .process-line {
        position: absolute;
        left: 621px !important;
        bottom: 93px;
        transform: translate(-50%, 0);
        text-align: center;
        z-index: -1;
    }

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

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

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

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

    .main-menu .navigation>li {
        padding-right: 5px;
        margin-right: 6px;
    }

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

@media (max-width:1320px) {
    .main-header .logo {
        width: 218px;
    }

    .main-header .logo img {
        width: 100% !important;
    }

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

    .main-menu .navigation>li>a {
        position: relative;
        display: block;
        text-align: center;
        opacity: 1;
        font-weight: 500;
        color: #092e68;
        font-size: 15px;
        /* 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 {
        padding-right: 2px;
        margin-right: 11px;
    }
}

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



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


.top-info {
    margin-bottom: 0px;
}

.header-top {
    position: relative;
    overflow: hidden;
    /* padding: 5px 0px; */
    background: #fe761a;
    z-index: 100;
}

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

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

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

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

.header-top .top-right .top-info li {
    position: relative;
    display: inline-block;
    padding: 2px 7px;
    border-right: 1px solid #f0f0f0b8;
}

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

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

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

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

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



.header-top-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 / 72%) 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: 60px;
    line-height: 60px;
    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: 24px;
    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: 700;
    text-transform: uppercase;
    border: 3px solid #fff;
    background: #fff0;
    text-align: center;
    padding: 14px 46.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: 18px;
    line-height: 28px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 5px;
    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: 26px;
    color: #ca2212;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 8px;
    font-weight: 700;
}

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

.about_img {
    float: right;
    max-width: 540px;
    width: 100%;
    position: relative;
    margin: 0 0 20px 30px;
}

.about_img .img {
    position: relative;
}

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

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

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

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

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

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

}

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

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

@keyframes float-bob-y {

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

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

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

@keyframes float-bob-x {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.som_product {
    padding: 50px 0;
    width: 100%;
    width: 100%;
    background-image: url(../images/countries-bg-1-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.som_product {
    padding: 50px 0;
    width: 100%;
    width: 100%;
    background-image: url(../images/countries-bg-1-1.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

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

.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: 13px;
    overflow: hidden;
    margin: 0 auto
}

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

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

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

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

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

.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: #333;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 900;
    display: block;
    padding-bottom: 3px;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.title_2 span {
    color: #333;
}

.gray-color {
    color: #e3e3e3 !important;
}


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

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

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

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

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

footer .widget_logo img {
    max-width: 200px;
    padding: 10px;
    /* background-color: #fff; */
    border-radius: 3px;
    filter: brightness(0) invert(1);
}

footer p {
    color: #d7d7d7;
    text-align: justify;
}

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

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

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

footer .widget_info svg {
    margin-right: 20px;
    position: absolute;
    left: -10px;
    top: 8px;
    font-style: normal;
    display: inline;
    line-height: unset;
    vertical-align: middle;
    color: #fd7314;
    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: #ff7414;
    text-decoration: none;
}

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

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

.widget ul li {
    list-style: none;
    margin-bottom: 7px;
    line-height: 24px;
    position: relative;
    padding-left: 20px;
    font-family: var(--font);
}

.widget ul li:before {
    display: block;
    content: "";
    width: 9px;
    height: 5px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #ff7414;
    /* border-radius: 5px; */
}

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

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

.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: #092e68;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sub_footer_line {
    padding: 4px !important;
    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: 13px;
    color: #d7d7d7;
    line-height: 1.6;
    margin-bottom: 0;
    margin: 0px 5px;
}

.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: 0px 0 0 3px;
    display: inline-block;
}

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 #fe7414;
    color: #ffffff;
    padding: 7px 16px;
    line-height: normal;
    border-radius: 0;
    margin: 0;
    background: #fd7314 !important;
    border-radius: 7px;
}

.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;
    display: flex;
    /* justify-content: space-between; */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

#serviceSection .bodySection .tab-content .tab-pane h3 {

    font-weight: 600;
    font-size: 36px;
    color: #eb3238;
}

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

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

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

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

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

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

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

    .gallerySlider {

        .galleryTitle {
            padding: 15px 20px;
        }

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

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

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

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

.testimonial2 {
    background: #f3f2f2c7 !important;
}

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

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

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

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

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

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

.g-trans {
    float: right !important;
    margin-right: 15px
}

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

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

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

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

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

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

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

.logo_items {
    display: inline-block;
}

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

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

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

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

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

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

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

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

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

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

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

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

}

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

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

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

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

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

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

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

.portfolio-area {
    position: relative;
}

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

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

.portfolio-img {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

}

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

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


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

}



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

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


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

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

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


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

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

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

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

.gallery ul {
    margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-primary {
    background: #ca2528;
    border: none;
}

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

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


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

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

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

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

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

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 8px;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

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

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

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

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

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

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


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


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

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

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

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

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

.owner-image {
    width: 100%;
}

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

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

.video-banner {
    position: relative;
    width: 100%;
    height: 86vh;
    overflow: hidden;
    z-index: 10;
}

.video-banner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




/* Overlay Text Container */
.banner-main-text {
    position: absolute;
    inset: 0;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    /* background: rgba(0,0,0,0.35); */
    /* subtle overlay */
    flex-wrap: wrap;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    height: max-content;
    width: 80%;
    z-index: 10;
}

/* Stroke Heading */
.banner-main-text h1 {
    /* font-family: "Poppins", sans-serif; */
    font-size: 78px;
    font-weight: 700;
    /* text-transform: uppercase; */
    letter-spacing: 5px;
    color: #65656500;
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
    animation: textReveal 1.5s ease forwards;
    margin-bottom: 25px;
}

/* Animation */
@keyframes textReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-main-text h1 {
        font-size: 38px;
        -webkit-text-stroke: 1.5px #ffffff;
        letter-spacing: 1px;
        text-align: center;
        padding: 0 4px;
        margin-bottom: 0;
    }
}


/* Mobile */
@media(max-width:768px) {
    .video-banner {
        height: 70vh;
    }
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    /* background: #0b3c5d; */
    /* change as per theme */
    /* padding: 8px 0; */
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 18s linear infinite;
}

.marquee span {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    padding-left: 100%;
}

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

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

/* Mobile */
@media (max-width: 768px) {
    .marquee span {
        font-size: 12px;
    }
}


.rotating-text {
    font-weight: 600;
    font-size: 36px;
    color: #fff;
    position: relative;
    display: inline-block;
    margin-top: 20px;
}

.rotating-text p {
    margin: 0;
    position: relative;
    height: 80px;
    display: block;
    /* text-transform: uppercase; */
}

.rotating-text .word {
    position: absolute;
    opacity: 0;
    white-space: nowrap;
    letter-spacing: 1px;
}

.rotating-text .word.active {
    opacity: 1;
}

.rotating-text .letter {
    display: inline-block;
    transform-origin: center center 25px;
}

.rotating-text .letter.out {
    transform: rotateX(90deg);
    transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
}

.rotating-text .letter.in {
    transition: 0.38s ease;
}

.rotating-text .letter.behind {
    transform: rotateX(-90deg);
}

.rotating-text p span {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
}

.rotating-text .word {
    left: 50%;
    transform: translateX(-50%);
}

/* Dark Blue Overlay */
.video-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(9 46 104 / 31%);
    /* dark blue overlay */
    z-index: 0;
}




/* ............about-section............... */


.section-padding {
    padding: 70px 0;
}

.about-section {
    position: relative;
    background: #f9f9f9d4;
}

.about-section .line-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.about-section .line-shape img {
    width: 100%;
    height: 100%;
}

.about-wrapper-2 .about-image-items {
    position: relative;
}

.about-wrapper-2 .about-image-items .about-image-1 {
    max-width: 455px;
    height: 467px;
    border-radius: 10px;
    position: relative;
}

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

.about-wrapper-2 .about-image-items .about-image-1 .about-image-2 {
    /* height: 489px; */
    max-width: 376px;
    position: absolute;
    right: -170px;
    bottom: -27%;
    border-radius: 10px;
    overflow: hidden;
}

.about-wrapper-2 .about-image-items .about-image-1 .about-image-2 img {
    width: 100%;
    height: 100%;
}

.about-wrapper-2 .about-image-items .circle-shape {
    position: absolute;
    bottom: -80px;
    left: 46px;
    z-index: 2;
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-wrapper-2 .about-image-items .circle-shape .text-circle {
    animation: cir36 10s linear infinite;
}

.about-wrapper-2 .about-image-items .circle-shape img {
    width: 86%;
    margin: 0 ao;
}

@-webkit-keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes rippleOne {
    70% {
        -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
        box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    }
}

@keyframes toggle {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes moveCursor1 {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

@keyframes moveCursor1 {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }
}

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

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

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

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

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

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

@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rounded {
    50% {
        transform: rotate(15deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.animation__rotate {
    animation: rotate 40s linear infinite;
}

@keyframes rotateY {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.animation__rotateY {
    animation: rotateY 40s linear infinite;
}

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


.about-wrapper-2 .about-image-items .circle-shape .about-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.about-wrapper-2 .about-image-items .circle-shape .about-title h2 {
    font-size: 57px;
    color: #fff;
    line-height: 34px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .about-wrapper-2 .about-image-items .circle-shape .about-title h2 {
        font-size: 36px;
    }
}

.about-title p {
    color: #fff;
}

.section-title h2 {
    text-transform: capitalize;
    font-size: 39px;
    line-height: 109%;
    font-weight: 700;
    color: #092e68;
    font-family: "Poppins", sans-serif;
}

.section-title span {
    color: #e56207;
    margin-bottom: 10px;
    display: inline-block;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mt-50 {
    margin-top: 50px !important;
}

.opacity-o {
    display: none;
}



.cresco-services {
    padding: 80px 0;
    background: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

.services-header h2 {
    text-align: center;
    font-size: 36px;
    color: #222;
    margin-bottom: 10px;
}

.services-header p {
    text-align: center;
    color: #555;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    text-align: center;
    /* padding: 30px 20px; */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    /* cursor: pointer; */
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon img {
    width: 100%;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon img {
    transform: scale(1.0);
}

.service-card h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 15px;
}

.service-link {
    color: #1d70b8;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
    padding-bottom: 8px;
}

.service-link .arrow {
    margin-left: 5px;
    transition: transform 0.3s;
}

.service-card:hover .service-link .arrow {
    transform: translateX(5px);
}




.section-title__title {
    margin: 0;
    color: var(--insur-black);
    font-size: 2.5rem;
    line-height: 55px;
    font-weight: 700;
}

.services-one__top-right {
    position: relative;
    display: block;
    margin-left: 170px;
    margin-top: 16px;
}

.services-one__top-text {
    font-size: 18px;
    line-height: 30px;
}

.services-one__bottom {
    position: relative;
    display: block;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
    position: relative;
    display: block;
    background-color: var(--insur-extra);
    padding: 50px 0 50px;
    background-image: url(../images/services-bg.png);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: fixed;
}

.services-one__top {
    position: relative;
    display: block;
}

.services-one__top-left {
    position: relative;
    display: block;
}

.services-one__top-right {
    position: relative;
    display: block;
    margin-left: 170px;
    margin-top: 16px;
}

.services-one__top-text {
    font-size: 18px;
    line-height: 30px;
    letter-spacing: var(--insur-letter-spacing);
}

.services-one__bottom {
    position: relative;
    display: block;
}

.services-one__container {
    position: relative;
    display: block;
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.services-one__single {
    /* height: 100%; */
    position: relative;
    display: block;
    /* margin-bottom: 36px; */
    border-radius: 25px;
    /* box-shadow: 1px 2px 0px 2px #b4b4b470; */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    overflow: hidden;
}

.service-one__img {
    position: relative;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    z-index: 1;
}

.service-one__img:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-color: rgba(var(--insur-black-rgb), .30);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all 500ms ease;
    transform: translate3d(0px, -100%, 0px);
    z-index: 1;
}

.services-one__single:hover .service-one__img:before {
    transform: translate3d(0px, 0, 0px);
}

.service-one__img img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__single:hover .service-one__img img {
    transform: scale(1.05);
}

.service-one__content {
    position: relative;
    display: block;
    background-color: rgb(255, 255, 255);
    box-shadow: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 37px 30px 13px;
    min-height: 231px;
}

.services-one__icon {
    position: absolute;
    top: -40px;
    right: 20px;
    height: 60px;
    width: 60px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.05);
    border-radius: var(--insur-bdr-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 3;
}

.services-one__icon i {
    font-size: 27px;
}

.services-one__single:hover .services-one__icon {
    background-color: #ff781c;
}

.services-one__single:hover .services-one__icon i {
    color: #ffffff;
}

.services-one__icon span {
    position: relative;
    display: inline-block;
    font-size: 36px;
    color: var(--insur-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.services-one__single:hover .services-one__icon span {
    color: var(--insur-white);
    transform: scale(0.9);
}

.service-one__title {
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: var(--insur-letter-spacing);
    margin-bottom: 5px;
}

.service-one__title:before {
    position: absolute;
    content: "";
    left: 0;
    top: -16px;
    height: 4px;
    width: 40px;
    background-image: -moz-linear-gradient(45deg, #2459bf, #5715a4);
    background-image: -webkit-linear-gradient(45deg, #ff7414, #ff7414);
    background-image: -ms-linear-gradient(45deg, #2459bf, #5715a4);
}

.service-one__title a {
    color: #092e68;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.services-one__single:hover .service-one__title a {
    color: var(--insur-base);
}

.service-one__text {
    font-size: 16px;
    letter-spacing: var(--insur-letter-spacing);
    line-height: 24px;
}

:root {
    --insur-gray: #696e77;
    --insur-gray-rgb: 105, 110, 119;
    --insur-white: #ffffff;
    --insur-white-rgb: 255, 255, 255;
    --insur-base: #2459bf;
    --insur-base-rgb: 1, 95, 201;
    --insur-black: #0d1c45;
    --insur-black-rgb: 22, 36, 61;
    --insur-primary: #0ce0ff;
    --insur-primary-rgb: 12, 224, 255;
    --insur-extra: #f2f5f9;
    --insur-extra-rgb: 242, 245, 249;
    --insur-bdr-color: #e0e4e8;
    --insur-bdr-color-rgb: 224, 228, 232;
    --insur-bdr-radius: 10px;
    --insur-letter-spacing: -0.02em;

}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
    position: relative;
    display: block;
    background-color: #e1ebf7;
    background: linear-gradient(to right, #092e68 0, #092e68f5 100%);
    padding: 58px 0px;
    overflow: hidden;
}

.counter-one-shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: .20;
}

.counter-one-shape-1 img {
    width: auto;
    opacity: 0.1;
}

.counter-one-shape-2 {
    position: absolute;
    bottom: -35px;
    right: 0;
    opacity: .20;
}

.counter-one-shape-2 img {
    width: auto;
    opacity: 0.1;
}

.counter-one__single {
    position: relative;
    justify-content: center;
    display: block;
    text-align: center;
    padding: 50px 15px;
    background: #0a2c6291;
    border-radius: 16px;
}

.counter-one__top {
    position: relative;
    display: flex;
    margin-bottom: 13px;
    align-items: center;
    justify-content: center;
}

.counter-one__icon {
    position: relative;
    display: block;
}

.counter-one__icon span {
    position: relative;
    display: flex;
    font-size: 60px;
    color: var(--insur-base);
    transition: all 500ms linear;
    transition-delay: 0.1s;
    transform: scale(1);
}

.counter-one__single:hover .counter-one__icon span {
    color: var(--insur-white);
    transform: scale(.9);
}

.counter-one__count-box {
    position: relative;
    margin-left: 16px;
    margin-top: 0;
}

.counter-one__count-box:before {
    /* position: absolute; */
    top: -26px;
    left: 0;
    height: 4px;
    width: 40px;
    border-radius: 2px;
    content: "";
    background-image: -moz-linear-gradient(0deg, rgb(242, 245, 249) 0%, rgb(12, 224, 255) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(242, 245, 249) 0%, rgb(12, 224, 255) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(242, 245, 249) 0%, rgb(12, 224, 255) 100%);
}

.counter-one__count-box-inner {
    position: relative;
    display: flex;
    align-items: center;
}

.counter-one__count-box-inner h3 {
    font-size: 46px;
    color: #ffffff;
    font-weight: 700;
    line-height: 36px !important;
    font-family: var(--insur-font) !important;
    letter-spacing: var(--insur-letter-spacing);
}

.counter-one__plus {
    font-size: 36px;
    color: #ffffff;
    font-weight: 700;
    line-height: 36px !important;
    font-family: var(--insur-font) !important;
    letter-spacing: var(--insur-letter-spacing);
}

.counter-one__text {
    font-size: 19px;
    color: #ffffff;
    line-height: 34px;
    letter-spacing: var(--insur-letter-spacing);
    margin-bottom: 0;
}

.counter-one__icon i {
    font-size: 35px;
    color: #fff;
}


/*--------------------------------------------------------------
# Get Insuracne Two
--------------------------------------------------------------*/
.get-insuracne-two {
    position: relative;
    display: block;
    padding: 5rem 0 1rem;
    background-color: #e1ebf7;
    z-index: 1;
}

.get-insuracne-two:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 208px;
    right: 0;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(223, 227, 231);
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.07);
    content: "";
    border-top-left-radius: 377.5px;
    border-bottom-left-radius: 377.5px;
    z-index: -1;
}

.get-insuracne-two-shape-3 {
    position: absolute;
    top: 0;
    right: -18px;
    mix-blend-mode: luminosity;
    opacity: 0.03;
    z-index: -1;
}

.get-insuracne-two-shape-3 img {
    width: auto;
}

.get-insuracne-two__left {
    position: relative;
    display: block;
}

.get-insuracne-two__shape-box {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

.get-insuracne-two-shape-1 {
    position: absolute;
    top: -44px;
    bottom: -42px;
    left: -375px;
    width: 814px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
}

.get-insuracne-two-shape-2 {
    position: absolute;
    top: -34px;
    bottom: 0;
    left: -375px;
    mix-blend-mode: luminosity;
    opacity: .15;
}

.get-insuracne-two-shape-2 img {
    width: auto;
}

.get-insuracne-two__img {
    position: relative;
    display: block;
    border-radius: 50%;
    margin-left: -139px;
    margin-right: 102px;
}

.get-insuracne-two__img img {
    width: 100%;
    border-radius: 50%;
}

.get-insuracne-two__right {
    position: relative;
    display: block;
}

.get-insuracne-two__right .section-title {
    margin-bottom: 38px;
}

.get-insuracne-two__tab {
    position: relative;
    display: block;
}

.get-insuracne-two__tab-box {
    position: relative;
    display: block;
    z-index: 2;
}

.get-insuracne-two__inner {
    position: relative;
    display: block;
}

.get-insuracne-two__tab-left {
    position: relative;
    display: block;
    max-width: 180px;
    width: 100%;
    float: left;
}

.get-insuracne-two__tab-box .tab-buttons {
    position: relative;
    display: block;
}

.get-insuracne-two__tab-box .tab-buttons .tab-btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;
}

.get-insuracne-two__tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-top: 10px;
}

.get-insuracne-two__tab-btn-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: #fff;
    border: 1px solid #0005;
    border-radius: 1rem;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: .1s ease-in-out all;
}

.get-insurance__tab-box .row .btn-column:nth-child(1) .get-insuracne-two__tab-btn-content {
    background-color: #73bf45;
}

.get-insurance__tab-box .row .btn-column:nth-child(2) .get-insuracne-two__tab-btn-content {
    background-color: #1455a6;
}

.get-insurance__tab-box .row .btn-column:nth-child(3) .get-insuracne-two__tab-btn-content {
    background-color: #fdb813;
}

.get-insurance__tab-box .row .btn-column:nth-child(4) .get-insuracne-two__tab-btn-content {
    background-color: #009bad;
}

.get-insuracne-two__tab-btn-content:active,
.get-insuracne-two__tab-btn-content:hover {
    border: 1px solid #01406b;
}

.get-insuracne-two__tab-box .tab-buttons .tab-btn.active-btn .get-insuracne-two__tab-btn-content {
    border: 3px solid #01406b;
}

.get-insuracne-two__tab-btn-content:before {
    position: absolute;
    top: 50%;
    right: -6px;
    content: "";
    border-top: 8px solid transparent;
    border-left: 6px solid var(--insur-base);
    border-bottom: 8px solid transparent;
    transform: translateY(-50%) scale(0);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.get-insuracne-two__tab-box .tab-buttons .tab-btn.active-btn .get-insuracne-two__tab-btn-content:before {
    transform: translateY(-50%) scale(1);
}

.get-insuracne-two__tab-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.get-insuracne-two__tab-icon img {
    width: auto;
}

.get-insuracne-two__tab-text-box {
    margin-left: 14px;
}

.get-insuracne-two__tab-text {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 500;
    line-height: 17px;
    letter-spacing: var(--insur-letter-spacing);
}

.get-insuracne-two__tab-box .tabs-content {
    position: relative;
    display: block;
}

.get-insuracne-two__tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}

.get-insuracne-two__tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.get-insuracne-two__tab-right {
    position: relative;
    display: block;
    max-width: 562px;
    width: 100%;
    padding-left: 40px;
    float: left;
}

.get-insuracne-two__content {
    position: relative;
    display: block;
}

.get-insuracne-two__form {
    position: relative;
    display: block;
}

.get-insuracne-two__content-box {
    position: relative;
    display: block;
}

.get-insuracne-two__input-box {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.get-insuracne-two__input-box input[type="text"],
.get-insuracne-two__input-box input[type="email"] {
    height: 60px;
    width: 100%;
    border: 0;
    background-color: var(--insur-extra);
    outline: none;
    font-size: 16px;
    color: var(--insur-gray);
    font-weight: 400;
    padding: 0 30px 0;
    border-radius: var(--insur-bdr-radius);
}

.get-insuracne-two__input-box .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 100% !important;

}

.get-insuracne-two__input-box .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.get-insuracne-two__input-box .bootstrap-select>.dropdown-toggle {
    position: relative;
    height: 60px;
    outline: none !important;
    border-radius: var(--insur-bdr-radius);
    border: 0;
    background-color: var(--insur-extra) !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--insur-gray) !important;
    font-size: 16px;
    line-height: 60px;
    font-weight: 400;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
}

.get-insuracne-two__input-box .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    font-size: 14px;
    color: var(--insur-gray);
}

.get-insuracne-two__progress {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 13px;
    margin-bottom: 20px;
}

.get-insuracne-two__progress-single {
    position: relative;
    display: block;
}

.get-insuracne-two__progress-title {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: var(--insur-letter-spacing);
}

.get-insuracne-two__progress .bar {
    position: relative;
    width: 100%;
    height: 13px;
    background-color: var(--insur-extra);
    border-radius: 6px;
    border: 0
}

.get-insuracne-two__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 13px;
    border-radius: 6px;
    background-image: -moz-linear-gradient(0deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
    background-image: -webkit-linear-gradient(0deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
    background-image: -ms-linear-gradient(0deg, rgb(1, 95, 201) 0%, rgb(12, 224, 255) 100%);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.get-insuracne-two__progress .count-text {
    position: absolute;
    right: -30px;
    bottom: -8px;
    opacity: 0;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(255, 255, 255);
    border-radius: 50%;
    background-color: rgb(22, 36, 61);
    width: 30px;
    height: 30px;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.get-insuracne-two__progress .bar-inner.counted .count-text {
    opacity: 1;
}

.get-insuracne-two__balance-box {
    position: absolute;
    top: 0;
    right: 0;
}

.get-insuracne-two__balance {
    font-size: 16px;
    color: var(--insur-black);
    font-weight: 700;
    letter-spacing: var(--insur-letter-spacing);
}

.get-insuracne-two__content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.get-insuracne-two__btn {
    border: none;
}

.get-insuracne-two__content-bottom-text-box p {
    line-height: 24px;
    letter-spacing: var(--insur-letter-spacing);
}

.get-insuracne-two__content-bottom-text-box h5 {
    font-size: 16px;
    color: var(--insur-black);
    line-height: 24px;
    letter-spacing: var(--insur-letter-spacing);
}

.social-links {
    padding-left: 0px;
}

.view-all-animate {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 38px;
    background: linear-gradient(120deg, #ff7a18, #ffb347);
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: gradientMove 4s ease infinite;
}

/* Gradient animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hover effect */
.view-all-animate:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(255, 122, 24, 0.35);
}

/* Arrow animation */
.view-all-animate i {
    transition: transform 0.3s ease;
}

.view-all-animate:hover i {
    transform: translateX(6px);
}

/* Shine effect */
.view-all-animate::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
}

.view-all-animate:hover::before {
    animation: shine 0.8s ease;
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.other-services-flow {
    padding: 60px 0;
    background: #ffffff;
    color: #fff;
    position: relative;
    background-image: url(../images/other-services-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* Sticky left text */
.flow-left {
    position: sticky;
    top: 100px;
}

.flow-left h2 {
    font-size: 42px;
    font-weight: 800;
    color: #092e68;
}

.flow-left p {
    font-size: 18px;
    opacity: 0.8;
    text-align: justify;
    width: 96%;
}

/* List flow */
.flow-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.flow-list::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, #ff7a18, transparent);
}

/* Each item */
.flow-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-left: 45px;
    position: relative;
    animation: slideIn 0.8s ease forwards;
}

.flow-item i {
    position: absolute;
    left: 0;
    font-size: 20px;
    color: #ff7a18;
    background: #0f172a;
    padding: 6px;
}

.flow-item span {
    font-size: 18px;
    font-weight: 500;
}

/* Slide animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

/* Courses */
.flow-courses {
    margin-top: 60px;
    padding-left: 45px;
}

.flow-courses h4 {
    margin-bottom: 15px;
}

.flow-courses p {
    opacity: 0.85;
}

.process-service-box {
    background: #ffffff;
    /* padding: 35px 30px; */
    border-radius: 18px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 22px;
    position: sticky;
    top: 0;
    width: 100%;
}

/* Floating accent */
.process-service-box::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 122, 24, 0.15);
    border-radius: 50%;
    transition: all 0.5s ease;
}

/* Hover animation */
.process-service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.process-service-box:hover::before {
    top: -20%;
    right: -20%;
}

/* Icon */
.process-icon {
    /* width: 60px; */
    /* height: 60px; */
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 20px; */
}

.process-icon img {
    width: 100%;
}

.process-icon i {
    font-size: 26px;
    color: #fff;
}

.conatnte-sticky {
    padding: 20px 20px;
}

/* Title */
.process-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    /* color: aliceblue; */
}

.process-title a {
    color: #092e68;
    text-decoration: none;
}

.process-title a:hover {
    color: #ff7a18;
}

/* Text */
.process-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Link */
.process-link {
    font-weight: 600;
    color: #ff7a18;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.process-link i {
    transition: transform 0.3s ease;
}

.process-link:hover i {
    transform: translateX(6px);
}


.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 130px !important;
    z-index: 10 !important;
}

/* .................section.section-grey.easy-work-process............. */


section.section-grey.easy-work-process {
    background: #00800017;
    position: relative;
    padding: 70px 0px;
}

.section-title-wrap h3 {
    color: #253f50;
    text-align: center;
    font-size: 40px;
    padding-bottom: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.easy-work-process .features-second,
ul.business-list li {
    margin: 10px 0;
}

.easy-work-process .nav-pills .nav-link {
    margin-bottom: 10px
}

.easy-work-process .nav-pills .nav-link,
.easy-work-process .nav-pills .show>.nav-link {
    border: none !important;
    transition: 1s
}

.easy-work-process .nav-pills .nav-link:hover {
    color: #fff;
    background-color: #fff;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 55px 0 rgba(0, 0, 0, .05) !important;
    -moz-box-shadow: 0 12px 55px 0 rgba(0, 0, 0, .05) !important;
    -webkit-box-shadow: 0 12px 55px 0 rgba(0, 0, 0, .05) !important;
    transition: 1s
}

.easy-work-process .nav-pills .nav-link,
.easy-work-process .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #fff;
    border: 1px solid #f4f5f6 !important;
    border-radius: 8px !important;
    box-shadow: 0 12px 55px 0 rgba(0, 0, 0, .05) !important;
    -moz-box-shadow: 0 12px 55px 0 rgba(0, 0, 0, .05) !important;
    -webkit-box-shadow: 0 12px 55px 0 rgba(0, 0, 0, .05) !important;
    transition: 1s
}

.easy-work-process .features-second h3 {
    margin-top: 6px;
    font-size: 18px;
    color: #000;
    padding-bottom: 8px;
    font-weight: 600;
}

.easy-work-process .features-second p {
    color: #000;
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
    line-height: 21px;
}

.easy-work-process .dropcaps-circle {
    float: left;
    margin: 1px 8px 10px 0;
    background-color: #fcfcfc;
    border: 1px solid #eaeaea;
    width: 60px;
    height: 60px;
    text-align: center;
    vertical-align: middle;
    color: #017df7;
    font-size: 27px;
    line-height: 60px;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -webkit-transition: .5s ease-in-out
}

.easy-work-process .features-second {
    display: flex;
    cursor: pointer
}

.easy-work-process .features-second .dropcaps-circle {
    width: 70px !important;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.easy-work-process .features-second .content-wrap {
    width: 100%
}

.easy-work-process .nav.nav-pills.grow-with-tab {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.easy-work-process .nav.nav-pills.grow-with-tab a.nav-link {
    width: 23%;
    text-align: center;
}

.easy-work-process .nav.nav-pills.grow-with-tab a.nav-link .features-second {
    flex-direction: column;
    justify-content: center !important;
}

.easy-work-process .nav.nav-pills.grow-with-tab a.nav-link .features-second .dropcaps-circle {
    margin: 0 auto;
    margin-top: -54px;
    margin-bottom: 16px;
    font-size: 43px;
    font-weight: bold;
    box-shadow: rgb(255 255 255 / 0%) 0px 50px 100px -20px, rgb(0 0 0 / 0%) 0px 30px 60px -30px, rgb(10 37 64 / 18%) 0px -2px 6px 0px inset;
}

.process-line {
    position: absolute;
    left: 53%;
    bottom: 93px;
    transform: translate(-50%, 0);
    text-align: center;
    z-index: -1;
}

section.section-grey.easy-work-process {
    background: #0080000f;
    position: relative;
}

.easy-work-process .nav.nav-pills.grow-with-tab a.nav-link {
    width: 23%;
    text-align: center;
    height: 271px;
    border-radius: 20px !important;
}

.easy-work-process .dropcaps-circle.red2 {
    color: #ff0000;
}

.easy-work-process .nav.nav-pills.grow-with-tab a:nth-child(odd) {
    margin-top: 76px;
}

.easy-work-process .dropcaps-circle.blue {
    color: #1e90ff
}

.easy-work-process .dropcaps-circle.red {
    color: #eed239
}

.easy-work-process .dropcaps-circle.green {
    color: #27b36a
}

.easy-work-process .image-shadow {
    border-radius: 8px;
    box-shadow: 10px 12px 40px rgb(0 0 0 / 20%)
}


/* .................section.main-service-wrapper............ */

section.main-service-wrapper {
    /* background: #0b559b; */
}

section.main-service-wrapper {
    background: #092e68;
}

section.main-service-wrapper .section-title-wrap h2 {
    color: #fff
}

section.main-service-wrapper .section-title-wrap p {
    color: #fff
}

section.main-service-wrapper ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

section.main-service-wrapper ul li {
    list-style: none;
    text-align: center;
    width: 24%;
    border-radius: 8px;
    padding: 15px;
    background: #fff0;
    border: 1px solid #ffffff54;
    /* margin-bottom: 26px; */
}

section.main-service-wrapper ul li .icon-wrap {
    width: 89px;
    height: 89px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 5px solid #2367a6;
    padding: 15px
}

.service-img1 {
    background: url(../images/icon/service/seo.webp);
    height: 49px;
    width: 49px;
    background-size: cover
}

section.main-service-wrapper ul li h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 500;
    margin-top: 14px;
    line-height: 27px;
}

section.main-service-wrapper ul li a {
    /* border: 1px solid #2b61b6; */
    /* padding: 4px 8px; */
    color: #ffffff;
    /* background: #ff7414; */
    /* display: none; */
}

section.main-service-wrapper ul li .icon-wrap span {
    height: 49px;
    width: 49px;
    background-size: cover
}

.service-img1 {
    background: url(../images/seo.webp)
}

.service-img2 {
    background: url(../images/e-commerce-website-development.png)
}

.service-img3 {
    background: url(../images/3.webp)
}

.service-img4 {
    background: url(../images/graphics.png)
}

.service-img5 {
    background: url(../images/5.webp)
}

.service-img6 {
    background: url(../images/website-redesign.png)
}

.service-img7 {
    background: url(../images/7.webp)
}

.service-img8 {
    background: url(../images/google-ads.png)
}

section.speed-up-sec {
    background: #eed239
}

.main-service-wrapper {
    padding: 60px 0px;
}

section.main-service-wrapper .section-title-wrap h2 {
    color: #fff;
}

.section-title-wrap h2 {
    color: #253f50;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
}

section.pack-call-to-action {
    background: #f9cf2f;
    padding: 50px 0px;
}

section.pack-call-to-action h2 {
    color: #000000;
    font-size: 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
}

section.pack-call-to-action p {
    color: #000000
}

.client-review-btn {
    margin: 15px auto 0;
    text-align: center
}

section.pack-call-to-action .text-right .client-review-btn a {
    background: #f9cf2f;
    color: #000000;
    border: 2px solid #135799;
}

section.pack-call-to-action .col-md-1.text-center p {
    color: #000000;
    text-align: center;
    margin-top: 32px;
    font-size: 22px;
    font-weight: 700
}

section.pack-call-to-action .text-left .client-review-btn a {
    background: #135799;
    color: #ffffff;
    border: 2px solid #f4d13f;
    font-weight: 700
}

.client-review-btn a {
    padding: 15px 40px;
    text-transform: uppercase;
    font-size: 18px;
    border-radius: 50px;
    text-align: center;
    display: inline-block;
    width: auto;
    margin: 10px 0 0;
}

.section-tittle-wrap {
    text-align: center;
}

.icon-wrap i {
    color: #ff7415;
    font-size: 36px;
}

/* FAQ Section Wrapper */
.faq-section {
    padding: 80px 0;
    background: var(--light-bg);
}

/* Section Title */
.section-title {
    /* text-align: center; */
    color: var(--primary);
    /* font-size: 34px; */
    font-weight: 700;
    margin-bottom: 10px;
}

/* Accordion Styling */
.faq-section .accordion {
    /* max-width: 900px; */
    margin: 0 auto;
}

.faq-section .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.faq-section .accordion-button {
    background-color: #092e68;
    color: #fff;
    font-weight: 600;
    /* border-radius: 12px; */
    position: relative;
    padding-right: 50px;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 0px !important;
}

/* Arrow Styling – White */
.faq-section .accordion-button::after {
    filter: invert(1);
    /* Makes the default Bootstrap arrow white */
    transition: transform 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

/* Active Accordion */
.faq-section .accordion-button:not(.collapsed) {
    background-color: #ff7415;
    color: #fff;
}

/* Accordion Body */
.faq-section .accordion-body {
    color: #1f2937;
    background: #f5f7fb;
    font-size: 15px;
    line-height: 1.7;
    padding: 20px 25px;
    border-radius: 0 0 12px 12px;
    border-top: 1px solid #e5e7eb;
}

/* Hover Animation on Button */
.faq-section .accordion-button:hover {
    background-color: #0d3d8b;
    color: #fff;
}

/* Smooth fadeUp animation for accordion items */
.faq-section .accordion-item {
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

:root {
    --primary: #092e68;
    --accent: #ff7415;
    --light-bg: #f5f7fb;
    --text-dark: #1f2937;
}

.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), #041a3d);
}

.text-white {
    color: #fff;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.blog-card {
    background: #fff;
    /* padding: 30px; */
    border-radius: 16px;
    /* position: relative; */
    overflow: hidden;
    transition: all 0.4s ease;
    animation: zoomIn 0.8s ease forwards;
}

.blog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
}

.blog-card:hover {
    transform: scale(1.05);
}

.blog-tag {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.blog-card h3 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 26px;
}

.blog-card p {
    color: var(--text-dark);
    margin-bottom: 18px;
}

.blog-card a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gsap-title {
    color: #cfcfcf;
    position: relative;
    overflow: hidden;
}

.gsap-title span {
    display: inline-block;
}

.content-anim {
    opacity: 0;
}

.destination-card {
    border-radius: 9px;
    /* padding: 20px; */
    text-align: center;
    color: #fff;
    transition: transform 0.4s, box-shadow 0.4s;
    overflow: hidden;
}

.destination-card img {
    width: 100%;
    /* margin-bottom: 15px; */
    /* animation: float 3s ease-in-out infinite; */
}

.destination-card h4 {
    font-size: 14px;
    font-weight: 500;
    padding: 8px 10px;
    margin-top: 0;
    background: #092e68;
    margin-bottom: 0;
    color: #fff;
}

.destination-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes float {

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

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



/* ===============================
   ABOUT + ENQUIRY LED TV SECTION
================================= */

.about-enquiry-section {
    position: relative;
    padding: 40px 0;
    background: linear-gradient(135deg, #0b2c5d, #081f3a);
    overflow: hidden;
}

/* LED Glow Effect */
.about-enquiry-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.4), transparent 70%);
    filter: blur(60px);
}

.about-enquiry-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 174, 255, 0.35), transparent 70%);
    filter: blur(60px);
}

/* LEFT CONTENT */
.about-content {
    color: #fff;
    padding-right: 40px;
}

.about-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-content h1 span {
    color: #ff6a00;
}

.about-content .sub-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffb174;
    margin-bottom: 22px;
}

.about-wrapper-2 p {
    font-size: 16px;
    line-height: 1.9;
}

.about-points {
    list-style: none;
    padding: 0;
    margin-top: 28px;
}

.about-points li {
    font-size: 16px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.about-points li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 12px;
    color: #ff6a00;
    background: rgba(255, 106, 0, 0.15);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* RIGHT FORM – LED CARD */
.enquiry-form-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 23px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
    position: relative;
}

/* LED Border Animation */
.enquiry-form-box::before {
    /* content: ""; */
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    /* background: linear-gradient(90deg, #ff6a00, #00aeff, #ff6a00); */
    background-size: 300% 100%;
    z-index: -1;
    animation: ledMove 5s linear infinite;
}

@keyframes ledMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.enquiry-form-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-align: center;
}

/* FORM FIELDS */
.enquiry-form-box input,
.enquiry-form-box select,
.enquiry-form-box textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 11px 16px;
    border-radius: 8px;
    color: #fff;
    font-size: 15px;
    margin-bottom: 16px;
}

.enquiry-form-box input::placeholder,
.enquiry-form-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.enquiry-form-box select {
    color: #fff;
}

.enquiry-form-box option {
    color: #000;
}

/* SUBMIT BUTTON */
.enquiry-form-box button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #ff6a00, #ff8f3f);
    transition: 0.4s ease;
}

.enquiry-form-box button:hover {
    background: linear-gradient(90deg, #00aeff, #0077ff);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 174, 255, 0.5);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .about-points li {
        justify-content: center;
    }
}

.about-enquiry-section {
    background-image: url(../images/inner-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-content2 p {
    color: #fff;
}


/* ===============================
   VISION & MISSION SECTION
================================= */

.vision-mission-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #081f3a, #0b2c5d);
    position: relative;
    overflow: hidden;
}

/* Floating Glow */
.vision-mission-section::before,
.vision-mission-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.4), transparent 70%);
    filter: blur(70px);
}

.vision-mission-section::before {
    top: -120px;
    left: -120px;
}

.vision-mission-section::after {
    bottom: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(0, 174, 255, 0.35), transparent 70%);
}

/* CARD */
.vm-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    padding: 45px;
    border-radius: 18px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

/* LED Border */
.vm-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    /* background: linear-gradient(90deg, #ff6a00, #00aeff, #ff6a00); */
    background-size: 300% 100%;
    z-index: -1;
    animation: ledBorder 6s linear infinite;
}

@keyframes ledBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.vm-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* ICON */
.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #ffffff;
    animation: pulseGlow 2.5s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(255, 106, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 25px rgba(255, 106, 0, 0);
    }

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

/* TEXT */
.vm-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.vm-card p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .vm-card {
        padding: 35px 25px;
    }
}


/* ===============================
   CAREER GUIDANCE SECTION
================================= */

.career-guidance-section {
    padding: 90px 0;
    background: #fbfbfb;
    position: relative;
}

/* LEFT CONTENT */
.career-content {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.career-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0b2c5d;
}

.career-sub {
    font-size: 18px;
    color: #ff6a00;
    margin-bottom: 20px;
}

.career-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

/* RIGHT SIDEBAR */
.career-sidebar {
    position: sticky;
    top: 120px;
    background: #0b2c5d;
    padding: 35px;
    border-radius: 18px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* LED BORDER */
.career-sidebar::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    /* background: linear-gradient(90deg, #ff6a00, #00aeff, #ff6a00); */
    background-size: 300% 100%;
    z-index: -1;
    animation: ledBorder 6s linear infinite;
}

@keyframes ledBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.career-sidebar h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* SERVICE LIST */
.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-list li {
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
}

/* CTA BUTTONS */
.sidebar-cta a {
    display: block;
    text-align: center;
    padding: 13px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.cta-call {
    background: linear-gradient(90deg, #ff6a00, #ff8f3f);
}

.cta-mail {
    background: linear-gradient(90deg, #00aeff, #0077ff);
}

.sidebar-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .career-sidebar {
        position: relative;
        top: auto;
        margin-top: 40px;
    }
}

.service-list li a {
    position: relative;
    padding-left: 26px;
    color: #fff;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.service-list li a::before {
    content: "\f105";
    /* Font Awesome arrow-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6a00;
    font-size: 14px;
}

.service-list li a:hover {
    color: #ffb174;
    padding-left: 32px;
}

.service-list li a:hover {
    color: #ffb174;
    padding-left: 15px;
}

/* ===============================
   INNER PAGE IMAGE DESIGN
================================= */

.inner-pages-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* LED BORDER */
.inner-pages-image::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(90deg, #ff6a00, #00aeff, #ff6a00);
    background-size: 300% 100%;
    z-index: -1;
    animation: ledBorder 6s linear infinite;
}

@keyframes ledBorder {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* IMAGE */
.inner-pages-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    transition: transform 0.6s ease, filter 0.6s ease;
}

/* HOVER EFFECT */
.inner-pages-image:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* GLASS OVERLAY */
.inner-pages-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgb(255 255 255 / 0%));
    opacity: 0;
    transition: 0.4s ease;
}

.inner-pages-image:hover::after {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .inner-pages-image {
        margin-top: 30px;
    }
}


.requirement-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 21px;
}

/* Heading inside table */
.requirement-table thead h4 {
    text-align: left;
    padding: 16px 20px;
    margin: 0;
    background: #1e90ff;
    color: #ffffff;
    font-size: 20px;
}

/* Table header */
.requirement-table thead tr th {
    background: #f5f8fc;
    color: #333;
    font-weight: 600;
    padding: 8px 18px;
    border-bottom: 1px solid #e6e6e6;
    text-align: left;
}

/* Table body */
.requirement-table tbody tr td {
    padding: 8px 18px;
    color: #555;
    border: 1px solid #eeeeee;
    font-size: 15px;
    line-height: 1.6;
}

/* Zebra effect */
.requirement-table tbody tr:nth-child(even) {
    background: #fafafa;
}

/* Hover effect */
.requirement-table tbody tr:hover {
    background: #eef6ff;
    transition: 0.3s ease;
}

/* First column highlight */
.requirement-table tbody tr td:first-child {
    font-weight: 500;
    color: #222;
}

/* Responsive */
@media (max-width: 768px) {
    .requirement-table thead {
        display: none;
    }

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

    .requirement-table tr {
        margin-bottom: 15px;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .requirement-table td {
        padding: 12px 16px;
        position: relative;
    }

    .requirement-table td::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 5px;
        color: #1e90ff;
    }
}

.color-black li a {
    color: #00112c;
    font-weight: 500;
}

.about-content2 p a {
    color: #fff;
}

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

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

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

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

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



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

    .easy-work-process .nav.nav-pills.grow-with-tab a.nav-link {
        width: 100%;
        text-align: center;
        height: auto;
        border-radius: 20px !important;
    }

    .easy-work-process .nav.nav-pills.grow-with-tab {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    section.main-service-wrapper ul li {
        list-style: none;
        text-align: center;
        width: 100%;
        border-radius: 8px;
        padding: 15px;
        background: #fff0;
        border: 1px solid #ffffff54;
        /* margin-bottom: 26px; */
    }

    .process-line {
        display: none;
    }

    .counter-one-shape-1 img {
        width: auto;
        display: none;
    }

    .rotating-text p span {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
    }

    .about-wrapper-2 .about-image-items .about-image-1 .about-image-2 img {
        width: 100%;
        height: 100%;
        display: none;
    }

    .main-service-wrapper {
        display: none !important;
    }

    .header-top {
        display: none;
    }

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

    .services-one {
        display: none;
    }

    .about-wrapper-2 .about-image-items .circle-shape {
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 2;
        width: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .widget {
        padding: 0px 7px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 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: #fe761a;
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 9px 29px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40%;
    font-size: 1.1rem;
}

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

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

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

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

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

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

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

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

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

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


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

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

/* Icon Blinking Animation */
@keyframes softBlink {

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

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

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

/* Text Blinking */
@keyframes blinkText {

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

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

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

@keyframes iconPulse {

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

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

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

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

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

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

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

.inquiry-btn .pinkBg {
    background: #d55702;
}

.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 #092e68;
    /* red border */
    animation: fadeInModal 0.5s ease;
}

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

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


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

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

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

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

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

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

.contact-box i {
    font-size: 11px;
    margin-right: 10px;
    color: #fbfbfb;
    padding: 6px;
    background: #fe761a;
    margin-bottom: 0;
    border-radius: 12px;
}

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

/* Ensure select arrow is visible */
.form-control-select {
    -webkit-appearance: none;
    /* Safari/Chrome */
    -moz-appearance: none;
    /* Firefox */
    appearance: none;
    /* Modern browsers */
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" fill="%23092e68"><polygon points="0,0 12,0 6,6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 12px;
    padding-right: 35px;
    /* Make space for arrow */
}

/* Optional: Hover and focus effects */
.form-control-select:focus {
    border-color: #092e68;
    box-shadow: 0 0 8px rgba(9, 46, 104, 0.3);
}

.getTouchBtn {
    padding: 5px 12px;
    top: 50%;
    right: -70px;
    z-index: 30;
    width: 173px;
    height: 43px;
    display: flex;
    font-size: 17px;
    position: fixed;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    line-height: 0;
    color: #fff;
    font-weight: 600;
    background-color: #00559f;
    border: 1px solid #00559f;
    transform: translateY(-50%) rotate(90deg);
    border-radius: 0 0 10px 10px
}

.getTouchBtn:hover {
    background-color: #ff7414;
    color: #ffffff;
}


.cs-seo-modal {
    border-radius: 12px;
}

.cs-seo-modal .modal-header {
    background: #0b2c4d;
    color: #ffffff;
}

.cs-seo-modal .modal-title {
    font-size: 18px;
    font-weight: 600;
}

.cs-footer-keywords {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.why-choose {
    position: relative;
}

.feature-card i {
    transition: transform 0.3s;
    color: #092e68 !important;
}

.feature-card:hover i {
    transform: scale(1.2);
}

.feature-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}











.study-country-content {
    font-size: 16px;
    line-height: 1.8;
}

.study-country-content .main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.study-country-content .section-title {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    position: relative;
}

.study-country-content .section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #f26a21;
    display: block;
    margin-top: 6px;
}

.custom-table {
    margin: 20px 0;
}

.process-steps ul,
.university-list {
    padding-left: 20px;
}

.process-steps li,
.university-list li {
    margin-bottom: 8px;
    list-style: disc;
}


/* ===== University List ===== */
.university-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
    margin-top: 20px;
    padding-left: 0;
}

.university-list li {
    list-style: none;
    background: #ffffff;
    padding: 14px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    font-weight: 500;
    position: relative;
    padding-left: 40px;
}

.university-list li::before {
    content: "🎓";
    position: absolute;
    left: 14px;
    top: 12px;
}

/* ================= 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);
    height: 100%;
    /* margin-bottom: 10px; */
}

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

.blog-card .blog-content {
    padding: 10px 20px 38px;
}

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

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

.blog-card .blog-read-more {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    padding: 14px 22px;
    background: #ff7414;
    /* margin-top: 20px; */
    border-radius: 11px;
    gap: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* ================= SIDEBAR TITLE ================= */
.blog-right-sidebar .sidebar-title {
    font-size: 25px;
    font-weight: 800;
    color: #00559f;
    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: #00559f;
    border-radius: 2px;
}

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

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

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

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

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

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

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

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

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

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

/* Animated Button (NO gradient) */


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

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

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


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

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

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

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

/* Animated Button (NO gradient) */




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

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

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

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

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

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

/* ================= KEYFRAMES ================= */
.blog-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* Number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.blog-content i {
    margin-left: 6px;
}

#blog-container .col-lg-6 {
    margin-bottom: 50px !important;
}

/*----------------------------------------*/
/*  2.9 Breadcrumb
/*----------------------------------------*/

.theme-breadcrumb-style {
    position: relative;
    padding-top: 245px;
    padding-bottom: 143px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: luminosity;
}

@media (max-width: 575px) {
    .theme-breadcrumb-style {
        padding-top: 140px;
        padding-bottom: 60px;
    }
}

.theme-breadcrumb-overlay {
    position: relative;
}

.theme-breadcrumb-overlay::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background: linear-gradient(90deg, #003973 0%, #003973 30.53%, #003973 43.19%, rgba(0, 57, 115, 0.9) 98.8%);
    opacity: 0.7;
}

.theme-breadcrumb-img {
    position: absolute;
    bottom: 0;
}

@media (min-width: 0) and (max-width: 991px) {
    .theme-breadcrumb-img {
        right: 20px;
    }
}

.theme-breadcrumb-list span {
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
}

.theme-breadcrumb-list span:not(:last-child) {
    color: #ffffff;
    margin-right: 4px;
}

.theme-breadcrumb-list .dvdr i {
    font-size: 14px;
}

.theme-breadcrumb-subtitle {
    color: #ff6600;
    /* theme color */
}

.theme-breadcrumb-title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 5px;
}

@media (max-width: 1199px) {
    .theme-breadcrumb-title {
        font-size: 55px;
    }
}

@media (max-width: 991px) {
    .theme-breadcrumb-title {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .theme-breadcrumb-title {
        font-size: 45px;
    }
}

@media (max-width: 575px) {
    .theme-breadcrumb-title {
        font-size: 35px;
    }
}

.theme-breadcrumb-title>span {
    display: block;
    color: #ff6600;
    /* theme color */
}

.ot-breadcrumb-style {
    position: relative;
    padding-top: 60px;
    padding-bottom: 143px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: luminosity;
}

.ot-breadcrumb-overlay {
    position: relative;
}

.ot-breadcrumb-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 26px;
}

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

.ot-breadcrumb-list span a {
    color: #fff;
}

.ot-breadcrumb-list span {
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
}

.ot-breadcrumb-list span:not(:last-child) {
    color: #fff;
    margin-right: 4px;
}

.ot-breadcrumb-list span {
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
}

.ot-breadcrumb-subtitle {
    color: #ec1c24;
}

.border-radious-24 {
    border-radius: 24px !important;
    overflow: hidden;
}

.bg-white-important {
    background: #fff !important;
}

.product-info2 h5 {
    /* margin-top: 15px; */
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: inherit !important;
    text-align: center;
    margin-bottom: 0;
    padding: 13px 22px;
    background: #ec1c24;
    line-height: 23px;
}

/* RIGHT SIDE */
.mac-contact-form {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mac-form-title {
    font-size: 29px;
    margin-bottom: 25px;
    color: #e60000;
    font-weight: 700;
}

.mac-form-group {
    margin-bottom: 20px;
}

.mac-form-group input,
.mac-form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s ease;
}

.mac-form-group input:focus,
.mac-form-group textarea:focus {
    border-color: #e60000;
    outline: none;
    box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.1);
}

.mac-submit-btn {
    background: #ff7415;
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.mac-submit-btn:hover {
    background: #b30000;
}

.mac-company-profile-new {
    padding: 70px 0;
    background: #ffffff;
}

/* HEADER */
.mac-profile-header {
    text-align: center;
    margin-bottom: 60px;
}

.mac-profile-header h2 {
    font-size: 36px;
    color: #e60000;
    margin-bottom: 10px;
}

.mac-profile-header p {
    color: #555;
    font-size: 16px;
}

/* GRID */
.mac-profile-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* TEXT */
.mac-profile-text {
    flex: 2;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

/* HIGHLIGHT BOX */
.mac-profile-highlight {
    flex: 1;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.mac-highlight-box {
    background: #f8f8f8;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    border-left: 4px solid #e60000;
    transition: 0.3s ease;
}

.mac-highlight-box h3 {
    font-size: 28px;
    color: #e60000;
    margin-bottom: 5px;
}

.mac-highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* SIMPLE ANIMATION */
.mac-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.mac-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 1s forwards;
}

.mac-slide-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideRight 1s forwards;
}

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

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .mac-profile-content {
        flex-direction: column;
    }
}

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

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

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

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



.blog-details-title {
    font-size: 31px;
    font-weight: 700;
    color: #1f1c21;
    line-height: 1.4;
    animation: fadeInUp 1s ease forwards;
    margin-bottom: 6px;
}

.subheading {
    font-size: 20px;
    font-weight: 500;
    color: #d5250f;
    margin-bottom: 10px;
    animation: fadeInLeft 1s ease forwards;
}

.blog-details-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
    text-align: justify;
}

.blog-details-list {
    padding-left: 20px;
    list-style-type: disc;
    color: #444;
}

.blog-details-list li {
    margin-bottom: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.blog-details-list li::before {
    content: "✓";
    position: absolute;
    left: -20px;
    color: #d5250f;
}

.btn-blog-quote {
    display: inline-block;
    background: #d5250f;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 6px;
    transition: all 0.35s ease;
    margin-top: 15px;
}

.btn-blog-quote:hover {
    background: #2d2d72;
    transform: translateY(-2px) scale(1.05);
}

/* ================= ANIMATIONS ================= */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

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

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-15px);
    }

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

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 991px) {
    .blog-details-title {
        font-size: 24px;
    }

    .subheading {
        font-size: 18px;
    }

    .blog-details-card {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .blog-details-title {
        font-size: 20px;
    }

    .subheading {
        font-size: 16px;
    }

    .btn-blog-quote {
        width: 100%;
        text-align: center;
    }
}