    /*==============================
        Google Font
        ==============================*/
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .test {
        color: #E01D21;
        color: #d4af37;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Poppins', sans-serif;
        background: #f7f9fc;
        color: #222;
        overflow-x: hidden;
    }

    a {
        text-decoration: none;
    }

    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    img {
        max-width: 100%;
        display: block;
    }

    /*=========================================
        Navbar Core
        =========================================*/
    .custom-navbar {
        background: rgba(255, 255, 255, .92);
        background-color: #FFF !important;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        padding: 18px 0;
        transition: .4s;
        z-index: 9999;
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    .custom-navbar.nav-scroll {
        background: #ffffff;
        padding: 12px 0;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    /*=========================================
        Logo
        =========================================*/
    .navbar-brand img {
        height: 62px;
        transition: .4s;
    }

    .custom-navbar.nav-scroll .navbar-brand img {
        height: 54px;
    }

    .navbar-brand:hover img {
        transform: scale(1.05);
    }

    /*=========================================
        Nav Links & Animations
        =========================================*/
    .navbar-nav {
        gap: 10px;
    }

    .nav-item {
        position: relative;
    }

    .nav-link {
        color: #1b1b1b !important;
        font-size: 15px;
        font-weight: 600;
        padding: 12px 18px !important;
        transition: .35s;
        position: relative;
    }

    .nav-link::after {
        content: "";
        position: absolute;
        left: 18px;
        bottom: 5px;
        width: 0;
        height: 2px;
        background: #e01d21;
        transition: .35s;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: calc(100% - 36px);
    }

    .nav-link:hover,
    .nav-link.active {
        color: #0b2e59 !important;
    }

    .dropdown-toggle::after {
        display: none;
    }

    .dropdown-toggle i {
        margin-left: 6px;
        display: inline-block;
        transition: transform .35s ease;
    }

    /*=========================================
        Dropdown Menu (Desktop & Mobile Unified)
        =========================================*/
    .dropdown {
        position: relative;
    }

    .dropdown-menu {
        border: none;
        border-radius: 18px;
        padding: 15px 0;
        min-width: 260px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
        z-index: 10000;
        overflow: hidden;
    }

    .dropdown-menu li:not(:last-child) {
        border-bottom: 1px solid #f2f2f2;
    }

    .dropdown-item {
        padding: 12px 24px;
        font-size: 15px;
        font-weight: 500;
        transition: .35s;
    }

    .dropdown-item:hover {
        background: #0b2e59;
        color: #fff;
        padding-left: 35px;
    }

    /* Desktop Hover Dropdown */
    @media (min-width: 1200px) {
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all .35s ease;
            display: block;
        }

        .dropdown:hover>.dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown:hover .bi-chevron-down {
            transform: rotate(180deg);
        }
    }

    /* Mobile Collapsible Dropdown adjustments */
    @media (max-width: 1199.98px) {
        .navbar-collapse {
            background: #ffffff;
            padding: 20px;
            border-radius: 16px;
            margin-top: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            max-height: 80vh;
            overflow-y: auto;
        }

        .nav-link::after {
            display: none;
        }

        .dropdown-menu {
            box-shadow: none;
            background: #f8f9fa;
            border-radius: 12px;
            margin-top: 5px;
            padding: 5px 0;
        }

        .dropdown-menu .dropdown-item {
            padding: 10px 20px;
            font-size: 14px;
        }

        .quote-btn-mobile {
            width: 100%;
            justify-content: center;
            margin-top: 15px;
        }
    }

    /*=========================================
        Get Quote Button
        =========================================*/
    .quote-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        border-radius: 50px;
        background: #0b2e59;
        color: #fff;
        font-weight: 600;
        transition: .35s;
        overflow: hidden;
        position: relative;
    }

    .quote-btn i {
        transition: .35s;
    }

    .quote-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 60%;
        height: 100%;
        background: rgba(255, 255, 255, .35);
        transform: skewX(-25deg);
        transition: .7s;
    }

    .quote-btn:hover::before {
        left: 140%;
    }

    .quote-btn:hover {
        background: #e01d21;
        color: #111;
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(212, 175, 55, .35);
    }

    .quote-btn:hover i {
        transform: translateX(6px);
    }

    /*=========================================
        Navbar Toggler
        =========================================*/
    .navbar-toggler {
        font-size: 28px;
        color: #0b2e59;
        padding: 0;
    }

    button:focus,
    a:focus,
    input:focus,
    textarea:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    ::selection {
        background: #0B2E59;
        color: #fff;
    }

    button:focus,
    a:focus,
    input:focus,
    textarea:focus {

        outline: none !important;
        box-shadow: none !important;

    }

    /*=========================================
Container
=========================================*/

    .container {

        max-width: 1320px;

    }

    /*=========================================
Common Section Padding
=========================================*/
    /* 
section {

    position: relative;
    padding: 100px 0;

} */

    /*=========================================
Common Heading
=========================================*/

    .section-title {

        margin-bottom: 60px;

    }

    .section-title h6 {

        color: #E01D21;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 10px;

    }

    .section-title h2 {

        color: #0B2E59;
        font-size: 42px;
        font-weight: 700;
        line-height: 1.2;

    }

    .section-title p {

        margin-top: 18px;
        color: #666;
        font-size: 16px;
        line-height: 28px;

    }

    /*=========================================
Back To Top
=========================================*/

    .back-top {

        position: fixed;
        right: 25px;
        bottom: 25px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: #0B2E59;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: .35s;
        z-index: 999;

    }

    .back-top.active {

        opacity: 1;
        visibility: visible;
        transform: translateY(0);

    }

    .back-top:hover {

        background: #E01D21;
        color: #111;

    }

    /*=========================================
Simple Loader (Optional)
=========================================*/

    .page-loader {

        position: fixed;
        inset: 0;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 99999;

    }

    .loader-circle {

        width: 60px;
        height: 60px;
        border: 5px solid #ececec;
        border-top-color: #0B2E59;
        border-radius: 50%;
        animation: spin .8s linear infinite;

    }

    @keyframes spin {

        to {

            transform: rotate(360deg);

        }

    }

    /*=========================================
Utility Classes
=========================================*/

    .text-primary-custom {

        color: #0B2E59 !important;

    }

    .text-gold {

        color: #E01D21 !important;

    }

    .bg-primary-custom {

        background: #0B2E59;

    }

    .bg-light-custom {

        background: #f7f9fc;

    }

    .rounded-20 {

        border-radius: 20px;

    }

    .shadow-custom {

        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    }

    /*=========================================
Animation Helper
=========================================*/

    .hover-up {

        transition: .35s;

    }

    .hover-up:hover {

        transform: translateY(-8px);

    }

    .custom-navbar.nav-scroll {

        background: #fff;
        padding: 12px 0;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    }

    .custom-navbar {

        padding: 18px 0;

    }

    /*==================================================
 HERO SECTION
==================================================*/

    .hero-section {
        position: relative;
        overflow: hidden;
        background: #081b33;
        padding: 0;
    }

    .heroSwiper {
        width: 100%;
        height: 100vh;
    }

    .hero-slide {
        position: relative;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        animation: heroZoom 12s linear infinite alternate;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg,
                rgba(6, 18, 39, .90) 0%,
                rgba(6, 18, 39, .82) 35%,
                rgba(6, 18, 39, .55) 60%,
                rgba(6, 18, 39, .25) 100%);
    }

    .hero-slide .container {
        position: relative;
        z-index: 5;
    }

    /*==================================================
 HERO CONTENT
==================================================*/

    .hero-content {
        max-width: 650px;
    }

    .hero-subtitle {

        display: inline-block;
        background: rgba(212, 175, 55, .15);
        border: 1px solid rgba(212, 175, 55, .35);
        background: rgba(212, 55, 55, 0.15);
        border: 1px solid rgba(212, 55, 55, 0.35);
        color: #E01D21;

        padding: 10px 22px;

        border-radius: 40px;

        font-size: 15px;

        font-weight: 600;

        margin-bottom: 22px;

        letter-spacing: .5px;

    }

    .hero-content h1 {

        color: #ffffff;

        font-size: 62px;

        line-height: 1.15;

        font-weight: 800;

        margin-bottom: 22px;

    }

    .hero-content h1 span {

        color: #E01D21;

    }

    .hero-content p {

        color: rgba(255, 255, 255, .82);

        font-size: 18px;

        line-height: 32px;

        margin-bottom: 35px;

        max-width: 620px;

    }

    /*==================================================
 BUTTONS
==================================================*/

    .hero-btns {

        display: flex;

        gap: 18px;

        flex-wrap: wrap;

    }

    .theme-btn {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        padding: 16px 34px;

        background: #E01D21;

        color: #111;

        border-radius: 50px;

        font-weight: 700;

        transition: .4s;

        border: 2px solid #E01D21;

    }

    .theme-btn:hover {

        background: transparent;

        color: #fff;

        transform: translateY(-4px);

    }

    .theme-btn-outline {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        padding: 16px 34px;

        border: 2px solid rgba(255, 255, 255, .45);

        color: #fff;

        border-radius: 50px;

        font-weight: 600;

        transition: .4s;

    }

    .theme-btn-outline:hover {

        background: #ffffff;

        color: #0B2E59;

        transform: translateY(-4px);

    }

    /*==================================================
 HERO IMAGE
==================================================*/

    .hero-image {

        position: relative;

        text-align: center;

    }

    .hero-image img {

        width: 100%;

        max-width: 520px;

        animation: floatImage 4s ease-in-out infinite;

        filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .35));

    }

    /*==================================================
 ANIMATION
==================================================*/

    @keyframes floatImage {

        0% {

            transform: translateY(0);

        }

        50% {

            transform: translateY(-18px);

        }

        100% {

            transform: translateY(0);

        }

    }

    @keyframes heroZoom {

        from {

            transform: scale(1);

        }

        to {

            transform: scale(1.12);

        }

    }

    /*==================================================
SWIPER NAVIGATION
==================================================*/

    .hero-next,
    .hero-prev {

        width: 60px !important;
        height: 60px !important;
        background: rgba(255, 255, 255, .12);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 50%;
        transition: .35s;
    }

    .hero-next::after,
    .hero-prev::after {

        font-size: 20px !important;
        font-weight: 700;
        color: #ffffff;

    }

    .hero-next:hover,
    .hero-prev:hover {

        background: #E01D21;
        transform: translateY(-4px);

    }

    .hero-next:hover::after,
    .hero-prev:hover::after {

        color: #111;

    }

    /*==================================================
PAGINATION
==================================================*/

    .hero-pagination {

        bottom: 35px !important;

    }

    .hero-pagination .swiper-pagination-bullet {

        width: 14px;
        height: 14px;
        background: #ffffff;
        opacity: .45;
        transition: .35s;

    }

    .hero-pagination .swiper-pagination-bullet-active {

        width: 36px;
        border-radius: 30px;
        background: #E01D21;
        opacity: 1;

    }

    /*==================================================
SCROLL INDICATOR
==================================================*/

    .scroll-down {

        position: absolute;
        left: 50%;
        bottom: 61px;
        transform: translateX(-50%);
        z-index: 20;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #ffffff;
        animation: scrollMove 2s infinite;

    }

    .scroll-down span {

        font-size: 13px;
        letter-spacing: 2px;
        text-transform: uppercase;
        margin-bottom: 10px;

    }

    .scroll-down i {

        font-size: 26px;
        color: #E01D21;

    }

    @keyframes scrollMove {

        0%,
        100% {

            transform: translate(-50%, 0);

        }

        50% {

            transform: translate(-50%, 12px);

        }

    }

    /*==================================================
FLOATING SHAPES
==================================================*/

    .shape {

        position: absolute;
        border-radius: 50%;
        filter: blur(2px);
        z-index: 2;

    }

    .shape-one {

        width: 220px;
        height: 220px;
        background: rgba(212, 175, 55, .15);
        top: 8%;
        right: 6%;
        animation: floatShape1 8s ease-in-out infinite;

    }

    .shape-two {

        width: 140px;
        height: 140px;
        background: rgba(255, 255, 255, .08);
        bottom: 18%;
        left: 5%;
        animation: floatShape2 7s ease-in-out infinite;

    }

    .shape-three {

        width: 90px;
        height: 90px;
        background: rgba(212, 175, 55, .25);
        top: 55%;
        right: 28%;
        animation: floatShape3 6s ease-in-out infinite;

    }

    @keyframes floatShape1 {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-25px);
        }

    }

    @keyframes floatShape2 {

        0%,
        100% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(25px);
        }

    }

    @keyframes floatShape3 {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(18px);
        }

    }

    /*==================================================
HERO STATS
==================================================*/

    .hero-stats-wrap {
        background-color: #081b33;

    }

    .hero-stats {
        background: linear-gradient(90deg,
                rgba(6, 18, 39, .90) 0%,
                rgba(6, 18, 39, .82) 35%,
                rgba(6, 18, 39, .55) 60%,
                rgba(6, 18, 39, .25) 100%);
        padding: 30px 0px;
        /* position: absolute;
    bottom: 40px; */
        width: 100%;
        z-index: 15;

    }

    .stat-box {

        background: rgba(255, 255, 255, .10);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, .15);
        border-radius: 18px;
        padding: 28px 20px;
        text-align: center;
        transition: .35s;

    }

    .stat-box:hover {

        transform: translateY(-8px);
        background: rgba(255, 255, 255, .16);

    }

    .stat-box h2 {

        color: #E01D21;
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 8px;

    }

    .stat-box p {

        color: #ffffff;
        margin: 0;
        font-size: 15px;

    }

    /*==================================================
GLASS EFFECT
==================================================*/

    .hero-content {

        position: relative;
        z-index: 5;

    }

    .hero-content::before {

        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        background: rgba(212, 175, 55, .08);
        border-radius: 50%;
        top: -40px;
        left: -40px;
        filter: blur(25px);
        z-index: -1;

    }

    /*=========================================
HERO RESPONSIVE
=========================================*/

    @media (max-width:1399px) {

        .hero-content h1 {

            font-size: 56px;

        }

        .hero-image img {

            max-width: 470px;

        }

    }

    @media (max-width:1199px) {

        .hero-content h1 {

            font-size: 48px;

        }

        .hero-content p {

            font-size: 17px;
            line-height: 30px;

        }

        .hero-image img {

            max-width: 420px;

        }

        .hero-next,
        .hero-prev {

            width: 52px !important;
            height: 52px !important;

        }

    }

    @media (max-width:991px) {

        .heroSwiper,
        .hero-slide {

            height: auto;
            min-height: 100vh;

        }

        .hero-slide {

            padding: 150px 0 120px;

        }

        .hero-content {

            text-align: center;
            margin: auto;

        }

        .hero-btns {

            justify-content: center;

        }

        .hero-image {

            margin-top: 50px;

        }

        .hero-image img {

            max-width: 380px;

            margin: auto;

        }

        .hero-content h1 {

            font-size: 42px;

        }

        .hero-stats {

            position: relative;
            bottom: 0;
            /* margin-top: 70px; */

        }

        .hero-next,
        .hero-prev {

            display: none !important;

        }

    }

    @media (max-width:767px) {

        .hero-slide {

            padding: 130px 0 90px;

        }

        .hero-content h1 {

            font-size: 34px;
            line-height: 1.3;

        }

        .hero-content p {

            font-size: 16px;
            line-height: 28px;

        }

        .hero-subtitle {

            font-size: 13px;
            padding: 8px 18px;

        }

        .theme-btn,
        .theme-btn-outline {

            width: 100%;
            justify-content: center;

        }

        .hero-btns {

            flex-direction: column;

        }

        .hero-image img {

            max-width: 320px;

        }

        .scroll-down {

            display: none;

        }

    }

    @media (max-width:575px) {

        .hero-slide {

            padding: 120px 0 70px;

        }

        .hero-content h1 {

            font-size: 29px;

        }

        .hero-content p {

            font-size: 15px;
            line-height: 26px;

        }

        .hero-image img {

            max-width: 270px;

        }

        .stat-box {

            padding: 20px;

        }

        .stat-box h2 {

            font-size: 30px;

        }

    }

    /*=========================================
Hero Hover Effects
=========================================*/

    .hero-content h1 span {

        position: relative;

    }

    .hero-content h1 span::after {

        content: "";

        position: absolute;

        left: 0;

        bottom: -6px;

        width: 100%;

        height: 3px;

        background: #E01D21;

        border-radius: 20px;

    }

    /*=========================================
Hero Image Glow
=========================================*/

    .hero-image::before {

        content: "";

        position: absolute;

        width: 380px;

        height: 380px;

        background: rgba(212, 175, 55, .12);

        border-radius: 50%;

        left: 50%;

        top: 50%;

        transform: translate(-50%, -50%);

        filter: blur(60px);

        z-index: -1;

    }

    /*=========================================
Glass Card Hover
=========================================*/

    .stat-box {

        overflow: hidden;

    }

    .stat-box::before {

        content: "";

        position: absolute;

        left: -120%;

        top: 0;

        width: 60%;

        height: 100%;

        background: rgba(255, 255, 255, .18);

        transform: skewX(-25deg);

        transition: .8s;

    }

    .stat-box:hover::before {

        left: 150%;

    }

    /*=========================================
Hero Fade Animation
=========================================*/

    .swiper-slide-active .hero-content {

        animation: heroContent .8s ease;

    }

    @keyframes heroContent {

        from {

            opacity: 0;

            transform: translateY(40px);

        }

        to {

            opacity: 1;

            transform: translateY(0);

        }

    }

    /*=========================================
Swiper Cursor
=========================================*/

    .heroSwiper {

        cursor: grab;

    }

    .heroSwiper:active {

        cursor: grabbing;

    }



    /*=========================================
About Section
=========================================*/

    .about-section {

        position: relative;
        padding: 110px 0;
        background: #ffffff;
        overflow: hidden;

    }

    .section-tag {

        display: inline-block;
        background: rgba(11, 46, 89, .08);
        color: #0B2E59;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        padding: 10px 22px;
        border-radius: 50px;
        margin-bottom: 20px;
        text-transform: uppercase;

    }

    .about-content h2 {

        font-size: 46px;
        font-weight: 700;
        color: #0B2E59;
        line-height: 1.3;
        margin-bottom: 25px;

    }

    .about-content p {

        color: #666;
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 20px;

    }

    /*=========================================
About List
=========================================*/

    .about-list {

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-top: 35px;
        margin-bottom: 40px;

    }

    .about-list div {

        display: flex;
        align-items: center;
        font-size: 16px;
        font-weight: 600;
        color: #333;

    }

    .about-list i {

        color: #E01D21;
        font-size: 22px;
        margin-right: 12px;

    }

    /*=========================================
About Image
=========================================*/

    .about-image {

        position: relative;
        text-align: center;

    }

    .about-image img {

        width: 100%;
        border-radius: 25px;
        box-shadow: 0 25px 70px rgba(0, 0, 0, .12);

    }

    /*=========================================
Experience Card
=========================================*/

    .experience-card {

        position: absolute;
        right: -20px;
        bottom: 35px;
        background: #0b2e59c2;
        color: #fff;
        padding: 25px 30px;
        border-radius: 18px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
        animation: floatCard 4s ease-in-out infinite;

    }

    @media(max-width:700px) {
        .experience-card {
            display: none;
        }
    }

    .experience-card h3 {

        font-size: 30px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #E01D21;

    }

    .experience-card span {

        font-size: 15px;
        letter-spacing: .5px;

    }

    /*=========================================
Floating Animation
=========================================*/

    @keyframes floatCard {

        0% {

            transform: translateY(0);

        }

        50% {

            transform: translateY(-10px);

        }

        100% {

            transform: translateY(0);

        }

    }

    /*=========================================
About Button
=========================================*/

    .about-section .theme-btn {

        padding: 16px 35px;
        font-size: 16px;
    }

    /*=========================================
Our Services
=========================================*/

    .services-section {
        position: relative;
        padding: 110px 0;
        background: #f8fafc;
        overflow: hidden;
    }

    .services-section .section-title {
        margin-bottom: 60px;
    }

    .services-section .section-title h2 {
        color: #0B2E59;
        font-size: 46px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .services-section .section-title p {
        max-width: 750px;
        margin: 0 auto;
        color: #666;
        font-size: 17px;
        line-height: 30px;
    }

    /*=========================================
Service Card
=========================================*/

    .service-card {

        position: relative;

        background: #ffffff;

        border-radius: 24px;

        padding: 40px 30px;

        height: 100%;

        transition: .4s;

        overflow: hidden;

        border: 1px solid #edf1f6;

        box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

    }

    .service-card::before {

        content: "";

        position: absolute;

        left: 0;

        top: 0;

        width: 100%;

        height: 5px;

        background: #E01D21;

        transform: scaleX(0);

        transition: .4s;

    }

    .service-card:hover::before {

        transform: scaleX(1);

    }

    .service-card:hover {

        transform: translateY(-12px);

        box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

    }

    /*=========================================
Service Icon
=========================================*/

    .service-icon {

        width: 78px;

        height: 78px;

        border-radius: 18px;

        background: rgba(212, 175, 55, .12);

        display: flex;

        align-items: center;

        justify-content: center;

        margin-bottom: 28px;

        transition: .4s;

    }

    .service-icon i {

        font-size: 34px;

        color: #E01D21;

        transition: .4s;

    }

    .service-card:hover .service-icon {

        background: #E01D21;

        transform: rotateY(180deg);

    }

    .service-card:hover .service-icon i {

        color: #ffffff;

        transform: rotateY(180deg);

    }

    /*=========================================
Content
=========================================*/

    .service-card h4 {

        color: #0B2E59;

        font-size: 24px;

        font-weight: 700;

        margin-bottom: 16px;

    }

    .service-card p {

        color: #666;

        font-size: 16px;

        line-height: 29px;

        margin-bottom: 28px;

    }

    /*=========================================
Read More
=========================================*/

    .service-link {

        display: inline-flex;

        align-items: center;

        gap: 10px;

        color: #0B2E59;

        font-weight: 600;

        transition: .35s;

    }

    .service-link i {

        transition: .35s;

    }

    .service-link:hover {

        color: #E01D21;

    }

    .service-link:hover i {

        transform: translateX(8px);

    }

    /*=========================================
Background Shapes
=========================================*/

    .services-section::before {

        content: "";

        position: absolute;

        width: 350px;

        height: 350px;

        background: rgba(212, 175, 55, .06);

        border-radius: 50%;

        left: -150px;

        top: -120px;

    }

    .services-section::after {

        content: "";

        position: absolute;

        width: 280px;

        height: 280px;

        background: rgba(11, 46, 89, .04);

        border-radius: 50%;

        right: -120px;

        bottom: -120px;

    }

    /*=========================================
Responsive
=========================================*/

    @media(max-width:991px) {

        .services-section {

            padding: 90px 0;

        }

        .services-section .section-title h2 {

            font-size: 38px;

        }

    }

    @media(max-width:767px) {

        .services-section .section-title h2 {

            font-size: 30px;

        }

        .service-card {

            padding: 30px 25px;

        }

        .service-icon {

            width: 70px;

            height: 70px;

        }

        .service-icon i {

            font-size: 30px;

        }

    }

    @media(max-width:575px) {

        .services-section {

            padding: 70px 0;

        }

        .service-card {

            border-radius: 18px;

        }

    }

    /*=========================================
Product Categories
=========================================*/

    .product-section {
        position: relative;
        padding: 110px 0;
        background: #ffffff;
        overflow: hidden;
    }

    .product-section .section-title {
        margin-bottom: 60px;
    }

    .product-section .section-title h2 {
        font-size: 46px;
        font-weight: 700;
        color: #0B2E59;
        margin-bottom: 18px;
    }

    .product-section .section-title p {
        max-width: 760px;
        margin: 0 auto;
        color: #666;
        font-size: 17px;
        line-height: 30px;
    }

    /*=========================================
Product Card
=========================================*/

    .product-card {

        position: relative;

        overflow: hidden;

        border-radius: 22px;

        height: 350px;

        cursor: pointer;

        box-shadow: 0 15px 45px rgba(0, 0, 0, .08);

        transition: .4s;

    }

    .product-card img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        transition: all .7s ease;

    }

    .product-overlay {

        position: absolute;

        inset: 0;

        display: flex;

        flex-direction: column;

        justify-content: flex-end;

        padding: 30px;

        background: linear-gradient(to top,
                rgba(5, 15, 35, .92),
                rgba(5, 15, 35, .45),
                rgba(5, 15, 35, .08));

        transition: .4s;

    }

    .product-overlay span {

        color: #E01D21;

        font-size: 14px;

        font-weight: 600;

        text-transform: uppercase;

        letter-spacing: 1px;

        margin-bottom: 10px;

    }

    .product-overlay h4 {

        color: #fff;

        font-size: 28px;

        font-weight: 700;

        margin-bottom: 18px;

        line-height: 1.3;

    }

    .product-overlay a {

        display: inline-flex;

        align-items: center;

        gap: 10px;

        color: #fff;

        font-weight: 600;

        transition: .35s;

    }

    .product-overlay a i {

        transition: .35s;

    }

    /*=========================================
Hover Effects
=========================================*/

    .product-card:hover {

        transform: translateY(-12px);

        box-shadow: 0 30px 70px rgba(0, 0, 0, .18);

    }

    .product-card:hover img {

        transform: scale(1.12);

    }

    .product-card:hover .product-overlay {

        background: linear-gradient(to top,
                rgba(11, 46, 89, .96),
                rgba(11, 46, 89, .55),
                rgba(11, 46, 89, .15));

    }

    .product-card:hover a {

        color: #E01D21;

    }

    .product-card:hover a i {

        transform: translateX(8px);

    }

    /*=========================================
Golden Border Animation
=========================================*/

    /* .product-card::before{

    content:"";

    position:absolute;

    inset:0;

    border:2px solid #E01D21;

    border-radius:22px;

    opacity:0;

    transform:scale(.92);

    transition:.4s;

    z-index:2;

} */

    .product-card:hover::before {

        opacity: 1;

        transform: scale(1);

    }

    /*=========================================
Background Shapes
=========================================*/

    .product-section::before {

        content: "";

        position: absolute;

        width: 320px;

        height: 320px;

        background: rgba(212, 175, 55, .06);

        border-radius: 50%;

        top: -120px;

        right: -100px;

    }

    .product-section::after {

        content: "";

        position: absolute;

        width: 250px;

        height: 250px;

        background: rgba(11, 46, 89, .05);

        border-radius: 50%;

        left: -80px;

        bottom: -80px;

    }

    /*=========================================
Responsive
=========================================*/

    @media(max-width:991px) {

        .product-section {

            padding: 90px 0;

        }

        .product-section .section-title h2 {

            font-size: 38px;

        }

        .product-card {

            height: 320px;

        }

    }

    @media(max-width:767px) {

        .product-section .section-title h2 {

            font-size: 30px;

        }

        .product-card {

            height: 280px;

        }

        .product-overlay {

            padding: 22px;

        }

        .product-overlay h4 {

            font-size: 22px;

        }

    }

    @media(max-width:575px) {

        .product-section {

            padding: 70px 0;

        }

        .product-card {

            height: 250px;

            border-radius: 18px;

        }

        .product-card::before {

            border-radius: 18px;

        }

    }


    /*=========================================
Industries We Serve
=========================================*/

    .industry-section {
        position: relative;
        padding: 110px 0;
        background: #f8fafc;
        overflow: hidden;
    }

    .industry-section .section-title {
        margin-bottom: 60px;
    }

    .industry-section .section-title h2 {
        font-size: 46px;
        font-weight: 700;
        color: #0B2E59;
        margin-bottom: 18px;
    }

    .industry-section .section-title p {
        max-width: 750px;
        margin: auto;
        color: #666;
        font-size: 17px;
        line-height: 30px;
    }

    /*=========================================
Swiper
=========================================*/

    .industrySwiper {

        padding-bottom: 70px;

    }

    /*=========================================
Industry Card
=========================================*/

    .industry-card {

        position: relative;

        /* height:450px; */

        border-radius: 22px;

        overflow: hidden;

        cursor: pointer;

        transition: .4s;

        box-shadow: 0 20px 55px rgba(0, 0, 0, .08);

    }

    .industry-card img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        transition: all .8s ease;

    }

    /*=========================================
Overlay
=========================================*/

    .industry-overlay {

        position: absolute;

        left: 0;

        bottom: 0;

        width: 100%;

        padding: 35px 25px;

        background: linear-gradient(to top,
                rgba(5, 15, 35, .95),
                rgba(5, 15, 35, .55),
                rgba(5, 15, 35, 0));

        transition: .4s;

    }

    .industry-overlay h4 {

        color: #ffffff;

        font-size: 28px;

        font-weight: 700;

        margin: 0;

        transform: translateY(40px);

        opacity: 0;

        transition: .45s;

    }

    /*=========================================
Hover Effects
=========================================*/

    .industry-card:hover {

        transform: translateY(-10px);

        box-shadow: 0 30px 70px rgba(0, 0, 0, .18);

    }

    .industry-card:hover img {

        transform: scale(1.12);

    }

    .industry-card:hover .industry-overlay h4 {

        transform: translateY(0);

        opacity: 1;

    }

    /*=========================================
Golden Border
=========================================*/

    /* .industry-card::before{

    content:"";

    position:absolute;

    inset:0;

    border:2px solid #E01D21;

    border-radius:22px;

    opacity:0;

    transform:scale(.95);

    transition:.4s;

    z-index:2;

    pointer-events:none;

}

.industry-card:hover::before{

    opacity:1;

    transform:scale(1);

} */

    /*=========================================
Navigation
=========================================*/

    .industry-next,
    .industry-prev {

        width: 58px !important;

        height: 58px !important;

        border-radius: 50%;

        background: #ffffff;

        box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

        transition: .35s;

    }

    .industry-next::after,
    .industry-prev::after {

        font-size: 20px !important;

        color: #0B2E59;

        font-weight: 700;

    }

    .industry-next:hover,
    .industry-prev:hover {

        background: #E01D21;

    }

    .industry-next:hover::after,
    .industry-prev:hover::after {

        color: #ffffff;

    }

    /*=========================================
Pagination
=========================================*/

    .industry-pagination {

        bottom: 0 !important;

    }

    .industry-pagination .swiper-pagination-bullet {

        width: 14px;

        height: 14px;

        opacity: .4;

        background: #0B2E59;

        transition: .35s;

    }

    .industry-pagination .swiper-pagination-bullet-active {

        width: 38px;

        border-radius: 30px;

        background: #E01D21;

        opacity: 1;

    }

    /*=========================================
Background Shapes
=========================================*/

    .industry-section::before {

        content: "";

        position: absolute;

        width: 350px;

        height: 350px;

        border-radius: 50%;

        background: rgba(212, 175, 55, .06);

        left: -120px;

        top: -120px;

    }

    .industry-section::after {

        content: "";

        position: absolute;

        width: 250px;

        height: 250px;

        border-radius: 50%;

        background: rgba(11, 46, 89, .05);

        right: -80px;

        bottom: -80px;

    }

    /*=========================================
Responsive
=========================================*/

    @media(max-width:991px) {

        .industry-section {

            padding: 90px 0;

        }

        .industry-card {

            /* height:380px; */

        }

        .industry-section .section-title h2 {

            font-size: 38px;

        }

    }

    @media(max-width:767px) {

        .industry-card {

            /* height:320px; */

        }

        .industry-overlay {

            padding: 25px 20px;

        }

        .industry-overlay h4 {

            font-size: 22px;

            transform: translateY(0);

            opacity: 1;

        }

        .industry-next,
        .industry-prev {

            display: none !important;

        }

        .industry-section .section-title h2 {

            font-size: 30px;

        }

    }

    @media(max-width:575px) {

        .industry-section {

            padding: 70px 0;

        }

        .industry-card {

            /* height:280px; */

            border-radius: 18px;

        }

        .industry-card::before {

            border-radius: 18px;

        }

    }


    /*=========================================
Why Choose Us
=========================================*/

    .why-section {

        position: relative;

        padding: 110px 0;

        background: linear-gradient(135deg, #0B2E59 0%, #071B35 100%);

        overflow: hidden;

    }

    .why-section::before {

        content: "";

        position: absolute;

        width: 350px;

        height: 350px;

        border-radius: 50%;

        background: rgba(212, 175, 55, .08);

        top: -150px;

        left: -120px;

    }

    .why-section::after {

        content: "";

        position: absolute;

        width: 280px;

        height: 280px;

        border-radius: 50%;

        background: rgba(255, 255, 255, .04);

        right: -100px;

        bottom: -100px;

    }

    /*=========================================
Content
=========================================*/

    .why-content {

        position: relative;

        z-index: 2;

        padding-right: 40px;

    }

    .why-content .section-tag {

        background: rgba(255, 255, 255, .12);

        color: #E01D21;

    }

    .why-content h2 {

        color: #fff;

        font-size: 46px;

        font-weight: 700;

        line-height: 1.3;

        margin: 22px 0;

    }

    .why-content p {

        color: rgba(255, 255, 255, .80);

        font-size: 17px;

        line-height: 30px;

        margin-bottom: 35px;

    }

    /*=========================================
Why Card
=========================================*/

    .why-card {

        position: relative;

        background: rgba(255, 255, 255, .08);

        backdrop-filter: blur(15px);

        border: 1px solid rgba(255, 255, 255, .10);

        border-radius: 22px;

        padding: 35px 30px;

        height: 100%;

        transition: .4s;

        overflow: hidden;

    }

    .why-card::before {

        content: "";

        position: absolute;

        left: 0;

        top: 0;

        width: 100%;

        height: 4px;

        background: #E01D21;

        transform: scaleX(0);

        transition: .4s;

    }

    .why-card:hover::before {

        transform: scaleX(1);

    }

    .why-card:hover {

        transform: translateY(-12px);

        background: rgba(255, 255, 255, .12);

        box-shadow: 0 25px 60px rgba(0, 0, 0, .20);

    }

    .why-card i {

        width: 70px;

        height: 70px;

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 50%;

        background: rgba(212, 175, 55, .15);

        color: #E01D21;

        font-size: 32px;

        margin-bottom: 22px;

        transition: .4s;

    }

    .why-card:hover i {

        background: #E01D21;

        color: #fff;

        transform: rotateY(180deg);

    }

    .why-card h4 {

        color: #fff;

        font-size: 24px;

        font-weight: 700;

        margin-bottom: 15px;

    }

    .why-card p {

        color: rgba(255, 255, 255, .78);

        font-size: 16px;

        line-height: 28px;

        margin: 0;

    }

    /*=========================================
Responsive
=========================================*/

    @media(max-width:991px) {

        .why-section {

            padding: 90px 0;

        }

        .why-content {

            padding-right: 0;

            text-align: center;

            margin-bottom: 50px;

        }

        .why-content h2 {

            font-size: 38px;

        }

    }

    @media(max-width:767px) {

        .why-content h2 {

            font-size: 30px;

        }

        .why-card {

            padding: 30px 25px;

        }

        .why-card h4 {

            font-size: 21px;

        }

    }

    @media(max-width:575px) {

        .why-section {

            padding: 70px 0;

        }

    }




    /*=========================================
Company Documents
=========================================*/

    .documents-section {

        position: relative;

        padding: 110px 0;

        background: #ffffff;

        overflow: hidden;

    }

    .documents-section::before {

        content: "";

        position: absolute;

        width: 350px;

        height: 350px;

        border-radius: 50%;

        background: rgba(212, 175, 55, .05);

        top: -150px;

        right: -120px;

    }

    .documents-section::after {

        content: "";

        position: absolute;

        width: 250px;

        height: 250px;

        border-radius: 50%;

        background: rgba(11, 46, 89, .05);

        left: -100px;

        bottom: -100px;

    }

    /*=========================================
Document Card
=========================================*/

    .document-card {

        position: relative;

        background: #fff;

        border-radius: 22px;

        padding: 35px 30px;

        text-align: center;

        height: 100%;

        border: 1px solid #ececec;

        box-shadow: 0 18px 45px rgba(0, 0, 0, .06);

        transition: .4s;

        overflow: hidden;

    }

    .document-card::before {

        content: "";

        position: absolute;

        left: 0;

        top: 0;

        width: 100%;

        height: 5px;

        background: #E01D21;

        transform: scaleX(0);

        transition: .4s;

    }

    .document-card:hover::before {

        transform: scaleX(1);

    }

    .document-card:hover {

        transform: translateY(-10px);

        box-shadow: 0 28px 65px rgba(0, 0, 0, .12);

    }

    /*=========================================
Document Icon
=========================================*/

    .document-icon {

        width: 85px;

        height: 85px;

        margin: 0 auto 25px;

        border-radius: 50%;

        background: rgba(212, 175, 55, .12);

        display: flex;

        align-items: center;

        justify-content: center;

        transition: .4s;

    }

    .document-icon i {

        font-size: 38px;

        color: #E01D21;

        transition: .4s;

    }

    .document-card:hover .document-icon {

        background: #E01D21;

        transform: rotateY(180deg);

    }

    .document-card:hover .document-icon i {

        color: #fff;

        transform: rotateY(180deg);

    }

    /*=========================================
Content
=========================================*/

    .document-card h4 {

        font-size: 24px;

        font-weight: 700;

        color: #0B2E59;

        margin-bottom: 12px;

    }

    .document-card p {

        color: #666;

        font-size: 15px;

        line-height: 27px;

        margin-bottom: 25px;

        min-height: 54px;

    }

    /*=========================================
Button
=========================================*/

    .document-btn {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        padding: 13px 28px;

        background: #0B2E59;

        color: #fff;

        border-radius: 50px;

        font-weight: 600;

        transition: .35s;

    }

    .document-btn:hover {

        background: #E01D21;

        color: #fff;

        transform: translateY(-3px);

    }

    /*=========================================
Responsive
=========================================*/

    @media(max-width:991px) {

        .documents-section {

            padding: 90px 0;

        }

    }

    @media(max-width:767px) {

        .documents-section {

            padding: 70px 0;

        }

        .document-card {

            padding: 30px 22px;

        }

        .document-card h4 {

            font-size: 21px;

        }

        .document-icon {

            width: 75px;

            height: 75px;

        }

        .document-icon i {

            font-size: 32px;

        }

    }

    /*=========================================
Directors Section
=========================================*/

    .director-section {

        position: relative;

        padding: 110px 0;

        background: #f8fafc;

        overflow: hidden;

    }

    .director-section::before {

        content: "";

        position: absolute;

        width: 350px;

        height: 350px;

        border-radius: 50%;

        background: rgba(212, 175, 55, .05);

        left: -150px;

        top: -120px;

    }

    .director-section::after {

        content: "";

        position: absolute;

        width: 280px;

        height: 280px;

        border-radius: 50%;

        background: rgba(11, 46, 89, .05);

        right: -100px;

        bottom: -100px;

    }

    /*=========================================
Director Card
=========================================*/

    .director-card {

        position: relative;

        background: #fff;

        border-radius: 24px;

        text-align: center;

        padding: 35px 30px;

        border: 1px solid #ececec;

        box-shadow: 0 18px 50px rgba(0, 0, 0, .08);

        transition: .4s;

        overflow: hidden;

        height: 100%;

    }

    .director-card::before {

        content: "";

        position: absolute;

        left: 0;

        top: 0;

        width: 100%;

        height: 5px;

        background: #E01D21;

        transform: scaleX(0);

        transition: .4s;

    }

    .director-card:hover::before {

        transform: scaleX(1);

    }

    .director-card:hover {

        transform: translateY(-12px);

        box-shadow: 0 28px 70px rgba(0, 0, 0, .15);

    }

    /*=========================================
Director Image
=========================================*/

    .director-img {

        width: 170px;

        height: 170px;

        margin: 0 auto 25px;

        border-radius: 50%;

        overflow: hidden;

        border: 5px solid #E01D21;

        transition: .4s;

    }

    .director-img img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        transition: .6s;

    }

    .director-card:hover .director-img {

        transform: scale(1.05);

    }

    .director-card:hover .director-img img {

        transform: scale(1.12);

    }

    /*=========================================
Content
=========================================*/

    .director-content h3 {

        color: #0B2E59;

        font-size: 28px;

        font-weight: 700;

        margin-bottom: 8px;

    }

    .director-content span {

        display: inline-block;

        padding: 8px 20px;

        border-radius: 50px;

        background: rgba(212, 175, 55, .15);

        color: #E01D21;

        font-size: 14px;

        font-weight: 600;

        margin-bottom: 20px;

        text-transform: uppercase;

        letter-spacing: .8px;

    }

    .director-content p {

        color: #666;

        font-size: 16px;

        line-height: 30px;

        margin: 0;

    }

    /*=========================================
Responsive
=========================================*/

    @media(max-width:991px) {

        .director-section {

            padding: 90px 0;

        }

    }

    @media(max-width:767px) {

        .director-section {

            padding: 70px 0;

        }

        .director-img {

            width: 140px;

            height: 140px;

        }

        .director-content h3 {

            font-size: 24px;

        }

        .director-card {

            padding: 30px 22px;

        }

    }


    /*=========================================
Our Process
=========================================*/

    .process-section {

        position: relative;

        padding: 110px 0;

        background: #ffffff;

        overflow: hidden;

    }

    .process-section::before {

        content: "";

        position: absolute;

        width: 350px;

        height: 350px;

        border-radius: 50%;

        background: rgba(212, 175, 55, .05);

        top: -150px;

        left: -120px;

    }

    .process-section::after {

        content: "";

        position: absolute;

        width: 250px;

        height: 250px;

        border-radius: 50%;

        background: rgba(11, 46, 89, .05);

        bottom: -120px;

        right: -100px;

    }

    /*=========================================
Timeline Wrapper
=========================================*/

    .process-wrapper {

        position: relative;

        display: flex;

        justify-content: space-between;

        gap: 30px;

        margin-top: 70px;

    }

    /* Center Line */

    .process-wrapper::before {

        content: "";

        position: absolute;

        left: 8%;

        right: 8%;

        top: 45px;

        height: 4px;

        background: #e6e6e6;

        z-index: 1;

    }

    .process-item {

        position: relative;

        z-index: 2;

        width: 20%;

        text-align: center;

    }

    /*=========================================
Icon
=========================================*/

    .process-icon {

        width: 90px;

        height: 90px;

        margin: auto;

        border-radius: 50%;

        background: #0B2E59;

        display: flex;

        align-items: center;

        justify-content: center;

        transition: .4s;

        border: 5px solid #ffffff;

        box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

    }

    .process-icon i {

        color: #fff;

        font-size: 36px;

        transition: .4s;

    }

    /*=========================================
Number
=========================================*/

    .process-number {

        display: inline-block;

        margin-top: 22px;

        margin-bottom: 15px;

        font-size: 15px;

        font-weight: 700;

        color: #E01D21;

        letter-spacing: 2px;

    }

    /*=========================================
Content
=========================================*/

    .process-item h4 {

        font-size: 22px;

        font-weight: 700;

        color: #0B2E59;

        margin-bottom: 12px;

    }

    .process-item p {

        font-size: 15px;

        color: #666;

        line-height: 28px;

        padding: 0 10px;

    }

    /*=========================================
Hover
=========================================*/

    .process-item:hover .process-icon {

        background: #E01D21;

        transform: translateY(-10px) rotateY(180deg);

    }

    .process-item:hover .process-icon i {

        transform: rotateY(180deg);

    }

    .process-item:hover h4 {

        color: #E01D21;

    }

    /*=========================================
Responsive
=========================================*/

    @media(max-width:991px) {

        .process-wrapper {

            flex-wrap: wrap;

            justify-content: center;

            gap: 40px;

        }

        .process-wrapper::before {

            display: none;

        }

        .process-item {

            width: 45%;

        }

    }

    @media(max-width:767px) {

        .process-section {

            padding: 70px 0;

        }

        .process-item {

            width: 100%;

        }

        .process-icon {

            width: 80px;

            height: 80px;

        }

        .process-icon i {

            font-size: 30px;

        }

    }



    /*=========================================
FAQ Section
=========================================*/

    .faq-section {
        position: relative;
        padding: 110px 0;
        background: #f8fafc;
        overflow: hidden;
    }

    .faq-section::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(212, 175, 55, .05);
        border-radius: 50%;
        top: -150px;
        left: -120px;
    }

    .faq-section::after {
        content: "";
        position: absolute;
        width: 280px;
        height: 280px;
        background: rgba(11, 46, 89, .05);
        border-radius: 50%;
        right: -100px;
        bottom: -100px;
    }

    /*=========================================
Left Content
=========================================*/

    .faq-content {
        padding-right: 40px;
    }

    .faq-content h2 {
        font-size: 46px;
        font-weight: 700;
        color: #0B2E59;
        margin: 20px 0;
        line-height: 1.3;
    }

    .faq-content p {
        color: #666;
        font-size: 17px;
        line-height: 30px;
        margin-bottom: 35px;
    }

    /*=========================================
Accordion
=========================================*/

    .faq-accordion .accordion-item {
        border: none;
        border-radius: 18px !important;
        overflow: hidden;
        margin-bottom: 20px;
        background: #fff;
        box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
        transition: .35s;
    }

    .faq-accordion .accordion-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    }

    /*=========================================
Accordion Button
=========================================*/

    .faq-accordion .accordion-button {

        background: #fff;

        color: #0B2E59;

        font-size: 18px;

        font-weight: 600;

        padding: 22px 28px;

        box-shadow: none;

    }

    .faq-accordion .accordion-button:focus {

        box-shadow: none;

    }

    .faq-accordion .accordion-button:not(.collapsed) {

        background: #0B2E59;

        color: #fff;

    }

    /* Bootstrap icon replace */

    .faq-accordion .accordion-button::after {

        background-image: none;

        content: "+";

        font-size: 26px;

        font-weight: 600;

        color: #E01D21;

        transform: none;

        display: flex;

        align-items: center;

        justify-content: center;

    }

    .faq-accordion .accordion-button:not(.collapsed)::after {

        content: "-";

        color: #fff;

    }

    /*=========================================
Accordion Body
=========================================*/

    .faq-accordion .accordion-body {

        padding: 22px 28px;

        font-size: 16px;

        color: #666;

        line-height: 30px;

        background: #fff;

    }

    /*=========================================
Active Border
=========================================*/

    .faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {

        border-left: 5px solid #E01D21;

    }

    /*=========================================
Responsive
=========================================*/

    @media(max-width:991px) {

        .faq-section {

            padding: 90px 0;

        }

        .faq-content {

            text-align: center;

            padding-right: 0;

            margin-bottom: 50px;

        }

        .faq-content h2 {

            font-size: 38px;

        }

    }

    @media(max-width:767px) {

        .faq-section {

            padding: 70px 0;

        }

        .faq-content h2 {

            font-size: 30px;

        }

        .faq-accordion .accordion-button {

            font-size: 17px;

            padding: 18px 20px;

        }

        .faq-accordion .accordion-body {

            padding: 18px 20px;

        }

    }


    /*=========================================
Footer
=========================================*/

    .footer-area {
        position: relative;
        background: linear-gradient(135deg, #071B35 0%, #0B2E59 60%, #04111F 100%);
        padding: 100px 0 0;
        overflow: hidden;
        color: #fff;
    }

    /*=========================================
Top Border
=========================================*/

    .footer-area::before {

        content: "";

        position: absolute;

        left: 0;

        top: 0;

        width: 100%;

        height: 4px;

        background: linear-gradient(90deg, #E01D21, #FFD76A, #E01D21);

    }

    /*=========================================
Floating Shapes
=========================================*/

    .footer-shape {

        position: absolute;

        border-radius: 50%;

        filter: blur(20px);

        animation: floatShape 8s ease-in-out infinite;

    }

    .shape-one {

        width: 260px;

        height: 260px;

        background: rgba(212, 175, 55, .08);

        top: -100px;

        left: -100px;

    }

    .shape-two {

        width: 320px;

        height: 320px;

        background: rgba(255, 255, 255, .04);

        right: -120px;

        bottom: -120px;

        animation-delay: 2s;

    }

    @keyframes floatShape {

        0%,
        100% {

            transform: translateY(0px);

        }

        50% {

            transform: translateY(25px);

        }

    }

    /*=========================================
Logo
=========================================*/

    .footer-logo {

        max-width: 210px;

        margin-bottom: 25px;

    }

    .footer-text {

        color: rgba(255, 255, 255, .75);

        line-height: 30px;

        margin-bottom: 30px;

        font-size: 16px;

    }

    /*=========================================
Heading
=========================================*/

    .footer-widget h4 {

        color: #fff;

        font-size: 24px;

        font-weight: 700;

        margin-bottom: 30px;

        position: relative;

    }

    .footer-widget h4::after {

        content: "";

        width: 55px;

        height: 3px;

        background: #E01D21;

        position: absolute;

        left: 0;

        bottom: -10px;

    }

    /*=========================================
Links
=========================================*/

    .footer-widget ul {

        margin: 0;

        padding: 0;

        list-style: none;

    }

    .footer-widget ul li {

        margin-bottom: 15px;

    }

    .footer-widget ul li a {

        color: rgba(255, 255, 255, .75);

        text-decoration: none;

        transition: .35s;

        position: relative;

    }

    .footer-widget ul li a::before {

        content: "";

        position: absolute;

        left: 0;

        bottom: -3px;

        width: 0;

        height: 2px;

        background: #E01D21;

        transition: .35s;

    }

    .footer-widget ul li a:hover {

        color: #E01D21;

        padding-left: 8px;

    }

    .footer-widget ul li a:hover::before {

        width: 100%;

    }

    /*=========================================
Contact
=========================================*/

    .footer-contact li {

        display: flex;

        align-items: flex-start;

        gap: 15px;

        margin-bottom: 18px;

    }

    .footer-contact i {

        width: 42px;

        height: 42px;

        border-radius: 50%;

        background: rgba(212, 175, 55, .12);

        color: #E01D21;

        display: flex;

        align-items: center;

        justify-content: center;

        flex-shrink: 0;

        transition: .35s;

    }

    .footer-contact li:hover i {

        background: #E01D21;

        color: #fff;

    }

    .footer-contact span,

    .footer-contact a {

        color: rgba(255, 255, 255, .75);

        line-height: 28px;

        text-decoration: none;

    }

    /*=========================================
Social
=========================================*/

    .footer-social {

        display: flex;

        gap: 15px;

        flex-wrap: wrap;

    }

    .footer-social a {

        width: 48px;

        height: 48px;

        border-radius: 50%;

        background: rgba(255, 255, 255, .08);

        color: #fff;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 18px;

        transition: .4s;

    }

    .footer-social a:hover {

        background: #E01D21;

        color: #fff;

        transform: translateY(-8px) rotate(360deg);

    }

    /*=========================================
Bottom
=========================================*/

    .footer-bottom {

        margin-top: 70px;

        border-top: 1px solid rgba(255, 255, 255, .10);

        padding: 25px 0;

    }

    .footer-bottom p {

        margin: 0;

        color: rgba(255, 255, 255, .65);

    }

    .footer-bottom a {

        color: rgba(255, 255, 255, .70);

        text-decoration: none;

        transition: .35s;

        margin: 0 8px;

    }

    .footer-bottom a:hover {

        color: #E01D21;

    }

    .footer-bottom span {

        color: rgba(255, 255, 255, .35);

    }

    /*=========================================
Responsive
=========================================*/

    @media(max-width:991px) {

        .footer-area {

            padding-top: 80px;

        }

        .footer-widget {

            margin-bottom: 15px;

        }

    }

    @media(max-width:767px) {

        .footer-area {

            text-align: center;

        }

        .footer-widget h4::after {

            left: 50%;

            transform: translateX(-50%);

        }

        .footer-social {

            justify-content: center;

        }

        .footer-contact li {

            flex-direction: column;

            align-items: center;

            text-align: center;

        }

        .footer-bottom {

            text-align: center;

        }

        .footer-bottom .text-md-end {

            margin-top: 12px;

        }

    }


    /*=========================================
Page Banner / Breadcrumb
=========================================*/

    .page-banner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 320px;
        padding: 80px 0 20px;
        padding-bottom: 0px !important;
        overflow: hidden;
        background: url("../banner/page-banner.png") no-repeat center center;
        background-size: cover;
        z-index: 1;
    }

    /* Dark Overlay */
    .page-banner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg,
                rgba(4, 17, 31, 0.92),
                rgba(11, 46, 89, 0.88),
                rgba(4, 17, 31, 0.92));
        z-index: 1;
    }

    .banner-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
    }

    /* Animated Glow */
    .page-banner::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.10);
        top: -180px;
        right: -150px;
        filter: blur(30px);
        animation: bannerGlow 8s ease-in-out infinite;
        z-index: 2;
        pointer-events: none;
    }

    @keyframes bannerGlow {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(35px);
        }
    }

    /* Floating Shapes */
    .banner-shape {
        position: absolute;
        border-radius: 50%;
        z-index: 2;
        filter: blur(20px);
        pointer-events: none;
    }

    .shape-one {
        width: 220px;
        height: 220px;
        left: -80px;
        bottom: -80px;
        background: rgba(255, 255, 255, 0.05);
        animation: floatShape 10s infinite ease-in-out;
    }

    .shape-two {
        width: 180px;
        height: 180px;
        right: 80px;
        top: 40px;
        background: rgba(212, 175, 55, 0.08);
        animation: floatShape 8s infinite ease-in-out;
    }

    @keyframes floatShape {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    /* Container & Main Content (z-index increased) */
    .page-banner .container {
        position: relative;
        z-index: 10;
    }

    .page-banner-content {
        position: relative;
        z-index: 10;
        text-align: center;
    }

    .page-banner-content .section-tag {
        display: inline-block;
        padding: 10px 24px;
        border-radius: 50px;
        background: rgba(212, 175, 55, 0.18);
        color: #E01D21;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .page-banner-content h1 {
        color: #ffffff !important;
        font-size: 62px;
        font-size: 50px;
        font-weight: 700;
        margin-bottom: 25px;
        line-height: 1.2;
        text-shadow: 0 5px 20px rgba(0, 0, 0, 0.35);
    }

    /* Breadcrumb */
    .page-banner .breadcrumb {
        justify-content: center;
        margin: 0;
        padding: 0;
        background: none;
    }

    .page-banner .breadcrumb-item {
        font-size: 17px;
        color: #ffffff;
    }

    .page-banner .breadcrumb-item a {
        color: #ffffff;
        text-decoration: none;
        transition: 0.35s;
    }

    .page-banner .breadcrumb-item a:hover {
        color: #E01D21;
    }

    .page-banner .breadcrumb-item.active {
        color: #E01D21;
    }

    .page-banner .breadcrumb-item+.breadcrumb-item::before {
        color: #E01D21;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .page-banner {
            min-height: 360px;
            padding: 150px 0 90px;
        }

        .page-banner-content h1 {
            font-size: 46px;
        }
    }

    @media (max-width: 767px) {
        .page-banner {
            min-height: 300px;
            padding: 120px 0 70px;
        }

        .page-banner-content h1 {
            font-size: 34px;
        }

        .page-banner .breadcrumb-item {
            font-size: 15px;
        }
    }

    /*==================================================
CONTACT INFO SECTION
==================================================*/

    .contact-info-section {

        position: relative;

        padding: 110px 0;

        background: #ffffff;

        overflow: hidden;

    }

    .contact-info-section::before {

        content: "";

        position: absolute;

        width: 320px;

        height: 320px;

        background: rgba(212, 175, 55, .05);

        border-radius: 50%;

        top: -120px;

        left: -120px;

    }

    .contact-info-section::after {

        content: "";

        position: absolute;

        width: 260px;

        height: 260px;

        background: rgba(11, 46, 89, .05);

        border-radius: 50%;

        right: -100px;

        bottom: -100px;

    }


    /*==================================================
CONTACT CARD
==================================================*/

    .contact-info-card {

        position: relative;

        background: #fff;

        border-radius: 22px;

        padding: 40px 30px;

        text-align: center;

        height: 100%;

        border: 1px solid #ececec;

        transition: .4s;

        overflow: hidden;

        box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

    }

    .contact-info-card::before {

        content: "";

        position: absolute;

        left: 0;

        top: 0;

        width: 100%;

        height: 5px;

        background: #E01D21;

        transform: scaleX(0);

        transition: .4s;

    }

    .contact-info-card:hover::before {

        transform: scaleX(1);

    }

    .contact-info-card:hover {

        transform: translateY(-10px);

        box-shadow: 0 30px 60px rgba(0, 0, 0, .15);

    }


    /*==================================================
ICON
==================================================*/

    .contact-icon {

        width: 85px;

        height: 85px;

        margin: 0 auto 25px;

        border-radius: 50%;

        background: rgba(212, 175, 55, .12);

        display: flex;

        align-items: center;

        justify-content: center;

        transition: .4s;

    }

    .contact-icon i {

        font-size: 34px;

        color: #E01D21;

        transition: .4s;

    }

    .contact-info-card:hover .contact-icon {

        background: #E01D21;

        transform: rotateY(180deg);

    }

    .contact-info-card:hover .contact-icon i {

        color: #fff;

        transform: rotateY(180deg);

    }


    /*==================================================
CONTENT
==================================================*/

    .contact-info-card h4 {

        color: #0B2E59;

        font-size: 24px;

        font-weight: 700;

        margin-bottom: 15px;

    }

    .contact-info-card p {

        color: #666;

        line-height: 30px;

        margin: 0;

    }

    .contact-info-card a {

        display: block;

        color: #666;

        text-decoration: none;

        margin-bottom: 8px;

        transition: .35s;

        word-break: break-word;

    }

    .contact-info-card a:hover {

        color: #E01D21;

    }


    /*==================================================
CONTACT FORM SECTION
==================================================*/

    .contact-form-section {

        padding-bottom: 110px;

        background: #f8fafc;

    }

    .contact-form-wrapper {

        background: #fff;

        border-radius: 25px;

        padding: 45px;

        box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

    }

    .contact-form-wrapper h2 {

        color: #0B2E59;

        font-size: 42px;

        font-weight: 700;

        margin: 18px 0;

    }

    .contact-form-wrapper p {

        color: #666;

        margin-bottom: 35px;

        line-height: 30px;

    }


    /*==================================================
FORM
==================================================*/

    .contact-form-wrapper .form-control {

        height: 60px;

        border-radius: 14px;

        border: 1px solid #d9d9d9;

        box-shadow: none;

        padding: 15px 20px;

        font-size: 15px;

        transition: .35s;

    }

    .contact-form-wrapper textarea.form-control {

        height: 180px;

        resize: none;

        padding-top: 18px;

    }

    .contact-form-wrapper .form-control:focus {

        border-color: #E01D21;

        box-shadow: 0 0 0 4px rgba(212, 175, 55, .15);

    }

    .contact-form-wrapper button {

        border: none;

        cursor: pointer;

    }

    /*==================================================
GOOGLE MAP
==================================================*/

    .contact-map-wrapper {

        background: #fff;

        padding: 45px;

        border-radius: 25px;

        height: 100%;

        box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

    }

    .map-header h2 {

        color: #0B2E59;

        font-size: 42px;

        font-weight: 700;

        margin: 18px 0;

    }

    .map-header p {

        color: #666;

        line-height: 30px;

        margin-bottom: 30px;

    }

    .map-box {

        overflow: hidden;

        border-radius: 20px;

        border: 4px solid #fff;

        box-shadow: 0 15px 40px rgba(0, 0, 0, .12);

    }

    .map-box iframe {

        width: 100%;

        height: 500px;

        border: 0;

        display: block;

    }

    /*==================================================
WHY CONTACT US
==================================================*/

    .why-contact-section {

        position: relative;

        padding: 110px 0;

        background: #ffffff;

        overflow: hidden;

    }

    .why-contact-section::before {

        content: "";

        position: absolute;

        width: 300px;

        height: 300px;

        border-radius: 50%;

        background: rgba(212, 175, 55, .05);

        top: -120px;

        right: -120px;

    }

    .why-contact-section::after {

        content: "";

        position: absolute;

        width: 250px;

        height: 250px;

        border-radius: 50%;

        background: rgba(11, 46, 89, .05);

        bottom: -100px;

        left: -100px;

    }

    .why-contact-card {

        background: #fff;

        border-radius: 22px;

        padding: 40px 30px;

        text-align: center;

        height: 100%;

        border: 1px solid #ececec;

        transition: .4s;

        box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

        position: relative;

        overflow: hidden;

    }

    .why-contact-card::before {

        content: "";

        position: absolute;

        top: 0;

        left: 0;

        width: 100%;

        height: 5px;

        background: #E01D21;

        transform: scaleX(0);

        transition: .4s;

    }

    .why-contact-card:hover::before {

        transform: scaleX(1);

    }

    .why-contact-card:hover {

        transform: translateY(-10px);

        box-shadow: 0 28px 60px rgba(0, 0, 0, .15);

    }

    .why-contact-icon {

        width: 85px;

        height: 85px;

        margin: 0 auto 25px;

        border-radius: 50%;

        background: rgba(212, 175, 55, .12);

        display: flex;

        align-items: center;

        justify-content: center;

        transition: .4s;

    }

    .why-contact-icon i {

        font-size: 34px;

        color: #E01D21;

        transition: .4s;

    }

    .why-contact-card:hover .why-contact-icon {

        background: #E01D21;

        transform: rotateY(180deg);

    }

    .why-contact-card:hover .why-contact-icon i {

        color: #fff;

        transform: rotateY(180deg);

    }

    .why-contact-card h4 {

        color: #0B2E59;

        font-size: 24px;

        font-weight: 700;

        margin-bottom: 15px;

    }

    .why-contact-card p {

        color: #666;

        line-height: 30px;

        margin: 0;

    }

    /*==================================================
RESPONSIVE
==================================================*/

    @media(max-width:991px) {

        .contact-info-section {

            padding: 90px 0;

        }

        .contact-form-section {

            padding-bottom: 90px;

        }

        .why-contact-section {

            padding: 90px 0;

        }

        .contact-form-wrapper,

        .contact-map-wrapper {

            padding: 35px;

        }

        .contact-form-wrapper h2,

        .map-header h2 {

            font-size: 34px;

        }

        .map-box iframe {

            height: 420px;

        }

    }

    @media(max-width:767px) {

        .contact-info-section,

        .why-contact-section {

            padding: 70px 0;

        }

        .contact-form-section {

            padding-bottom: 70px;

        }

        .contact-form-wrapper,

        .contact-map-wrapper {

            padding: 25px;

        }

        .contact-form-wrapper h2,

        .map-header h2 {

            font-size: 28px;

        }

        .contact-icon,

        .why-contact-icon {

            width: 70px;

            height: 70px;

        }

        .contact-icon i,

        .why-contact-icon i {

            font-size: 28px;

        }

        .contact-info-card,

        .why-contact-card {

            padding: 30px 22px;

        }

        .map-box iframe {

            height: 320px;

        }

    }

    /* services rush css */

    /*==========================================================
Healthcare Product Supply Page
==========================================================*/


    /*==========================================================
SERVICE DETAIL SECTION
==========================================================*/

    .service-detail-section {

        position: relative;

        background: #ffffff;

        overflow: hidden;
        padding: 50px 0px;
    }


    .service-detail-content {

        padding-right: 35px;

    }


    .service-detail-content .section-tag {

        display: inline-block;

        font-size: 13px;

        font-weight: 700;

        letter-spacing: 2px;

        color: #E01D21;

        margin-bottom: 15px;

    }


    .service-detail-content h2 {

        color: #0B2E59;

        font-size: 44px;

        line-height: 1.2;

        font-weight: 700;

        margin-bottom: 25px;

    }


    .service-detail-content p {

        color: #666;

        font-size: 16px;

        line-height: 30px;

        margin-bottom: 18px;

    }


    /*==========================================================
SERVICE DETAIL IMAGE
==========================================================*/

    .service-detail-image {

        position: relative;

    }


    .image-wrapper {

        position: relative;

        overflow: hidden;

        border-radius: 28px;

        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);

    }


    .image-wrapper::before {

        content: "";

        position: absolute;

        inset: 0;

        background: linear-gradient(135deg,
                rgba(11, 46, 89, 0.08),
                rgba(212, 175, 55, 0.12));

        z-index: 1;

        pointer-events: none;

    }


    .image-wrapper img {

        width: 100%;

        height: 520px;

        object-fit: cover;

        display: block;

        transition: transform 0.7s ease;

    }


    .image-wrapper:hover img {

        transform: scale(1.06);

    }


    /*==========================================================
IMAGE BADGE
==========================================================*/

    .image-badge {

        position: absolute;

        left: 25px;

        bottom: 25px;

        z-index: 3;

        display: flex;

        align-items: center;

        gap: 12px;

        background: rgba(11, 46, 89, 0.94);

        color: #ffffff;

        padding: 14px 20px;

        border-radius: 50px;

        backdrop-filter: blur(10px);

        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);

    }


    .image-badge i {

        width: 38px;

        height: 38px;

        border-radius: 50%;

        background: #E01D21;

        color: #ffffff;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 18px;

    }


    .image-badge span {

        font-size: 14px;

        font-weight: 600;

    }


    /*==========================================================
SERVICE HIGHLIGHTS
==========================================================*/

    .service-highlights-section {

        position: relative;

        background: #f7f9fc;

        overflow: hidden;
        padding: 50px 0px 100px;

    }


    .service-highlights-section::before {

        content: "";

        position: absolute;

        width: 350px;

        height: 350px;

        border-radius: 50%;

        background: rgba(212, 175, 55, 0.05);

        top: -180px;

        right: -150px;

    }


    .service-highlights-section::after {

        content: "";

        position: absolute;

        width: 280px;

        height: 280px;

        border-radius: 50%;

        background: rgba(11, 46, 89, 0.04);

        bottom: -150px;

        left: -130px;

    }


    /*==========================================================
SERVICE FEATURE CARD
==========================================================*/

    .service-feature-card {

        position: relative;

        height: 100%;

        background: #ffffff;

        padding: 40px 32px;

        border-radius: 22px;

        border: 1px solid #e9edf2;

        text-align: center;

        overflow: hidden;

        transition: all 0.4s ease;

        box-shadow: 0 15px 40px rgba(11, 46, 89, 0.06);

    }


    .service-feature-card::before {

        content: "";

        position: absolute;

        top: 0;

        left: 0;

        width: 100%;

        height: 4px;

        background: linear-gradient(90deg,
                #0B2E59,
                #E01D21);

        transform: scaleX(0);

        transform-origin: left;

        transition: transform 0.4s ease;

    }


    .service-feature-card:hover {

        transform: translateY(-10px);

        border-color: rgba(212, 175, 55, 0.35);

        box-shadow: 0 25px 55px rgba(11, 46, 89, 0.12);

    }


    .service-feature-card:hover::before {

        transform: scaleX(1);

    }


    /*==========================================================
FEATURE ICON
==========================================================*/

    .feature-icon {

        width: 80px;

        height: 80px;

        margin: 0 auto 25px;

        border-radius: 50%;

        display: flex;

        align-items: center;

        justify-content: center;

        background: rgba(212, 175, 55, 0.10);

        color: #E01D21;

        transition: all 0.4s ease;

    }


    .feature-icon i {

        font-size: 32px;

    }


    .service-feature-card:hover .feature-icon {

        background: #0B2E59;

        color: #ffffff;

        transform: translateY(-5px);

    }


    .service-feature-card h4 {

        color: #0B2E59;

        font-size: 22px;

        font-weight: 700;

        margin-bottom: 15px;

    }


    .service-feature-card p {

        color: #666;

        line-height: 28px;

        margin: 0;

        font-size: 15px;

    }


    /*==========================================================
SERVICE PROCESS SECTION
==========================================================*/

    .service-process-section {

        background: #ffffff;

        position: relative;

    }


    .service-process-list {

        position: relative;

    }


    .service-process-list::before {

        content: "";

        position: absolute;

        left: 27px;

        top: 20px;

        bottom: 20px;

        width: 2px;

        background: #e5e9ee;

    }


    .service-process-item {

        position: relative;

        display: flex;

        align-items: flex-start;

        gap: 25px;

        padding: 0 0 35px;

    }


    .service-process-item:last-child {

        padding-bottom: 0;

    }


    /*==========================================================
PROCESS NUMBER
==========================================================*/

    .process-number {

        position: relative;

        z-index: 2;

        flex: 0 0 56px;

        width: 56px;

        height: 56px;

        border-radius: 50%;

        background: #0B2E59;

        color: #ffffff;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 14px;

        font-weight: 700;

        border: 5px solid #ffffff;

        box-shadow: 0 5px 20px rgba(11, 46, 89, 0.18);

        transition: all 0.4s ease;

    }


    .service-process-item:hover .process-number {

        background: #E01D21;

        transform: scale(1.08);

    }


    .service-process-item h4 {

        color: #0B2E59;

        font-size: 21px;

        font-weight: 700;

        margin: 5px 0 8px;

    }


    .service-process-item p {

        color: #666;

        line-height: 28px;

        font-size: 15px;

        margin: 0;

    }


    /*==========================================================
CTA SECTION
==========================================================*/

    .service-cta-section {

        padding: 0 0 100px;

        background: #ffffff;

    }


    .service-cta {

        position: relative;

        overflow: hidden;

        padding: 55px 60px;

        border-radius: 28px;

        background:
            linear-gradient(135deg,
                #0B2E59 0%,
                #123F72 60%,
                #0B2E59 100%);

        box-shadow: 0 25px 60px rgba(11, 46, 89, 0.20);

    }


    .service-cta::before {

        content: "";

        position: absolute;

        width: 300px;

        height: 300px;

        border-radius: 50%;

        border: 1px solid rgba(255, 255, 255, 0.12);

        right: -100px;

        top: -150px;

    }


    .service-cta::after {

        content: "";

        position: absolute;

        width: 220px;

        height: 220px;

        border-radius: 50%;

        background: rgba(212, 175, 55, 0.10);

        left: -100px;

        bottom: -130px;

    }


    .service-cta .section-tag {

        position: relative;

        z-index: 2;

        display: inline-block;

        color: #E01D21;

        font-size: 13px;

        letter-spacing: 2px;

        font-weight: 700;

        margin-bottom: 12px;

    }


    .service-cta h2 {

        position: relative;

        z-index: 2;

        color: #ffffff;

        font-size: 38px;

        line-height: 1.25;

        font-weight: 700;

        margin-bottom: 15px;

    }


    .service-cta p {

        position: relative;

        z-index: 2;

        color: rgba(255, 255, 255, 0.78);

        font-size: 16px;

        line-height: 28px;

        margin: 0;

        max-width: 700px;

    }


    /*==========================================================
CTA BUTTON
==========================================================*/

    .service-cta .theme-btn {

        position: relative;

        z-index: 5;

        display: inline-flex;

        align-items: center;

        gap: 10px;

        padding: 15px 28px;

        background: #E01D21;

        color: #ffffff;

        border-radius: 50px;

        text-decoration: none;

        font-size: 15px;

        font-weight: 600;

        transition: all 0.4s ease;

    }


    .service-cta .theme-btn i {

        transition: transform 0.3s ease;

    }


    .service-cta .theme-btn:hover {

        background: #ffffff;

        color: #0B2E59;

        transform: translateY(-3px);

    }


    .service-cta .theme-btn:hover i {

        transform: translateX(5px);

    }


    /*==========================================================
RESPONSIVE
==========================================================*/

    @media (max-width: 991px) {

        .service-detail-content {

            padding-right: 0;

        }


        .service-detail-content h2 {

            font-size: 36px;

        }


        .image-wrapper img {

            height: 450px;

        }


        .service-cta {

            padding: 45px 40px;

        }


        .service-cta h2 {

            font-size: 32px;

        }

    }


    @media (max-width: 767px) {

        .service-detail-content h2 {

            font-size: 30px;

        }


        .service-detail-content p {

            font-size: 15px;

            line-height: 27px;

        }


        .image-wrapper {

            border-radius: 20px;

        }


        .image-wrapper img {

            height: 350px;

        }


        .image-badge {

            left: 15px;

            bottom: 15px;

            padding: 10px 15px;

        }


        .image-badge i {

            width: 32px;

            height: 32px;

            font-size: 15px;

        }


        .image-badge span {

            font-size: 12px;

        }


        .service-feature-card {

            padding: 32px 25px;

        }


        .service-process-list::before {

            left: 24px;

        }


        .process-number {

            flex-basis: 50px;

            width: 50px;

            height: 50px;

            font-size: 13px;

        }


        .service-process-item {

            gap: 18px;

        }


        .service-process-item h4 {

            font-size: 19px;

        }


        .service-cta {

            padding: 40px 25px;

            border-radius: 22px;

        }


        .service-cta h2 {

            font-size: 27px;

        }


        .service-cta p {

            font-size: 14px;

            line-height: 25px;

        }


        .service-cta .theme-btn {

            margin-top: 25px;

            padding: 13px 24px;

        }

    }


    @media (max-width: 575px) {

        .image-wrapper img {

            height: 300px;

        }


        .service-process-item {

            gap: 15px;

        }


        .service-process-list::before {

            left: 22px;

        }


        .process-number {

            flex-basis: 46px;

            width: 46px;

            height: 46px;

            border-width: 4px;

        }

    }










    /* =========================================
   Floating Contact Buttons Start
========================================= */

    .floating-contact {
        position: fixed;
        right: 25px;
        bottom: 85px;
        z-index: 9999;

        display: flex;
        flex-direction: column;
        gap: 12px;

        /* display: none; */
        /* hide */
    }


    /* Common Button */

    .floating-contact a {
        width: 55px;
        height: 55px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        color: #ffffff;
        text-decoration: none;

        font-size: 22px;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);

        transition: all 0.35s ease;

        position: relative;
    }


    /* WhatsApp */

    .whatsapp-btn {
        background: #25D366;
    }

    .whatsapp-btn:hover {
        color: #ffffff;

        transform: translateY(-5px) scale(1.08);

        box-shadow:
            0 12px 30px rgba(37, 211, 102, 0.40);
    }


    /* Call */

    .call-btn {
        background: #0F6FFF;
    }

    .call-btn:hover {
        color: #ffffff;

        transform: translateY(-5px) scale(1.08);

        box-shadow:
            0 12px 30px rgba(15, 111, 255, 0.40);
    }


    /* Icon */

    .floating-contact i {
        line-height: 1;
    }


    /* Pulse Effect */

    .whatsapp-btn::before,
    .call-btn::before {

        content: "";

        position: absolute;

        inset: 0;

        border-radius: 50%;

        animation: floatingPulse 2s infinite;

        z-index: -1;
    }


    .whatsapp-btn::before {
        background: rgba(37, 211, 102, 0.35);
    }


    .call-btn::before {
        background: rgba(15, 111, 255, 0.35);
    }


    @keyframes floatingPulse {

        0% {
            transform: scale(1);
            opacity: 0.7;
        }

        70% {
            transform: scale(1.5);
            opacity: 0;
        }

        100% {
            transform: scale(1.5);
            opacity: 0;
        }

    }


    /* Tooltip */

    .floating-contact a::after {

        position: absolute;

        right: 68px;

        top: 50%;

        transform: translateY(-50%);

        padding: 7px 12px;

        border-radius: 6px;

        background: #111111;

        color: #ffffff;

        font-size: 12px;

        font-weight: 500;

        white-space: nowrap;

        opacity: 0;

        visibility: hidden;

        transition: all 0.3s ease;

        pointer-events: none;
    }


    /* WhatsApp Tooltip */

    .whatsapp-btn::after {
        content: "Chat on WhatsApp";
    }


    /* Call Tooltip */

    .call-btn::after {
        content: "Call Us";
    }


    /* Tooltip Hover */

    .floating-contact a:hover::after {

        opacity: 1;

        visibility: visible;

        right: 70px;
    }


    /* =========================================
   Responsive
========================================= */

    @media (max-width: 767px) {

        .floating-contact {

            right: 26px;

            bottom: 85px;

            gap: 10px;

        }


        .floating-contact a {

            width: 48px;

            height: 48px;

            font-size: 19px;

        }


        .floating-contact a::after {

            display: none;

        }

    }


    /* =========================================
   Floating Contact Buttons End
========================================= */


    /* =========================================
   PRODUCT INTRODUCTION START
========================================= */

    .product-intro-section {
        background: #ffffff;
        position: relative;
        padding: 50px 0px;
    }


    .product-intro-section .section-title {
        max-width: 850px;
        margin: 0 auto;
    }


    .product-intro-section .section-tag {
        display: inline-block;

        font-size: 13px;
        font-weight: 700;

        letter-spacing: 2px;

        color: #0f6fff;

        margin-bottom: 12px;
    }


    .product-intro-section h2 {
        font-size: 42px;
        font-weight: 700;

        line-height: 1.2;

        color: #111111;

        margin-bottom: 18px;
    }


    .product-intro-section p {
        max-width: 760px;

        margin: 0 auto;

        font-size: 16px;
        line-height: 1.8;

        color: #6c6c6c;
    }


    /* =========================================
   PRODUCT LIST SECTION
========================================= */

    .product-list-section {
        background: #f7f9fc;
        padding: 50px 0px;
    }


    .product-inner-card {

        height: 100%;

        background: #ffffff;

        border-radius: 18px;

        overflow: hidden;

        border: 1px solid #e9edf3;

        box-shadow:
            0 10px 35px rgba(15, 23, 42, 0.07);

        transition:
            transform 0.4s ease,
            box-shadow 0.4s ease;

        position: relative;
    }


    .product-inner-card:hover {

        transform: translateY(-8px);

        box-shadow:
            0 20px 50px rgba(15, 23, 42, 0.13);
    }


    /* =========================================
   PRODUCT IMAGE
========================================= */

    .product-inner-image {

        height: 245px;

        overflow: hidden;

        position: relative;

        background: #eef2f7;
    }


    .product-inner-image::after {

        content: "";

        position: absolute;

        inset: 0;

        background:
            linear-gradient(to top,
                rgba(0, 0, 0, 0.10),
                transparent 45%);

        pointer-events: none;
    }


    .product-inner-image img {

        width: 100%;
        height: 100%;

        object-fit: cover;

        display: block;

        transition:
            transform 0.6s ease;
    }


    .product-inner-card:hover .product-inner-image img {

        transform: scale(1.07);
    }


    /* =========================================
   PRODUCT CONTENT
========================================= */

    .product-inner-content {

        padding: 25px 25px 28px;

    }


    .product-inner-content span {

        display: inline-block;

        font-size: 11px;

        font-weight: 700;

        letter-spacing: 1.5px;

        text-transform: uppercase;

        color: #0f6fff;

        margin-bottom: 9px;
    }


    .product-inner-content h4 {

        font-size: 21px;

        font-weight: 700;

        line-height: 1.35;

        color: #151515;

        margin-bottom: 11px;
    }


    .product-inner-content p {

        font-size: 14px;

        line-height: 1.7;

        color: #727272;

        margin: 0;
    }


    /* =========================================
   TOP ACCENT
========================================= */

    .product-inner-card::before {

        content: "";

        position: absolute;

        top: 0;
        left: 0;

        width: 0;
        height: 3px;

        background: #0f6fff;

        transition:
            width 0.4s ease;

        z-index: 2;
    }


    .product-inner-card:hover::before {

        width: 100%;
    }


    /* =========================================
   RESPONSIVE
========================================= */

    @media (max-width: 991px) {

        .product-intro-section h2 {

            font-size: 36px;

        }

        .product-inner-image {

            height: 230px;

        }

    }


    @media (max-width: 767px) {

        .product-intro-section h2 {

            font-size: 30px;

        }

        .product-intro-section p {

            font-size: 15px;

        }

        .product-inner-image {

            height: 220px;

        }

        .product-inner-content {

            padding: 22px;

        }

    }


    @media (max-width: 575px) {

        .product-intro-section h2 {

            font-size: 27px;

        }

        .product-inner-image {

            height: 210px;

        }

    }


    /* =========================================
   PRODUCT PAGE END
========================================= */

    .footer-widget img {
        background-color: #FFF;
        padding: 10px;
    }

    /*=========================================
Our Team Section
==========================================*/

    .team-section {
        background: #f7f9fc;
    }


    /* Team Card */

    .team-card {
        position: relative;
        background: #ffffff;
        border-radius: 18px;
        overflow: hidden;
        border: 1px solid rgba(11, 46, 89, 0.08);
        box-shadow: 0 15px 45px rgba(11, 46, 89, 0.08);
        transition: all 0.4s ease;
    }

    .team-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(11, 46, 89, 0.16);
    }


    /* Team Image */

    .team-image {
        position: relative;
        height: 380px;
        overflow: hidden;
        background: #eef2f6;
    }

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .team-card:hover .team-image img {
        transform: scale(1.06);
    }


    /* Image Overlay */

    .team-image::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,
                rgba(11, 46, 89, 0.65),
                transparent 55%);
        opacity: 0;
        transition: all 0.4s ease;
    }

    .team-card:hover .team-image::after {
        opacity: 1;
    }


    /* Social Icons */

    .team-social {
        position: absolute;
        right: 20px;
        bottom: 20px;
        z-index: 2;

        display: flex;
        gap: 8px;

        opacity: 0;
        transform: translateY(15px);

        transition: all 0.4s ease;
    }

    .team-card:hover .team-social {
        opacity: 1;
        transform: translateY(0);
    }

    .team-social a {
        width: 40px;
        height: 40px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background: #ffffff;
        color: #0b2e59;

        text-decoration: none;

        transition: all 0.3s ease;
    }

    .team-social a:hover {
        background: #e01d21;
        color: #ffffff;
    }


    /* Team Content */

    .team-content {
        padding: 28px 25px;
        text-align: center;
    }

    .team-content span {
        display: inline-block;

        font-size: 12px;
        font-weight: 700;

        letter-spacing: 1.5px;
        text-transform: uppercase;

        color: #e01d21;

        margin-bottom: 8px;
    }

    .team-content h4 {
        margin: 0 0 6px;

        font-size: 22px;
        font-weight: 700;

        color: #0b2e59;
    }

    .team-content p {
        margin: 0;

        font-size: 14px;
        color: #777777;
    }


    /*=========================================
Responsive
==========================================*/

    @media (max-width: 767px) {

        .team-image {
            height: 330px;
        }

        .team-content {
            padding: 24px 20px;
        }

        .team-content h4 {
            font-size: 20px;
        }

    }


    /*=========================================
Mission & Vision Section
==========================================*/

    .mission-vision-section {
        background: #f7f9fc;
    }


    /* Card */

    .mission-vision-card {
        position: relative;

        height: 100%;

        padding: 50px 45px;

        background: #ffffff;

        border-radius: 20px;

        border: 1px solid rgba(11, 46, 89, 0.08);

        box-shadow: 0 15px 45px rgba(11, 46, 89, 0.08);

        overflow: hidden;

        transition: all 0.4s ease;
    }

    .mission-vision-card::before {
        content: "";

        position: absolute;

        top: 0;
        left: 0;

        width: 100%;
        height: 4px;

        background: #e01d21;

        transform: scaleX(0);

        transform-origin: left;

        transition: transform 0.4s ease;
    }

    .mission-vision-card:hover::before {
        transform: scaleX(1);
    }

    .mission-vision-card:hover {
        transform: translateY(-8px);

        box-shadow: 0 25px 60px rgba(11, 46, 89, 0.14);
    }


    /* Icon */

    .mission-vision-icon {
        width: 70px;
        height: 70px;

        display: flex;
        align-items: center;
        justify-content: center;

        margin-bottom: 25px;

        border-radius: 16px;

        background: #0b2e59;

        color: #e01d21;

        font-size: 30px;

        transition: all 0.4s ease;
    }

    .mission-vision-card:hover .mission-vision-icon {
        background: #e01d21;
        color: #0b2e59;

        transform: rotateY(180deg);
    }


    /* Tag */

    .mission-vision-card .section-tag {
        display: inline-block;

        margin-bottom: 10px;

        color: #e01d21;

        font-size: 13px;

        font-weight: 700;

        letter-spacing: 1.5px;
    }


    /* Heading */

    .mission-vision-card h2 {
        margin-bottom: 18px;

        color: #0b2e59;

        font-size: 32px;

        font-weight: 700;
    }


    /* Paragraph */

    .mission-vision-card p {
        margin: 0;

        color: #666666;

        font-size: 16px;

        line-height: 1.8;
    }


    /*=========================================
Responsive
==========================================*/

    @media (max-width: 767px) {

        .mission-vision-card {
            padding: 35px 25px;
        }

        .mission-vision-card h2 {
            font-size: 26px;
        }

        .mission-vision-card p {
            font-size: 15px;
        }

    }


    /*=========================================
Gallery Section
==========================================*/

    .gallery-section {
        position: relative;
        background: #f8fafc;
        overflow: hidden;
    }


    /* Gallery Item */

    .gallery-item {
        position: relative;
        height: 300px;
        overflow: hidden;
        border-radius: 18px;
        background: #ffffff;
        box-shadow: 0 12px 35px rgba(11, 46, 89, 0.10);
        transition: all 0.4s ease;
    }


    /* Image */

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease;
    }


    /* Hover Image */

    .gallery-item:hover img {
        transform: scale(1.08);
    }


    /* Overlay */

    .gallery-overlay {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-end;
        padding: 25px;
        background: linear-gradient(to top,
                rgba(11, 46, 89, 0.92),
                rgba(11, 46, 89, 0.20),
                transparent);
        opacity: 0;
        transition: all 0.4s ease;
    }


    /* Show Overlay */

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }


    /* Gallery Content */

    .gallery-content {
        transform: translateY(20px);
        transition: all 0.4s ease;
    }


    .gallery-item:hover .gallery-content {
        transform: translateY(0);
    }


    /* Plus Icon */

    .gallery-content i {
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        border-radius: 50%;
        background: #d4af37;
        color: #0b2e59;
        font-size: 20px;
        transition: all 0.3s ease;
    }


    .gallery-content i:hover {
        background: #ffffff;
        transform: rotate(90deg);
    }


    /* Gallery Title */

    .gallery-content h5 {
        margin: 0;
        color: #ffffff;
        font-size: 20px;
        font-weight: 600;
    }


    /* Card Hover */

    .gallery-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(11, 46, 89, 0.18);
    }


    /*=========================================
Gallery Lightbox Link
==========================================*/

    .gallery-lightbox {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
    }


    /*=========================================
Responsive
==========================================*/

    @media (max-width: 991px) {

        .gallery-item {
            height: 280px;
        }

    }


    @media (max-width: 767px) {

        .gallery-item {
            height: 260px;
        }

        .gallery-overlay {
            opacity: 1;
            padding: 20px;
        }

        .gallery-content {
            transform: translateY(0);
        }

        .gallery-content h5 {
            font-size: 18px;
        }

        .gallery-content i {
            width: 42px;
            height: 42px;
            font-size: 18px;
        }

    }


    @media (max-width: 575px) {

        .gallery-item {
            height: 240px;
            border-radius: 14px;
        }

    }

    @media(max-width:767px) {
        .f-logo {
            display: flex;
            justify-content: center;
        }
    }