@import url('https://fonts.googleapis.com/css2?family=Mulish:ital@0;1&display=swap');

:root {
    --default-font: "Mulish", sans-serif;
    --heading-font: "Mulish", sans-serif;
    --nav-font: "Mulish", sans-serif;
    --nani-primary: #1b4389;
    --bs-secondary-color: #212529;
    --nani-secondary: #3eb3c4;
    --base: #0e44b1;
    --background-color: #ffffff;
    --default-color: #212529;
    --heading-color: #32353a;
    --accent-color: #5d57f4;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --nav-color: #3a3939;
    --nav-hover-color: var(--nani-primary);
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #3a3939;
    --nav-dropdown-hover-color: var(--nani-primary);
    scroll-behavior: smooth;
}

.light-background {
    --background-color: #f4f4f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body,
html {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font) !important;
    /* font-family: var(--default-font); */
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background: #0d1264;
    padding: 0;
    z-index: 999;
    position: sticky;
    top: 0;
}

    .header::before {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        height: 54%;
        width: calc(100% - 10%);
        background: #ffffff;
        z-index: -1;
        /* transition: all 0.3s ease-in-out; */
    }

    .header.scrolled {
        border-bottom: 3px solid #ffffff;
    }

    .header .navbar {
        padding: 0px;
        width: 100%;
    }


    .header .logo h1 {
        font-size: 24px;
        margin: 0;
        font-weight: 600;
        color: var(--heading-color);
    }

    .header .logo span {
        color: var(--accent-color);
        font-size: 24px;
        font-weight: 600;
        padding-left: 3px;
    }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        color: var(--contrast-color);
        background: #0091ed;
        font-size: 14px;
        padding: 8px 26px;
        margin: 0;
        border-radius: 4px;
        transition: 0.3s;
    }

        .header .btn-getstarted:hover,
        .header .btn-getstarted:focus:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.9);
}

.lang-btn {
    background: #ffcc00;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 500;
}

    .lang-btn:hover {
        background: #e6b800;
    }

.language-popup {
    border-radius: 10px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .calc-tabs {
        gap: 20px;
    }

    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: center;
        }

        .navmenu li {
            position: static;
        }

        .navmenu a,
        .navmenu a:focus {
            color: #ffffff;
            padding: 20px 9px;
            font-size: 15px;
            font-family: var(--nav-font);
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
            letter-spacing: 0.2px;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu li:last-child a {
            padding-right: 0;
        }

        .navmenu li:hover > a,
        .navmenu .active,
        .navmenu .active:focus {
            color: #ffffff;
        }

        .navmenu .dropdown .dropdown-content {
            margin: 0;
            padding: 10px 0;
            background: #ffffff;
            display: block;
            position: absolute;
            visibility: hidden;
            left: 0%;
            /* top: 134%; */
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            border-radius: 0 0 20px 20px;
            margin: auto;
            height: auto;
            top: 115%;
        }

            .navmenu .dropdown .dropdown-content ul {
                display: block;
                justify-content: space-around;
            }

        .navmenu .dropdown ul li {
            min-width: 200px;
        }

        .navmenu .dropdown ul a {
            padding: 10px 20px;
            font-size: 15px;
            text-transform: none;
            color: var(--nav-dropdown-color);
        }

            .navmenu .dropdown ul a i {
                font-size: 12px;
            }

            .navmenu .dropdown ul a:hover,
            .navmenu .dropdown ul .active:hover,
            .navmenu .dropdown ul li:hover > a {
                color: var(--nav-dropdown-hover-color);
            }

        .navmenu .dropdown:hover > .dropdown-content {
            opacity: 1;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

        .navmenu a,
        .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover,
                .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover,
            .navmenu .active,
            .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i,
                .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/




/* PAGE CONTENT */

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: #0091ed;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .scroll-top i {
        font-size: 24px;
        color: var(--contrast-color);
        line-height: 0;
    }

    .scroll-top:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
        color: var(--contrast-color);
    }

    .scroll-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    position: relative;
    padding-top: 80px;
}

    .page-title .heading {
        padding: 80px 0;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .page-title .heading h1 {
            font-size: 38px;
            font-weight: 700;
        }

    .page-title nav {
        background-color: color-mix(in srgb, var(--default-color), transparent 96%);
        padding: 20px 0;
    }

        .page-title nav ol {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 16px;
            font-weight: 400;
        }

            .page-title nav ol li + li {
                padding-left: 10px;
            }

                .page-title nav ol li + li::before {
                    content: "/";
                    display: inline-block;
                    padding-right: 10px;
                    color: color-mix(in srgb, var(--default-color), transparent 70%);
                }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 40px 0;
    /* scroll-margin-top: 98px; */
    overflow: clip;
}



/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 15px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

        .section-title h2:before {
            content: "";
            position: absolute;
            display: block;
            width: 160px;
            height: 1px;
            background: color-mix(in srgb, var(--default-color), transparent 60%);
            left: 0;
            right: 0;
            bottom: 1px;
            margin: auto;
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .section-title p {
        margin-bottom: 0;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(0deg, #fcfeff, #094bc6 60%);
    padding: 20px 0;
}

    .hero .badge-wrapper .d-inline-flex {
        padding: 0.5rem 0.75rem;
        border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .hero .badge-wrapper .d-inline-flex .icon-circle {
            height: 24px;
            width: 24px;
            border-radius: 50%;
            background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .hero .badge-wrapper .d-inline-flex .icon-circle i {
                font-size: 0.875rem;
                color: var(--heading-color);
            }

        .hero .badge-wrapper .d-inline-flex .badge-text {
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--heading-color);
        }

@media (max-width: 767.98px) {
    .hero .badge-wrapper .d-inline-flex .badge-text {
        font-size: 0.75rem;
    }
}

.hero .hero-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
    .hero .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero .hero-title {
        font-size: 1.75rem;
    }
}

.hero .hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--default-color);
    margin-bottom: 2rem;
}

@media (max-width: 767.98px) {
    .hero .hero-description {
        font-size: 1rem;
    }
}

.hero .cta-wrapper .btn-primary {
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

    .hero .cta-wrapper .btn-primary:hover {
        background-color: color-mix(in srgb, var(--accent-color), #000 10%);
        border-color: color-mix(in srgb, var(--accent-color), #000 10%);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

.hero .hero-image {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

    .hero .hero-image:hover {
        transform: translateY(-5px);
    }

    .hero .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

.hero .feature-boxes {
    margin-top: 3rem;
}

    .hero .feature-boxes .feature-box {
        padding: 1.5rem;
        border-radius: 12px;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
        height: 100%;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

@media (min-width: 576px) {
    .hero .feature-boxes .feature-box {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
}

.hero .feature-boxes .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.hero .feature-boxes .feature-box .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .hero .feature-boxes .feature-box .feature-icon i {
        font-size: 1.75rem;
        color: var(--heading-color);
    }

.hero .feature-boxes .feature-box .feature-content {
    flex: 1;
}

    .hero .feature-boxes .feature-box .feature-content .feature-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--heading-color);
        margin-bottom: 0.75rem;
    }

    .hero .feature-boxes .feature-box .feature-content .feature-text {
        font-size: 0.95rem;
        color: var(--default-color);
        margin-bottom: 0;
    }

@media (max-width: 767.98px) {
    .hero .feature-boxes .feature-box {
        padding: 1.25rem;
    }

        .hero .feature-boxes .feature-box .feature-icon {
            width: 50px;
            height: 50px;
        }

            .hero .feature-boxes .feature-box .feature-icon i {
                font-size: 1.5rem;
            }

        .hero .feature-boxes .feature-box .feature-title {
            font-size: 1.125rem;
        }

        .hero .feature-boxes .feature-box .feature-text {
            font-size: 0.875rem;
        }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .who-we-are {
    text-transform: uppercase;
    margin-bottom: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
    font-size: 2rem;
    font-weight: 700;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

    .about .content ul li {
        padding-bottom: 10px;
    }

    .about .content ul i {
        font-size: 1.25rem;
        margin-right: 4px;
        color: var(--accent-color);
    }

.about .content p:last-child {
    margin-bottom: 0;
}

.about .content .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .about .content .read-more i {
        font-size: 18px;
        margin-left: 5px;
        line-height: 0;
        transition: 0.3s;
    }

    .about .content .read-more:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
        padding-right: 19px;
    }

        .about .content .read-more:hover i {
            margin-left: 10px;
        }

.about .about-images img {
    border-radius: 10px;
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work .process-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.how-we-work .process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 2.5rem;
}

    .how-we-work .process-item:last-child {
        padding-bottom: 0;
    }

    .how-we-work .process-item .content {
        width: 100%;
        position: relative;
        background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
        border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
        border-radius: 20px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .how-we-work .process-item .content:hover {
            transform: translateX(10px);
            box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
        }

            .how-we-work .process-item .content:hover .step-icon {
                background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
                transform: rotate(10deg);
            }

            .how-we-work .process-item .content:hover .step-number {
                transform: translateX(-5px);
                opacity: 1;
            }

    .how-we-work .process-item .step-number {
        position: absolute;
        left: -30px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 4rem;
        font-weight: 800;
        color: var(--accent-color);
        font-family: var(--heading-font);
        line-height: 1;
        opacity: 0.2;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .how-we-work .process-item .card-body {
        padding: 2rem;
        display: flex;
        align-items: flex-start;
        gap: 2rem;
    }

    .how-we-work .process-item .step-icon {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        background-color: var(--accent-color);
        border-radius: 15px;
        display: grid;
        place-items: center;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
    }

        .how-we-work .process-item .step-icon i {
            font-size: 2rem;
            color: var(--contrast-color);
        }

    .how-we-work .process-item .step-content h3 {
        color: var(--heading-color);
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    .how-we-work .process-item .step-content p {
        color: color-mix(in srgb, var(--default-color), transparent 25%);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    .how-we-work .process-item .arrow {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        margin: 1rem 0;
        width: 100px;
        height: 100px;
        opacity: 0.7;
    }

@media (max-width: 767.98px) {
    .how-we-work .process-container {
        padding: 1rem 0;
    }

    .how-we-work .process-item {
        padding-bottom: 2rem;
    }

        .how-we-work .process-item .content {
            border-width: 1px;
        }

            .how-we-work .process-item .content:hover {
                transform: translateY(-5px);
            }

        .how-we-work .process-item .step-number {
            font-size: 3rem;
            left: 50%;
            top: -1.5rem;
            transform: translateX(-50%);
        }

            .how-we-work .process-item .step-number:hover {
                transform: translateX(-50%);
            }

        .how-we-work .process-item .card-body {
            padding: 2rem 1.5rem 1.5rem;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 1rem;
        }

        .how-we-work .process-item .step-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
        }

            .how-we-work .process-item .step-icon i {
                font-size: 1.75rem;
            }

        .how-we-work .process-item .step-content h3 {
            font-size: 1.25rem;
        }

        .how-we-work .process-item .arrow {
            height: 60px;
            margin: 0.5rem 0;
        }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    display: flex;
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

    .services .service-item::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background-color: var(--accent-color);
        transform: scaleY(0);
        transform-origin: bottom;
        transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .services .service-item:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transform: translateY(-5px);
    }

        .services .service-item:hover::before {
            transform: scaleY(1);
        }

        .services .service-item:hover .service-icon {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            transform: rotateY(180deg);
        }

            .services .service-item:hover .service-icon i {
                transform: rotateY(180deg);
            }

        .services .service-item:hover .service-link i {
            transform: translateX(5px);
        }

.services .service-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    transition: all 0.5s ease;
}

    .services .service-icon i {
        font-size: 2rem;
        transition: transform 0.5s ease;
    }

.services .service-content {
    flex-grow: 1;
}

    .services .service-content h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        font-weight: 700;
        color: var(--heading-color);
    }

    .services .service-content p {
        margin-bottom: 1.25rem;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

.services .service-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .services .service-link span {
        margin-right: 0.5rem;
    }

    .services .service-link i {
        transition: transform 0.3s ease;
    }

    .services .service-link:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
    }

@media (max-width: 767.98px) {
    .services .service-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .services .service-icon {
        width: 60px;
        height: 60px;
        margin-right: 1rem;
    }

        .services .service-icon i {
            font-size: 1.5rem;
        }

    .services .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .services .service-content p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 575.98px) {
    .services .service-item {
        flex-direction: column;
        text-align: center;
    }

        .services .service-item::before {
            width: 100%;
            height: 4px;
            transform: scaleX(0);
            transform-origin: left;
        }

        .services .service-item:hover::before {
            transform: scaleX(1);
        }

    .services .service-icon {
        margin-right: 0;
        margin-bottom: 1.25rem;
    }

    .services .service-link {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Services Alt Section
--------------------------------------------------------------*/
.services-alt .content-block {
    margin-right: 30px;
}

    .services-alt .content-block .subtitle {
        font-size: 0.9rem;
        text-transform: uppercase;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
    }

    .services-alt .content-block .title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .services-alt .content-block .description {
        margin-bottom: 1.8rem;
        font-size: 1rem;
        line-height: 1.7;
    }

    .services-alt .content-block .button-wrapper {
        margin-top: 2rem;
    }

        .services-alt .content-block .button-wrapper .btn {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-weight: 500;
        }

            .services-alt .content-block .button-wrapper .btn:hover {
                background-color: color-mix(in srgb, var(--accent-color), #000 10%);
                transform: translateY(-3px);
            }

@media (max-width: 992px) {
    .services-alt .content-block {
        margin-right: 0;
        margin-bottom: 3rem;
    }
}

.services-alt .services-list .service-item {
    position: relative;
    padding: 2.5rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

    .services-alt .services-list .service-item:first-child {
        padding-top: 0;
    }

    .services-alt .services-list .service-item:hover .service-icon {
        background-color: var(--accent-color);
    }

        .services-alt .services-list .service-item:hover .service-icon i {
            color: var(--contrast-color);
        }

    .services-alt .services-list .service-item:hover .service-content h4 a {
        color: var(--accent-color);
    }

.services-alt .services-list .service-icon {
    height: 5rem;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

    .services-alt .services-list .service-icon i {
        font-size: 2.5rem;
        color: var(--accent-color);
        transition: all 0.3s ease;
    }

.services-alt .services-list .service-content {
    position: relative;
    width: 100%;
}

    .services-alt .services-list .service-content h4 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }

        .services-alt .services-list .service-content h4 a {
            color: var(--heading-color);
            transition: color 0.3s;
        }

            .services-alt .services-list .service-content h4 a:hover {
                color: var(--accent-color);
            }

    .services-alt .services-list .service-content p {
        margin-bottom: 0.25rem;
        font-size: 0.95rem;
    }

@media (max-width: 768px) {
    .services-alt .services-list .service-item {
        padding: 2rem 0;
    }

    .services-alt .services-list .service-icon {
        height: 4rem;
        width: 4rem;
        margin-right: 1rem;
    }

        .services-alt .services-list .service-icon i {
            font-size: 2rem;
        }

    .services-alt .services-list .service-content h4 {
        font-size: 1.25rem;
    }

    .services-alt .services-list .service-content p {
        font-size: 0.9rem;
    }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 .cta-image-wrapper {
    position: relative;
}

    .call-to-action-2 .cta-image-wrapper img {
        position: relative;
        z-index: 2;
        transform: scaleX(-1);
    }

    .call-to-action-2 .cta-image-wrapper .cta-pattern {
        position: absolute;
        width: 80%;
        height: 80%;
        bottom: -30px;
        right: -30px;
        background: repeating-linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 98%), color-mix(in srgb, var(--accent-color), transparent 98%) 10px, color-mix(in srgb, var(--accent-color), transparent 95%) 10px, color-mix(in srgb, var(--accent-color), transparent 95%) 20px);
        z-index: 1;
        border-radius: 1rem;
    }

.call-to-action-2 .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .call-to-action-2 .cta-content h2 {
        font-size: 2rem;
    }
}

.call-to-action-2 .cta-content .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.call-to-action-2 .cta-features {
    margin-bottom: 1.5rem;
}

    .call-to-action-2 .cta-features .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
    }

        .call-to-action-2 .cta-features .feature-item i {
            color: var(--accent-color);
            font-size: 1.25rem;
            margin-right: 0.75rem;
        }

        .call-to-action-2 .cta-features .feature-item span {
            font-size: 1rem;
        }

.call-to-action-2 .cta-action .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
}

    .call-to-action-2 .cta-action .btn-primary:hover {
        background-color: color-mix(in srgb, var(--accent-color), black 10%);
        border-color: color-mix(in srgb, var(--accent-color), black 10%);
    }

.call-to-action-2 .cta-action .btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
}

    .call-to-action-2 .cta-action .btn-outline-primary:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

@media (max-width: 768px) {
    .call-to-action-2 .cta-image-wrapper {
        margin-bottom: 2rem;
    }

        .call-to-action-2 .cta-image-wrapper .cta-pattern {
            width: 70%;
            height: 70%;
            bottom: -20px;
            right: -20px;
        }

    .call-to-action-2 .cta-action {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .call-to-action-2 .cta-action .btn {
            width: 100%;
        }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters-container {
    margin-bottom: 40px;
}

.portfolio .portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
}

    .portfolio .portfolio-filters li {
        font-size: 15px;
        font-weight: 500;
        padding: 8px 20px;
        cursor: pointer;
        border-radius: 4px;
        background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
        color: var(--default-color);
        transition: all 0.3s ease-in-out;
    }

        .portfolio .portfolio-filters li:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
            color: var(--accent-color);
            transform: translateY(-2px);
        }

        .portfolio .portfolio-filters li.filter-active {
            background-color: var(--accent-color);
            color: var(--contrast-color);
        }

.portfolio .portfolio-card {
    background-color: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
}

    .portfolio .portfolio-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
    }

        .portfolio .portfolio-card:hover .portfolio-overlay {
            opacity: 1;
            visibility: visible;
        }

            .portfolio .portfolio-card:hover .portfolio-overlay .portfolio-actions {
                transform: translateY(0);
            }

    .portfolio .portfolio-card .portfolio-image {
        position: relative;
        overflow: hidden;
        aspect-ratio: 16/10;
    }

        .portfolio .portfolio-card .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease-in-out;
        }

    .portfolio .portfolio-card .portfolio-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        display: flex;
        align-items: flex-end;
        padding: 20px;
    }

        .portfolio .portfolio-card .portfolio-overlay .portfolio-actions {
            transform: translateY(20px);
            transition: all 0.4s ease-in-out;
            display: flex;
            gap: 15px;
        }

            .portfolio .portfolio-card .portfolio-overlay .portfolio-actions a {
                width: 45px;
                height: 45px;
                background-color: var(--surface-color);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--accent-color);
                font-size: 20px;
                transition: all 0.3s ease;
            }

                .portfolio .portfolio-card .portfolio-overlay .portfolio-actions a:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: scale(1.1);
                }

    .portfolio .portfolio-card .portfolio-content {
        padding: 25px;
    }

        .portfolio .portfolio-card .portfolio-content .category {
            font-size: 14px;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
            display: block;
            margin-bottom: 10px;
        }

        .portfolio .portfolio-card .portfolio-content h3 {
            font-size: 20px;
            margin: 0 0 15px;
            font-weight: 600;
            transition: color 0.3s ease;
        }

            .portfolio .portfolio-card .portfolio-content h3:hover {
                color: var(--accent-color);
            }

        .portfolio .portfolio-card .portfolio-content p {
            font-size: 15px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin: 0;
            line-height: 1.6;
        }

@media (max-width: 768px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        padding: 6px 15px;
    }

    .portfolio .portfolio-card .portfolio-content {
        padding: 20px;
    }

        .portfolio .portfolio-card .portfolio-content h3 {
            font-size: 18px;
        }

        .portfolio .portfolio-card .portfolio-content p {
            font-size: 14px;
        }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-card {
    height: 100%;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

    .pricing .pricing-card:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .pricing .pricing-card.popular {
        background: var(--accent-color);
        color: var(--contrast-color);
    }

        .pricing .pricing-card.popular h3,
        .pricing .pricing-card.popular h4 {
            color: var(--contrast-color);
        }

        .pricing .pricing-card.popular .price .currency,
        .pricing .pricing-card.popular .price .amount,
        .pricing .pricing-card.popular .price .period {
            color: var(--contrast-color);
        }

        .pricing .pricing-card.popular .features-list li {
            color: var(--contrast-color);
        }

            .pricing .pricing-card.popular .features-list li i {
                color: var(--contrast-color);
            }

        .pricing .pricing-card.popular .btn-light {
            background: var(--contrast-color);
            color: var(--accent-color);
        }

            .pricing .pricing-card.popular .btn-light:hover {
                background: color-mix(in srgb, var(--contrast-color), transparent 10%);
            }

    .pricing .pricing-card .popular-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--contrast-color);
        color: var(--accent-color);
        padding: 0.5rem 1rem;
        border-radius: 2rem;
        font-size: 0.875rem;
        font-weight: 600;
        box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
    }

    .pricing .pricing-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .pricing .pricing-card .price {
        margin-bottom: 1.5rem;
    }

        .pricing .pricing-card .price .currency {
            font-size: 1.5rem;
            font-weight: 600;
            vertical-align: top;
            line-height: 1;
        }

        .pricing .pricing-card .price .amount {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1;
        }

        .pricing .pricing-card .price .period {
            font-size: 1rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
        }

    .pricing .pricing-card .description {
        margin-bottom: 2rem;
        font-size: 0.975rem;
    }

    .pricing .pricing-card h4 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    .pricing .pricing-card .features-list {
        list-style: none;
        padding: 0;
        margin: 0 0 2rem 0;
    }

        .pricing .pricing-card .features-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

            .pricing .pricing-card .features-list li i {
                color: var(--accent-color);
                margin-right: 0.75rem;
                font-size: 1.25rem;
            }

    .pricing .pricing-card .btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-weight: 500;
    }

        .pricing .pricing-card .btn.btn-primary {
            background: var(--accent-color);
            border: none;
            color: var(--contrast-color);
        }

            .pricing .pricing-card .btn.btn-primary:hover {
                background: color-mix(in srgb, var(--accent-color), transparent 15%);
            }

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
    background-color: var(--surface-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq .faq-item:last-child {
        margin-bottom: 0;
    }

    .faq .faq-item:hover {
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .faq .faq-item .faq-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 25px;
        cursor: pointer;
        position: relative;
    }

        .faq .faq-item .faq-header h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--heading-color);
            margin: 0;
            flex: 1;
            padding-right: 20px;
            transition: color 0.3s ease;
        }

        .faq .faq-item .faq-header .faq-toggle {
            font-size: 20px;
            color: var(--accent-color);
            transition: transform 0.3s ease;
        }

    .faq .faq-item .faq-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease;
    }

        .faq .faq-item .faq-content p {
            padding: 0 25px 20px;
            margin: 0;
            line-height: 1.6;
            color: var(--default-color);
            font-size: 15px;
        }

    .faq .faq-item.faq-active .faq-header h3 {
        color: var(--accent-color);
    }

    .faq .faq-item.faq-active .faq-header .faq-toggle {
        transform: rotate(180deg);
    }

    .faq .faq-item.faq-active .faq-content {
        max-height: 300px;
        overflow: auto;
    }

.faq .faq-contact-card {
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
    border-radius: 10px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    color: var(--contrast-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

    .faq .faq-contact-card .card-icon {
        margin-bottom: 20px;
    }

        .faq .faq-contact-card .card-icon i {
            font-size: 48px;
            color: color-mix(in srgb, var(--contrast-color), transparent 10%);
        }

    .faq .faq-contact-card .card-content h3 {
        color: var(--contrast-color);
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .faq .faq-contact-card .card-content p {
        color: color-mix(in srgb, var(--contrast-color), transparent 10%);
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 1.6;
    }

    .faq .faq-contact-card .contact-options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: auto;
    }

        .faq .faq-contact-card .contact-options .contact-option {
            display: flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.15);
            padding: 15px 20px;
            border-radius: 8px;
            color: var(--contrast-color);
            transition: all 0.3s ease;
        }

            .faq .faq-contact-card .contact-options .contact-option:hover {
                background-color: rgba(255, 255, 255, 0.25);
                transform: translateX(5px);
            }

            .faq .faq-contact-card .contact-options .contact-option i {
                font-size: 20px;
                margin-right: 12px;
            }

            .faq .faq-contact-card .contact-options .contact-option span {
                font-weight: 500;
                font-size: 16px;
            }

@media (max-width: 991px) {
    .faq .row {
        flex-direction: column-reverse;
    }

    .faq .faq-contact-card {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .faq .faq-item .faq-header {
        padding: 15px 20px;
    }

        .faq .faq-item .faq-header h3 {
            font-size: 16px;
        }

    .faq .faq-item .faq-content p {
        padding: 0 20px 15px;
        font-size: 14px;
    }

    .faq .faq-contact-card {
        padding: 30px 20px;
    }

        .faq .faq-contact-card .card-icon i {
            font-size: 40px;
        }

        .faq .faq-contact-card .card-content h3 {
            font-size: 24px;
        }

        .faq .faq-contact-card .card-content p {
            font-size: 15px;
        }

        .faq .faq-contact-card .contact-options .contact-option {
            padding: 12px 15px;
        }

            .faq .faq-contact-card .contact-options .contact-option i {
                font-size: 18px;
            }

            .faq .faq-contact-card .contact-options .contact-option span {
                font-size: 15px;
            }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    background-color: var(--surface-color);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
}

    .team .team-card:hover {
        transform: translateY(-10px);
    }

        .team .team-card:hover .team-overlay {
            opacity: 1;
            visibility: visible;
        }

        .team .team-card:hover .team-social a {
            transform: translateY(0);
            opacity: 1;
        }

.team .team-image {
    position: relative;
    overflow: hidden;
}

    .team .team-image img {
        transition: transform 0.6s;
        width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
    }

.team .team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

    .team .team-overlay p {
        color: var(--contrast-color);
        text-align: center;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

.team .team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

    .team .team-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--contrast-color);
        color: var(--accent-color);
        font-size: 1rem;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease;
        border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
    }

        .team .team-social a:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
        }

.team .team-content {
    padding: 1.5rem;
    text-align: center;
}

    .team .team-content h4 {
        margin-bottom: 0.5rem;
        font-size: 1.25rem;
        font-weight: 700;
    }

    .team .team-content .position {
        display: inline-block;
        padding: 0.35rem 1rem;
        background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
        border-radius: 30px;
        font-size: 0.875rem;
        color: var(--accent-color);
        font-weight: 500;
    }

@media (max-width: 767.98px) {
    .team .team-card {
        margin-bottom: 1.5rem;
    }

    .team .team-content {
        padding: 1.25rem;
    }

        .team .team-content h4 {
            font-size: 1.125rem;
        }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
    height: auto !important;
}

.testimonials .testimonial-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

    .testimonials .testimonial-card:hover {
        border-color: var(--accent-color);
    }

.testimonials .testimonial-content {
    padding: 40px 30px 30px;
    position: relative;
    flex-grow: 1;
}

    .testimonials .testimonial-content p {
        font-size: 16px;
        line-height: 1.7;
        position: relative;
        z-index: 1;
        margin: 0;
        color: color-mix(in srgb, var(--default-color), transparent 10%);
    }

    .testimonials .testimonial-content .quote-icon {
        position: absolute;
        top: 15px;
        left: 30px;
        font-size: 42px;
        color: color-mix(in srgb, var(--accent-color), transparent 85%);
        z-index: 0;
        opacity: 0.8;
    }

.testimonials .testimonial-profile {
    padding: 20px 30px;
    background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
    border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.testimonials .rating {
    margin-bottom: 15px;
}

    .testimonials .rating i {
        color: #ffc107;
        margin-right: 3px;
        font-size: 14px;
    }

.testimonials .profile-info {
    display: flex;
    align-items: center;
}

    .testimonials .profile-info img {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--background-color);
        margin-right: 15px;
    }

    .testimonials .profile-info div {
        flex: 1;
    }

    .testimonials .profile-info h3 {
        margin: 0 0 5px;
        font-size: 16px;
        font-weight: 700;
        color: var(--heading-color);
    }

    .testimonials .profile-info h4 {
        margin: 0;
        font-size: 13px;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-weight: 500;
    }

.testimonials .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
        opacity: 1;
    }

    .testimonials .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
        width: 25px;
        border-radius: 5px;
    }

@media (max-width: 767px) {
    .testimonials .testimonial-content {
        padding: 30px 20px 20px;
    }

        .testimonials .testimonial-content p {
            font-size: 15px;
        }

        .testimonials .testimonial-content .quote-icon {
            font-size: 36px;
            left: 20px;
        }

    .testimonials .testimonial-profile {
        padding: 15px 20px;
    }

    .testimonials .profile-info img {
        width: 45px;
        height: 45px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-card {
    background-color: var(--surface-color);
    padding: 30px;
    text-align: center;
    height: 100%;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease-in-out;
}

    .contact .info-card:hover {
        transform: translateY(-5px);
    }

    .contact .info-card .icon-box {
        width: 56px;
        height: 56px;
        margin: 0 auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    }

        .contact .info-card .icon-box i {
            font-size: 24px;
            color: var(--accent-color);
        }

    .contact .info-card h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .contact .info-card p {
        margin: 0;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 15px;
        line-height: 1.6;
    }

.contact .form-wrapper .input-group .input-group-text {
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    border-color: color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px 0 0 8px;
    padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control {
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 0 8px 8px 0;
    box-shadow: none;
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 12px 15px;
}

    .contact .form-wrapper .input-group .form-control:focus {
        border-color: var(--accent-color);
    }

    .contact .form-wrapper .input-group .form-control::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 70%);
    }

.contact .form-wrapper select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 40px;
}

.contact .form-wrapper textarea.form-control {
    min-height: 160px;
}

.contact .form-wrapper button {
    background-color: var(--accent-color);
    border: 0;
    padding: 12px 40px;
    color: var(--contrast-color);
    border-radius: 8px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 500;
}

    .contact .form-wrapper button:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .swiper-wrapper {
    height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

    .portfolio-details .swiper-button-prev:after,
    .portfolio-details .swiper-button-next:after {
        color: rgba(255, 255, 255, 0.8);
        background-color: rgba(0, 0, 0, 0.15);
        font-size: 24px;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .portfolio-details .swiper-button-prev:hover:after,
    .portfolio-details .swiper-button-next:hover:after {
        background-color: rgba(0, 0, 0, 0.3);
    }

@media (max-width: 575px) {

    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

.portfolio-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

    .portfolio-details .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background-color: color-mix(in srgb, var(--default-color), transparent 85%);
        opacity: 1;
    }

    .portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
        background-color: var(--accent-color);
    }

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

    .portfolio-details .portfolio-info h3:after {
        content: "";
        position: absolute;
        display: block;
        width: 50px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        bottom: 0;
    }

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

    .portfolio-details .portfolio-info ul li {
        display: flex;
        flex-direction: column;
        padding-bottom: 15px;
    }

    .portfolio-details .portfolio-info ul strong {
        text-transform: uppercase;
        font-weight: 400;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
        font-size: 14px;
    }

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

    .portfolio-details .portfolio-info .btn-visit:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 20%);
    }

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

    .portfolio-details .portfolio-description .testimonial-item .testimonial-img {
        width: 90px;
        border-radius: 50px;
        border: 6px solid var(--background-color);
        float: left;
        margin: 0 10px 0 0;
    }

    .portfolio-details .portfolio-description .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 15px 0 5px 0;
        padding-top: 20px;
    }

    .portfolio-details .portfolio-description .testimonial-item h4 {
        font-size: 14px;
        color: #6c757d;
        margin: 0;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
    .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
        color: color-mix(in srgb, var(--accent-color), transparent 50%);
        font-size: 26px;
        line-height: 0;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
        display: inline-block;
        left: -5px;
        position: relative;
    }

    .portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
        display: inline-block;
        right: -5px;
        position: relative;
        top: 10px;
        transform: scale(-1, -1);
    }

    .portfolio-details .portfolio-description .testimonial-item p {
        font-style: italic;
        margin: 0 0 15px 0 0 0;
        padding: 0;
    }

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-main-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .service-details .service-main-image img {
        width: 100%;
        transition: transform 0.6s;
    }

    .service-details .service-main-image:hover img {
        transform: scale(1.05);
    }

    .service-details .service-main-image .experience-badge {
        position: absolute;
        bottom: 30px;
        right: 30px;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 20px;
        border-radius: 12px;
        min-width: 120px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

        .service-details .service-main-image .experience-badge span {
            font-size: 36px;
            font-weight: 700;
            display: block;
            line-height: 1;
        }

        .service-details .service-main-image .experience-badge p {
            margin: 0;
            font-size: 14px;
            opacity: 0.9;
        }

.service-details .service-main-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .service-details .service-main-content .section-header {
        margin-bottom: 25px;
    }

        .service-details .service-main-content .section-header .section-subtitle {
            display: inline-block;
            padding: 8px 16px;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .service-details .service-main-content .section-header h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 0;
        }

@media (max-width: 768px) {
    .service-details .service-main-content .section-header h2 {
        font-size: 28px;
    }
}

.service-details .service-main-content .lead {
    font-size: 18px;
    margin-bottom: 20px;
}

.service-details .service-main-content p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 20px;
}

.service-details .service-benefits {
    padding: 0;
    list-style: none;
    margin: 20px 0 0 0;
}

    .service-details .service-benefits li {
        padding: 12px 0;
        position: relative;
        display: flex;
        align-items: center;
    }

        .service-details .service-benefits li i {
            color: var(--accent-color);
            font-size: 20px;
            margin-right: 15px;
        }

.service-details .service-tabs {
    margin-top: 80px;
}

    .service-details .service-tabs .nav-tabs {
        border: none;
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        margin-bottom: 30px;
        overflow-x: auto;
        padding-bottom: 5px;
    }

@media (max-width: 768px) {
    .service-details .service-tabs .nav-tabs {
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
    }

        .service-details .service-tabs .nav-tabs::-webkit-scrollbar {
            height: 5px;
        }

        .service-details .service-tabs .nav-tabs::-webkit-scrollbar-thumb {
            background: color-mix(in srgb, var(--default-color), transparent 80%);
            border-radius: 10px;
        }
}

.service-details .service-tabs .nav-tabs .nav-link {
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    color: var(--default-color);
    font-weight: 600;
    background: var(--surface-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

    .service-details .service-tabs .nav-tabs .nav-link i {
        margin-right: 10px;
        font-size: 18px;
    }

    .service-details .service-tabs .nav-tabs .nav-link.active {
        background: var(--accent-color);
        color: var(--contrast-color);
    }

.service-details .service-tabs .tab-content {
    padding: 40px;
    border-radius: 16px;
    background: var(--surface-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

    .service-details .service-tabs .tab-content h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--heading-color);
    }

    .service-details .service-tabs .tab-content p {
        color: color-mix(in srgb, var(--default-color), transparent 25%);
    }

    .service-details .service-tabs .tab-content .feature-item {
        padding: 20px;
        background: color-mix(in srgb, var(--background-color), transparent 50%);
        border-radius: 12px;
        height: 100%;
        transition: transform 0.3s;
    }

        .service-details .service-tabs .tab-content .feature-item:hover {
            transform: translateY(-5px);
        }

        .service-details .service-tabs .tab-content .feature-item i {
            color: var(--accent-color);
            font-size: 28px;
            margin-bottom: 15px;
        }

        .service-details .service-tabs .tab-content .feature-item h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .service-details .service-tabs .tab-content .feature-item p {
            font-size: 14px;
            margin-bottom: 0;
        }

.service-details .service-testimonial {
    margin-top: 80px;
}

    .service-details .service-testimonial .testimonial-card {
        padding: 40px;
        border-radius: 16px;
        background: var(--surface-color);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    }

        .service-details .service-testimonial .testimonial-card .client-info {
            text-align: center;
        }

            .service-details .service-testimonial .testimonial-card .client-info img {
                width: 90px;
                height: 90px;
                object-fit: cover;
                border: 5px solid var(--background-color);
                margin-right: 20px;
            }

@media (max-width: 767px) {
    .service-details .service-testimonial .testimonial-card .client-info img {
        margin: 0 auto 20px;
    }
}

.service-details .service-testimonial .testimonial-card .client-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-details .service-testimonial .testimonial-card .client-info p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 10px;
    font-size: 14px;
}

.service-details .service-testimonial .testimonial-card .client-info .stars {
    color: #FFD700;
    font-size: 14px;
}

.service-details .service-testimonial .testimonial-card .quote {
    position: relative;
    padding-left: 30px;
}

    .service-details .service-testimonial .testimonial-card .quote i {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 24px;
        color: var(--accent-color);
    }

    .service-details .service-testimonial .testimonial-card .quote p {
        font-style: italic;
        font-size: 16px;
        color: color-mix(in srgb, var(--default-color), transparent 15%);
    }

.service-details .service-cta {
    margin-top: 80px;
    padding: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 10%), color-mix(in srgb, var(--accent-color), transparent 40%));
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

    .service-details .service-cta h3 {
        font-size: 32px;
        font-weight: 700;
        color: var(--contrast-color);
        margin-bottom: 15px;
    }

    .service-details .service-cta p {
        font-size: 18px;
        color: var(--contrast-color);
        opacity: 0.9;
        margin-bottom: 30px;
    }

    .service-details .service-cta .btn-service {
        display: inline-flex;
        align-items: center;
        background: var(--contrast-color);
        color: var(--accent-color);
        font-weight: 600;
        padding: 15px 35px;
        border-radius: 50px;
        transition: all 0.3s;
    }

        .service-details .service-cta .btn-service i {
            margin-left: 8px;
            transition: transform 0.3s;
        }

        .service-details .service-cta .btn-service:hover {
            background: var(--background-color);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

            .service-details .service-cta .btn-service:hover i {
                transform: translateX(5px);
            }

@media (max-width: 767px) {
    .service-details .service-cta {
        padding: 40px 20px;
    }

        .service-details .service-cta h3 {
            font-size: 26px;
        }
}

@media (max-width: 991px) {
    .service-details .service-main-content {
        margin-top: 30px;
    }

    .service-details .service-tabs {
        margin-top: 50px;
    }

    .service-details .service-testimonial,
    .service-details .service-cta {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .service-details .client-info {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .service-details .service-tabs .tab-content {
        padding: 30px 20px;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.top-menus ul {
    list-style: none;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.top-menus li + li {
    padding-left: 10px;
}

.top-menus li a {
    color: #ffffff;
}

.top-menus li {
    color: #ffffff;
    display: flex;
    font-size: 14px;
}

nav#navmenu {
    background-color: transparent;
    position: relative;
}


.login_btn {
    text-align: center;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 8px;
}

    .login_btn a {
        display: inline-block;
        color: var(--contrast-color);
        font-size: 1rem;
    }

.top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sf-search-input-text {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 546px;
    height: 36px;
    border-radius: 20px;
    border: solid 1.5px #ffffff;
    background-color: #fff;
    outline: 0;
    color: #0091ed;
    position: relative;
    font-family: Muli, sans-serif;
    font-weight: 500;
    padding-left: 14px;
}

.sf-searchbox {
    border: none;
    outline: 0;
    width: 87%;
    height: 30px;
    font-size: 14px;
    font-weight: 500;
    text-overflow: ellipsis;
    color: #1166bf;
}

    .sf-searchbox::placeholder {
        color: #1166bf;
    }

.search-whole {
    width: 7%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #0091ed;
}

.sf-search-mic.record {
    background: url(../img/mic.png);
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.sf-search-mic {
    cursor: pointer;
    width: 13.5px;
    height: 17px;
}

.mic-whole {
    width: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding-right: 4px;
}

.topBand {
    padding-bottom: 0.3rem;
}

.top-menus ul li .theme-item {
    height: 15px;
    width: 18px;
    display: flex;
    border: 1px solid #e4e4e4;
    cursor: pointer;
}

    .top-menus ul li .theme-item.theme-1:before {
        background-color: #797979;
    }

    .top-menus ul li .theme-item.theme-2:after,
    .top-menus ul li .theme-item.theme-2:before,
    .top-menus ul li .theme-item:after,
    .top-menus ul li .theme-item:before {
        content: "";
        width: 50%;
    }

    .top-menus ul li .theme-item.theme-1:after {
        background-color: #030303;
    }

    .top-menus ul li .theme-item.theme-2:before {
        background-color: #0091ed;
    }

    .top-menus ul li .theme-item.theme-2:after {
        background-color: #fff;
    }

.banner-image img,
.banner-image video {
    border-radius: 20px;
    width: 100%;
    /* height: 100%; */
    /*  object-fit: fill;*/
    border-top-right-radius: 0px;
}

section.stats-strip {
    position: relative;
    background-image: url(../img/bg2.png);
    background-repeat: repeat-x;
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
}

/* Keyframe Animation */
@keyframes moveBg {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 1000px 0;
        /* Move horizontally */
    }
}

.overlaybox {
    display: none;
    position: fixed;
    inset: 0;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.service-card img {
    width: 100px !important;
    margin-bottom: 10px;
    margin-right: auto;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--heading-color);
    font-family: var(--default-font);
}

.services-slider-section {
    padding-top: 30px;
}

.service-card {
    width: 245px;
    height: auto;
    padding: 15px 20px 30px 20px;
    background: #FFFFFF;
    border-radius: 30px;
    border: 1px solid #DDDDDD;
    cursor: pointer;
    min-height: 200px;
    max-height: 200px;
}


/* ===================================== */

.custom_tab {
    background: #ffffff;
    border-radius: 10px 10px 10px 10px;
    width: 100%;
    margin-top: 0;
    float: left;
    padding: 43px;
    box-sizing: border-box;
    margin-bottom: 30px;
}

.tab_nav {
    width: 22%;
    float: left;
    margin-top: 50px;
}

    .tab_nav button.current {
        background: #f37022;
        color: white;
    }

    .tab_nav button {
        background: #fdd0a5;
        padding: 8px 15px;
        font-size: 16px;
        font-weight: 500;
        line-height: 28px;
        color: #000000;
        border: none;
        outline: none;
        width: 100%;
        text-align: left;
        border-bottom: 3px solid #f1f5fb;
        margin-bottom: 4px;
        border-radius: 30px 0 0 30px;
    }

.c_tab_container {
    width: 78%;
    float: right;
}

.link_txt {
    width: 100%;
    float: left;
    color: #03174f;
    background: #ffffff;
    padding: 25px;
    border-radius: 30px;
    border-bottom: 10px solid #f37022;
    box-shadow: 0px 0px 3px 1px #0000005e;
}

.link_txt {
    width: 100%;
    float: left;
    color: #03174f;
    background: #ffffff;
    padding: 25px;
    border-radius: 30px;
    border-bottom: 10px solid #f37022;
    box-shadow: 0px 0px 3px 1px #0000005e;
}

.dropdown-content > ul li {
    min-width: auto !important;
}

.dropdown-content ul li button.active {
    background-color: transparent !important;
    color: #1166bf !important;
    font-size: 17px;
}

    .dropdown-content ul li button.active:hover {
        color: #0091ed !important;
        background-color: transparent !important;
    }

.dropdown-content ul li button {
    color: #0091ed;
    font-weight: 500;
    position: relative;
}

    .dropdown-content ul li button::before {
        position: absolute;
        content: '';
        bottom: 5px;
        width: 0%;
        height: 3px;
        left: auto;
        right: 0;
        background: #1166bf;
        transition: all 0.4s ease-in-out;
    }

    .dropdown-content ul li button.active::before {
        width: 100%;
        left: 0;
        right: auto;
    }

.info-card {
    padding: 25px 117px 100px 20px;
    background: transparent linear-gradient(162deg, #1263bb 0%, #213c92 100%) 0% 0% no-repeat padding-box;
    border-radius: 20px;
    color: #FFFFFF;
    position: relative;
}

    .info-card h2 {
        margin-bottom: 11px;
        color: #fff;
        font-size: 28px;
        line-height: 38px;
    }

    .info-card .desc {
        /* font-size: 18px; */
        font-size: 1.125rem;
        line-height: 22px;
        margin-bottom: 25px;
        color: rgba(255, 255, 255, 0.8);
    }

    .info-card .avail-btn {
        padding: 12px 22px;
        background: transparent;
        border: 1px solid #FFFFFF;
        font-weight: bold;
        color: #FFFFFF;
        cursor: pointer;
        transition: all 0.2s;
        white-space: nowrap;
    }

    .info-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        /* top: 100px; */
        left: auto;
        right: -160px;
        width: 286px;
        height: 261px;
        background-image: url(../img/cta/productsbanner-man.svg);
        background-repeat: no-repeat;
        background-size: auto;
    }

.services-slider-section {
    padding: 20px 0 20px 6%;
    background: rgba(211 211 211/60%);
}

.info-card .avail-btn a {
    color: #ffffff;
}

.services-slider-section .owl-nav button.owl-prev,
.owl-nav button.owl-next {
    padding: 0 !important;
    background: transparent;
    border: transparent !important;
    border-top: 15px solid transparent !important;
    border-bottom: 15px solid transparent !important;
    color: #1d469d;
    width: 23px;
    height: 23px;
}

.services-slider-section .owl-nav button.owl-prev {
    border-right: 24px solid #1e439a !important;
    margin-right: 5px !important;
}

.services-slider-section .owl-nav button.owl-next {
    border-left: 24px solid #1e459b !important;
}

.services-slider-section .owl-nav {
    text-align: left;
    margin-left: 100px;
    margin-top: 25px;
}

    .services-slider-section .owl-nav span {
        display: none;
    }

#btnid {
    position: absolute;
    bottom: 9%;
    left: 6%;
    background-color: #1d449b;
    color: white;
    font-size: 16px;
    line-height: 19px;
    cursor: pointer;
    transition: all 0.2s;
    padding: 12px 22px;
}

#mybtn1 {
    position: relative;
}

.product-carousel {
    padding-left: 30px;
}

.views-field.views-field-title-1 {
    background: transparent linear-gradient(162deg, #1263bb 0%, #213c92 100%) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 1px 30px 30px 30px;
}


.views-field-field-carousel-icon {
    height: 95px !important;
    width: 100px !important;
    margin: 20px auto 30px;
    transition: all 0.6s ease-in-out;
}

.views-field-field-carousel-title {
    margin-top: 10px;
    text-align: center;
    display: block;
}

.carousel-title {
    color: #2C2A29;
}

.carousel-title {
    font-size: 1.417rem;
}

.carousel-title {
    line-height: 20px;
}

.carousel-title {
    font-size: 17px;
    font-weight: bold;
    padding: 0 16px 0 16px;
    margin-bottom: 10px;
    height: 45px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.4s ease-in-out;
    color: #ffffff;
}

.carousel-tagline {
    font-size: 1.083rem;
}

.carousel-tagline {
    display: block;
    -webkit-transition: all 0.6s 0.4s ease-in-out;
    -moz-transition: all 0.6s 0.4s ease-in-out;
    -o-transition: all 0.6s 0.4s ease-in-out;
    transition: all 0.6s 0.4s ease-in-out;
    opacity: 0;
    height: 0;
    overflow: hidden;
    font-size: 13px;
    line-height: 17px;
    padding: 0 8px;
}

.views-field.views-field-title-1:hover {
    background: #0091ed;
}

    .views-field.views-field-title-1:hover .carousel-title {
        font-size: 22px;
        color: #ffffff;
        line-height: 28px;
    }

img {
    max-width: 100%;
    display: block;
}

.field-content img {
    height: 100%;
}

.online-section {
    padding: 30px 0;
}

.top-heading h2 {
    text-align: center;
    color: #1166bf;
    font-size: 30px;
    margin-bottom: 20px;
}

.download-img {
    margin-right: 10px;
}

canvas {
    max-width: 250px;
    margin: auto;
}

.calc-wrapper .tab-content {
    padding: 30px;
    background: #ffffff;
    border: 1px solid #1f4299;
    border-top: none;
    border-radius: 0 0 20px 20px;
}

.nav-tabs .nav-link.active {
    background-color: #ffffff;
    border-radius: 20px 20px 0 0;
    border: none;
}

ul.nav.nav-tabs {
    background: transparent linear-gradient(162deg, #1263bb 0%, #213c92 100%) 0% 0% no-repeat padding-box;
    border-radius: 20px 20px 0 0;
    justify-content: space-between;
    border: 1px solid #1b4aa1;
}

.nav-tabs .nav-link a {
    color: #000000;
}

.nav-tabs .nav-link {
    color: #ffffff;
    padding: 12px 20px;
    font-size: 17px;
}


.form-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    background-color: #1166bf;
    border-radius: 50%;
    border: 1px solid white;
    cursor: pointer;
    margin-top: -7px;
}

input[type=range] + p {
    font-weight: 500;
    font-size: 1rem;
    margin-top: 5px;
}

.calculator button {
    background: transparent linear-gradient(162deg, #1263bb 0%, #213c92 100%) 0% 0% no-repeat padding-box;
    box-shadow: none;
    outline: none;
    border: none;
    padding: 8px 20px;
}

section.mobile-section {
    background: linear-gradient(0deg, #ffffff, #eaeaeab3 80%);
    padding: 30px 0;
}

.stats-container .stat {
    background: #D20062;
    padding: 24px;
    text-align: center;
    color: #FFD0EC;
    border-radius: 25px;
}

    .stats-container .stat .odometer {
        font-size: 50px;
        font-weight: bold;
        display: inline-block;
    }

    .stats-container .stat .type {
        font-size: 20px;
    }

.odometer.plus {
    position: relative;
    font-size: 30px;
    font-weight: 900;
    color: #1b4ca3;
}

    .odometer.plus::after {
        content: "%";
        position: absolute;
        top: 0;
        right: -30px;
        font-size: 25px;
    }

.stat-wrapper .col-md-6 {
    padding: 10px 20px;
}

    .stat-wrapper .col-md-6:nth-child(even) {
        border-left: 2px solid #ccc;
    }

    .stat-wrapper .col-md-6:nth-child(1) {
        border-bottom: 2px solid #ccc;
    }

    .stat-wrapper .col-md-6:nth-child(2) {
        border-bottom: 2px solid #ccc;
    }

.stats-heading h2 {
    margin-bottom: 59px;
    color: #1b49a0;
    text-align: center;
}


/* -----------------------------------
      Offer Section
--------------------------------------*/
.portfolio-section {
    padding: 0 0 50px;
    display: none;
}

    .portfolio-section h2 {
        font-size: 28px;
        font-weight: 600;
        color: #1b49a0;
        text-transform: uppercase;
    }

    .portfolio-section h4 {
        font-size: 17px;
        font-weight: 500;
        color: #1b49a0;
        margin-bottom: 10px;
        font-family: var(--default-font);
    }

        .portfolio-section h4 > img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

.portfolio-menu {
    text-align: center;
}

.control {
    background: #ffffff;
    color: #1b49a0;
    padding: 8px 20px;
    border: 2px solid #1b49a0;
    border-radius: 30px;
    margin: 5px;
    cursor: pointer;
    -webkit-transition: all 05s ease;
    -moz-transition: all 05s ease;
    -ms-transition: all 05s ease;
    -o-transition: all 05s ease;
    transition: all 0.5s ease;
}

    .control:hover {
        background: #1b49a0;
        color: #ffffff;
    }

.mixitup-control-active {
    color: #fff;
    background: #1b49a0;
}

.fancybox-container button:focus {
    outline: 0;
    box-shadow: none;
}

.pd {
    padding: 0;
    padding: 10px;
}

    .pd img {
        height: 70px;
        transition: all 0.5s;
        object-fit: contain;
    }

.portfolio-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    text-align: center;
    visibility: hidden;
    transition: all 0.5s;
    transform: scale(0);
}

    .portfolio-overlay p,
    .portfolio-overlay a {
        position: relative;
        z-index: 4;
    }

    .portfolio-overlay::before {
        content: "";
        width: 0;
        height: 0;
        border-width: 0;
        position: absolute;
        left: 10%;
        top: 10%;
        transition: 50ms height ease 150ms;
        z-index: 3;
    }

    .portfolio-overlay::after {
        content: "";
        width: 0;
        height: 0;
        border-width: 0;
        position: absolute;
        right: 10%;
        bottom: 10%;
        transition: 100ms width ease 200ms;
        z-index: 3;
    }

.portfolio-item:hover .portfolio-overlay::before {
    width: 80%;
    height: 80%;
    border-top: 1px solid #50977f;
    border-right: 1px solid #50977f;
    transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}

.portfolio-item:hover .portfolio-overlay::after {
    width: 80%;
    height: 80%;
    border-bottom: 1px solid #50977f;
    border-left: 1px solid #50977f;
    transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}

.portfolio-item li:hover .portfolio-overlay {
    visibility: visible;
    transform: scale(1);
}

.portfolio-overlay .category {
    margin-top: 70px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.portfolio-overlay .magnify-icon {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    background: #50977f;
    margin: 0 5px;
    cursor: pointer;
    display: inline-block;
    transition: all 0.25s;
}

    .portfolio-overlay .magnify-icon:hover {
        background: #000;
    }

    .portfolio-overlay .magnify-icon p span i {
        font-size: 15px;
        color: #fff;
        line-height: 40px;
        cursor: pointer;
    }

.portfolio-item {
    list-style: none;
}

.slide-cards .bk-img img {
    height: 20px;
    margin-bottom: 8px;
}

.slide-cards {
    height: 100%;
    background-color: #e9e9e9f5;
    padding: 10px 10px 14px;
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    display: block;
}

    .slide-cards .slide-img {
        margin-bottom: 20px;
    }

    .slide-cards .slide-img {
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 10px;
    }

    .slide-cards .slide-content {
        padding-left: 0;
        padding: 0px 76px 0 9px;
    }

    .slide-cards p {
        color: #1f2933;
        font-size: 13px;
    }

.card-right-btn {
    padding: 10px 0px 0px 10px;
    background-color: #fff;
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 70px;
    height: 70px;
    border-radius: 50% 0 0 0;
}

    .card-right-btn:before {
        background: url(../img/corner-left.svg) no-repeat bottom left;
        top: -23px;
        right: 0px;
    }

    .card-right-btn:before,
    .card-right-btn:after {
        content: "";
        width: 24px;
        height: 24px;
        position: absolute;
    }

    .card-right-btn:after {
        background: url(../img/corner-top.svg) no-repeat bottom left;
        bottom: -1px;
        left: -24px;
    }

.play-arrow-btn {
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #1b49a0;
    border: none;
}

    .play-arrow-btn span {
        font-size: 22px;
        color: #fff;
        transition: .3s;
    }

.slide-cards:hover .play-arrow-btn span {
    transform: rotate(-22.5deg) scale(1.4);
}



.service-block-two .inner-box {
    position: relative;
    overflow: hidden;
    height: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-two .image {
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
    margin-bottom: 0px;
    background-image: url(../img/service-bg.jpg);
}

    .service-block-two .image:before {
        position: absolute;
        left: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        background-color: #fff;
        border: 1px solid #f0f0f0;
        border-bottom: 4px solid #00a554;
        z-index: 2;
        content: "";
        -webkit-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .service-block-two .image img {
        position: relative;
        width: 100%;
        opacity: 0.2;
        height: 290px;
        -o-object-fit: cover;
        object-fit: cover;
    }

.service-block-two .content-box {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 0 40px 20px;
}

    .service-block-two .content-box .count {
        position: absolute;
        right: 50px;
        top: 30px;
        font-size: 90px;
        line-height: 1em;
        font-weight: 700;
        color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: rgb(0, 51, 128, 0.2);
    }

    .service-block-two .content-box .icon-box {
        position: relative;
        left: -15px;
        background-color: #ca1f26;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 88px;
        width: 111px;
        font-size: 54px;
        line-height: 1em;
        background-color: #f9f9f9;
        clip-path: polygon(8% 0, 100% 0, 90% 100%, 0 100%);
        z-index: 2;
        margin-bottom: 45px;
        -webkit-transition: all 200ms ease;
        transition: all 200ms ease;
    }

.service-block-two .title a {
    position: relative;
    font-weight: 800;
    z-index: 2;
    margin-bottom: 12px;
    color: #003380;
    transition: all 0.2s ease-in-out;
}

.service-block-two .text {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    z-index: 2;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.service-block-two .inner-box:hover .title a {
    color: #ffffff;
}

.service-block-two .inner-box:hover .image::before,
.project-carousel .owl-item.active.center .service-block-two .inner-box .image::before {
    visibility: hidden;
    height: 0;
}

.service-block-two .inner-box:hover .content-box .count,
.project-carousel .owl-item.active.center .service-block-two .inner-box .content-box .count {
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
}

.service-block-two .inner-box:hover .icon-box,
.project-carousel .owl-item.active.center .service-block-two .inner-box .icon-box {
    background-color: #00a554;
}

.service-block-two .inner-box:hover .content-box .text,
.service-block-two .inner-box:hover .content-box .title {
    color: #fff;
}

.project-carousel .owl-item.active.center .service-block-two .inner-box .content-box .text,
.project-carousel .owl-item.active.center .service-block-two .inner-box .content-box .title a {
    color: #fff;
}

.service-block-two .content-box img {
    width: 60px;
}

.service-block-two .inner-box:hover .icon-box img,
.project-carousel .owl-item.active.center .service-block-two .inner-box .icon-box img {
    filter: invert(1);
}

.bannertexts {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

    .bannertexts h2 {
        font-size: 50px;
        font-weight: 700;
        font-family: poppins, sans-serif;
        text-transform: capitalize;
        color: #ffffff;
    }

    .bannertexts P {
        font-size: 20px;
        font-weight: 400;
        font-family: poppins, sans-serif;
        text-transform: capitalize;
        color: #ffffff;
    }

.industry-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 100%;
    padding: 0;
    transform: translateX(-50%);
    margin: 0;
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
}

.indusrty-section {
    position: relative;
    padding: 0;
    margin-top: 0px !important;
}

.slider-carousel .item {
    flex: 0 0 auto;
    height: 100% !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end !important;
    padding: 18px;
    background: linear-gradient(0deg, #0000008c, #0000008c);
    transition: all 0 ease 0.3s;
}

.floatingTileInfo {
    padding: 10px;
    position: absolute;
    bottom: -100%;
    visibility: hidden;
    transition: all 0.5s;
    margin-bottom: 60px;
}

    .floatingTileInfo p {
        line-height: 160%;
        color: #fff;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 20px;
    }

.cta-box a {
    font-weight: 500;
    color: #016be3;
    display: flex;
    align-items: center;
    text-decoration: underline;
    position: relative;
    font-family: "poppins";
}

.tileHeadMain {
    margin-bottom: 100px;
}

.slider-carousel .owl-stage-outer,
.slider-carousel .owl-stage-outer .owl-stage,
.slider-carousel .owl-stage-outer .owl-stage .owl-item {
    height: 100%;
}

    .slider-carousel .owl-stage-outer .owl-stage .owl-item.active.firstitem .floatingTileInfo {
        bottom: 0;
        visibility: visible;
    }

.slider-carousel .item:hover {
    background: linear-gradient(180deg, rgba(0, 0, 0, .32), rgba(0, 0, 0, .64));
}

    .slider-carousel .item:hover .floatingTileInfo {
        bottom: 0;
        visibility: visible;
    }

    .slider-carousel .item:hover .tileHeadMain {
        display: none;
    }

.slider-carousel .owl-stage-outer .owl-stage .owl-item.active.firstitem .tileHeadMain {
    display: none;
}

.tileHead a,
.tileHeadMain a {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 30px;
    padding: 0 0 10px;
    color: #fff;
    position: relative;
}

.indusrty-section .ind-title {
    position: absolute;
    top: 25px;
    left: 2%;
    right: 0;
    z-index: 9;
    color: #fff;
    font-size: 46px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    opacity: 0.9;
    font-weight: 700;
    font-family: var(--heading-font);
}


.news-section button.owl-prev,
.news-section button.owl-next {
    position: absolute;
    top: 50%;
    width: 35px;
    height: 35px;
    background: #ffffff !important;
    border-radius: 50%;
    border: 1px solid #b6b6b6 !important;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    color: #162f6a !important;
}


.slider-carousel button.owl-prev,
.slider-carousel button.owl-next {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background: #ffffff !important;
    border: 1px solid #ffffff !important;
    transform: translateY(-50%);
    transition: all 0.4s ease-in-out;
    color: #222222 !important;
}

.slider-carousel button.owl-prev {
    left: 20px;
    border-radius: 50%;
}

.slider-carousel button.owl-next {
    right: 20px;
    border-radius: 50%;
}

.Industrial-icons img {
    filter: saturate(0.5) invert(1);
    width: 55px !important;
    object-fit: contain;
}

img.bannerIMG {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

.btn-sec {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 15px;
}

    .btn-sec .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        font-size: 18px;
        color: #fff;
        border: 1px solid #fff;
        padding: 19px 80px 19px 30px;
        border-radius: 7px;
        font-weight: 500;
        position: relative;
        border-radius: 50px !important;
        transition: all 0.3s ease;
        cursor: pointer;
    }

        .btn-sec .btn.rounded .text-white {
            color: #fff;
            position: relative;
        }

        .btn-sec .btn.rounded::before {
            position: absolute;
            content: "";
            top: 3px;
            right: 3px;
            border-radius: 50px;
            width: 57px;
            height: 57px;
            background: #fff url(../img/btn-icon.svg) 0 0 no-repeat;
            background-size: 18px;
            background-position: center right 20px;
            transition: all 0.3s ease;
        }

        .btn-sec .btn.rounded:hover::before {
            background: #0091ed url(../img/btn-icon.svg) 0 0 no-repeat;
            background-position: center right 20px;
            width: 100%;
            height: 100%;
            right: 0;
            top: 0;
        }

a.btn.rounded:hover {
    border: 1px solid #0091ed;
}

    a.btn.rounded:hover span {
        color: #ffffff !important;
    }

.widget-title {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #ffffff;
    line-height: 1.2em;
    font-family: var(--text-font);
    letter-spacing: 0.01em;
    font-weight: 700;
    margin-top: 27px;
    margin-bottom: 30px;
}

    .widget-title:before {
        position: absolute;
        left: 100%;
        top: 15px;
        width: 130px;
        height: 1px;
        margin-left: 20px;
        background-color: #ffffff;
        content: "";
    }

.bob-offer-cat {
    font: normal normal bold 14px / 12px Arial;
    color: #a8a8a8;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 10px 0;
}

    .bob-offer-cat::after {
        content: "";
        background: transparent linear-gradient(90deg, #1b49a0 0%, #e16d3800 100%) 0% 0% no-repeat padding-box;
        opacity: .3;
        width: 100px;
        height: 1px;
        margin-left: 10px;
    }

/* =====================mega-drop============= */

.dropdown-menus {
    position: relative;
    display: inline-block !important;
}

.dropdownsub-menus {
    position: absolute;
    top: 0;
    left: 107%;
    width: 690px;
    transition: all 0.3s ease-in-out;
    display: none !important;
    background: #fff;
    columns: 2;
    gap: 8px;
}

.dropdown-menus > li:hover .dropdownsub-menus,
li.megadroplist.active > .dropdownsub-menus {
    display: block !important;
}


/* =====================mega-drop============= */



.doc-img img {
    width: 60px;
}

.doc-img {
    flex-shrink: 0;
}

.doc-text a {
    font-size: 16px;
    font-weight: 600;
    color: #1166c0;
}

.component-content ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.component-content li + li {
    margin-left: 10px;
}

.component-content li a {
    color: #ffffff;
    font-size: 14px;
}

.component-content a {
    color: #fff;
    ;
}

span.sitename {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 0;
    display: block;
}

.footer .footer-about p strong {
    margin-right: 5px;
}

.footer-contact a {
    color: #ffffff;
}

.search-whole img {
    width: 30px;
    object-fit: contain;
}

.social-text {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

ul.dropdownsub-menus li a {
    font-size: 13px !important;
    color: #1166c0 !important;
    border: 1px solid;
    border-radius: 100px;
}

ul.dropdown-menus {
    padding-right: 15px;
    border-right: 1px solid #1166bfa8;
}

li.megadroplist.active > a {
    color: #1166c0;
    font-size: 17px;
}

@media (max-width: 1400px) {
    .dropdownsub-menus {
        width: auto;
    }
}

.heading_banner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-color: rgba(0, 0, 0, 0.3); */
    z-index: -1;
}

.filter-search {
    margin-bottom: 10px;
}

.filter-search {
    display: flex;
    align-items: center;
}

    .filter-search h2 {
        margin-bottom: 0;
    }

    .filter-search select {
        width: 30%;
        margin-left: 20px;
    }

.content-wrapp .subhead {
    color: #003380;
    font-size: 25px;
    display: inline-block;
    border-bottom: 2px solid #003380;
    padding-bottom: 0;
}

.contact_page .cahirperson {
    background: linear-gradient(45deg, #009a3da6, #00338091);
    text-align: center !important;
    padding: 50px 15px;
    border-radius: 10px;
}

    .contact_page .cahirperson img {
        margin: auto;
        border-radius: 10px;
        border-color: #003380;
        object-fit: cover;
        height: 120px;
        width: 120px;
        border-radius: 50%;
    }

.chairmen-img img {
    background: #ffffff;
    height: 140px;
    object-fit: contain;
    border: 5px solid #162f6a;
}

.contact_page .cahirperson .chairmenttext {
    text-align: center !important;
}

.chairmenttext {
    margin-top: 25px;
    text-align: left !important;
}

.contact_page .cahirperson .chairmenttext h3 {
    color: #ffffff;
    font-size: 17px;
    height: 50px;
}

.chairmenttext h3 {
    font-size: 20px;
    font-weight: 600;
    color: #003380;
    margin-bottom: 10px;
}

.contact_page .cahirperson .chairmenttext p {
    color: #ffffff;
    margin-bottom: 5px;
}

.chairmen-links {
    display: flex;
    justify-content: center;
    margin-top: 19px;
}

    .chairmen-links a {
        border: 1px solid #ffffff;
        font-size: 13px;
        color: #fff;
        display: inline-block;
        padding: 5px;
        transition: all 0.3s ease-in-out;
        border-radius: 5px;
    }

    .chairmen-links a {
        border: 1px solid #ffffff;
        font-size: 13px;
        color: #fff;
        display: inline-block;
        padding: 5px;
        transition: all 0.3s ease-in-out;
        border-radius: 5px;
    }

section.heading_banner h1 {
    font-size: 40px;
    color: #1d4990;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: none !important;
    margin-bottom: 20px;
}

.pageslists {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
}

    .pageslists li,
    .pageslists li a {
        font-size: 15px;
        color: #ffffff;
        margin: 0 5px;
    }

        .pageslists li,
        .pageslists li a {
            font-size: 15px;
            color: #ffffff;
            margin: 0 3px;
        }

/* .heading_banner::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3); 
  z-index: -1;
} */

*/ .eligibility-card {
    border: 2px solid #1166bf;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.eligibility-card:hover {
    background-color: #ffd7d5;
    color: #060606;
    border-color: #1166bf;
}

.eligibility-card h3 {
    color: #1166bf;
    font-size: 1.25rem;
    margin-bottom: 15px;
    transition: all 0.3s ease-in-out;
}

.eligibility-card:hover h3 {
    color: #1d4a91;
}

.eligibility-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

    .eligibility-card ul li {
        margin-bottom: 10px;
    }

.know-more-btn {
    background-color: #1b4389;
    color: white;
    border-radius: 25px;
    padding: 10px 25px;
    font-size: 16px;
    border: none;
}

    .know-more-btn:hover {
        background-color: #1166bf;
    }

.amount-options .btn {
    border-radius: 25px;
    background-color: #f5f5f5;
    margin-right: 10px;
    padding: 8px 20px;
    color: #333;
    border: 1px solid #163f63;
}

    .amount-options .btn.active {
        background-color: #163f63;
        color: white;
    }

.slider-label {
    font-weight: 600;
    margin-top: 20px;
}

.output-box {
    background: linear-gradient(330deg, #f0dfb3, #f7e9bf, #f9eed0);
    border-radius: 25px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

    .output-box h2 {
        color: #1166bf;
        font-weight: bold;
        font-size: 32px;
    }

    .output-box p {
        font-size: 16px;
        color: #000000;
    }

.btn-orange {
    background-color: #1166bf;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
    margin-right: 10px;
}

.btn-outline-orange:hover {
    background-color: #0091ed;
    color: #fff;
    border-color: #0091ed;
}

.btn-orange:hover {
    border: 2px solid #1166bf;
    color: #1166bf;
    background-color: transparent;
}

.btn-outline-orange {
    border: 2px solid #1166bf;
    color: #1166bf;
    border-radius: 30px;
    padding: 10px 20px;
    font-weight: 600;
}

.amortization-toggle {
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    width: 300px;
    margin: 20px auto;
    background: #1166bf;
    padding: 15px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 15px;
}

.banking-steps {
    padding: 50px 0;
}

    .banking-steps .steps-row {
        margin: 4rem -22px;
        display: flex;
        justify-content: space-between;
        margin-bottom: 0;
    }

    .banking-steps .steps-column {
        position: relative;
        width: calc(16.66% - 74px);
        margin: 0 37px;
    }

    .banking-steps .steps-box {
        position: relative;
        width: 10rem;
        height: 10rem;
        background: #fff;
        border: 2px dashed #1166bf;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .banking-steps .steps-box .icon-box {
            width: 8.4rem;
            height: 8.4rem;
            background: var(--nani-secondary);
            border-radius: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .banking-steps img {
        height: auto;
        width: auto;
    }

    .banking-steps .steps-box .success-icon {
        position: absolute;
        top: 1.5rem;
        right: 0;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        background: #fff;
    }

    .banking-steps .steps-column .after-line {
        display: block;
        position: absolute;
        left: 76%;
        width: 60%;
        height: 2px;
        border-top: 2px dashed #1166bf;
        /* z-index: 0; */
        top: 20%;
    }

    .banking-steps .steps-title {
        font-size: 1.4rem;
        line-height: 2rem;
        color: #282828;
        margin-top: 1.5rem;
        display: block;
        text-align: center;
    }

    .banking-steps .steps-para {
        color: #6e6e6e;
        font-size: 1rem;
        line-height: 1.5rem;
        margin-top: 6px;
        text-align: center;
    }

.displaybox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inputsbox {
    width: 45%;
}

section.calc-section {
    padding-top: 0;
}

/* .leader-block [class*="col-"] {
  padding-left: 46px;
  padding-right: 46px;
} */

.leader-single {
    position: relative;
    margin-bottom: 50px;
}

.leader-single-img {
    position: relative;
    overflow: hidden;
}

    .leader-single-img::after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        bottom: 0;
        background: url(../img/shadow.png) left bottom repeat-x;
        mix-blend-mode: multiply;
    }

.leader-single-txt {
    border-left: 10px solid #0054b1;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 25px;
    z-index: 5;
    color: #FFF;
    padding: 0 25px;
}

    .leader-single-txt h2 {
        font-size: 1.3em;
        color: #ffffff;
        font-family: 'DM Sans';
    }

    .leader-single-txt p {
        font-size: .85em;
        text-align: left;
    }

.poplink {
    position: absolute;
    right: 10px;
    bottom: 13px;
    z-index: 6;
    width: 28px;
    height: 28px;
    border: 3px solid #ffffff;
    border-radius: 100%;
    font-size: .85em;
    line-height: 24px;
    text-align: center;
    display: inline-block;
    color: #ffffff;
}

.leader-single-img img {
    width: 100%;
}

button.btn-close {
    position: absolute;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #1166c0;
    color: #ffffff;
    border-radius: 50%;
    top: 10px;
    opacity: 1;
    font-size: 21px;
}

.modal-body h3 {
    color: #1166c0;
    font-size: 30px;
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.modal-body h4 {
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    color: #363636;
}

.modal-body p {
    font-size: 17px;
    margin-bottom: 8px;
}

.calc-boxwrapper {
    padding: 15px;
    box-shadow: 0px 0px 2px #1166bf;
    background: #1166bf;
    border-radius: 10px;
    color: #fff;
}

    .calc-boxwrapper small {
        color: #fff !important;
    }

section.banner-new {
    padding: 0;
    position: relative;
}

.bannerwrapper {
    position: absolute;
    bottom: 32%;
    width: 65%;
    margin: auto;
    left: 0;
    right: 0;
    color: #ffffff;
    text-align: center;
}

#tabImage {
    transition: opacity 0.5s ease-in-out;
}

/* .header.hover-active .login_btn .linktext,
.header.scrolled .login_btn .linktext {
  background: #fff;
  color: #1b4ba2;
} */

.bannerwrapper .nav-link {
    background: transparent;
    margin: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

    .bannerwrapper .nav-link.active {
        background: transparent;
        color: #ffffff;
    }

.tabimg {
    width: 115px;
    height: 115px;
    background: transparent linear-gradient(162deg, #1263bb 0%, #213c92 100%) 0% 0% no-repeat padding-box;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    margin: auto;
    margin-bottom: 15px;
}

    .tabimg img {
        height: 65px;
        width: 65px;
        margin: auto;
    }

.bannerwrapper ul {
    justify-content: center;
}

.bannerwrapper .nav-link.active .tabimg {
    background: #0091ed;
}

.btn-primary, .login_btn a {
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    padding: 5px 11px;
    background: transparent linear-gradient(162deg, #1263bb 0%, #213c92 100%) 0% 0% no-repeat padding-box;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
}

.login_btn a {
    font-size: 13px;
    width: 128px;
}

.linktext:hover {
    color: #fff;
}

.bannercontent h1 {
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'DM Sans';
    font-weight: 700;
    font-size: 50px;
    letter-spacing: 0.5px;
}

.bannercontent p {
    font-size: 18px;
}

.bannercontent {
    margin-bottom: 30px;
}

.eligibility-card {
    border: 2px solid #1166bf;
    border-radius: 10px;
    padding: 20px;
    background-color: #fff;
    height: 100%;
    transition: all 0.3s ease-in-out;
}

.mainnav {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.logodiv {
    align-self: self-end;
    display: flex;
    position: relative;
}

.header .logo {
    position: relative;
    /* line-height: 1; */
    display: flex;
    flex-shrink: 0;
    width: 100%;
    align-items: center;
    gap: 10px;
}




.banner-wrapper {
    background-color: #ffffff;
    border-radius: 30px;
}

.login_btn .linktext1 {
    color: #ffffff;
    border: 2px solid #e0b965;
}

/* ================= HERO ================= */


.hero-title {
    font-weight: 700;
    font-size: 32px;
    color: #0b1f33;
    line-height: 1.2;
}

.hero-sub {
    margin-top: 15px;
    font-size: 15px;
    color: #333;
}

.hero-phone {
    max-width: 240px;
}


.overlay.op2 {
    background: linear-gradient(135deg, rgb(0 0 0 / 80%), rgb(0 0 0 / 81%));
    z-index: -1;
}

/* ================= FOOTER ================= */
.footer {
    position: relative;
    background-repeat: repeat-x;
    background: linear-gradient(to right, #0a1a2f, #071327);
    background-size: 100% 122%;
    background-position: top;
    color: #cfd8e3;
    padding: 70px 0 30px;
    font-size: 14px;
    z-index: 0;
}

    .footer h6 {
        color: #ffffff;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .footer ul {
        list-style: none;
        padding: 0;
    }

        .footer ul li p {
            margin-bottom: 0px;
        }

        .footer ul li {
            margin-bottom: 2px;
            cursor: pointer;
            position: relative;
        }

.footer-text {
    font-size: 13px;
    line-height: 1.6;
}

.social-icons i {
    background: #132a4500;
    padding: 8px;
    border-radius: 6px;
    margin-right: 6px;
    cursor: pointer;
    border: 1px solid;
}

.footer hr {
    border-color: #1f3554;
    margin: 30px 0 20px;
}

.footer-bottom a {
    color: #cfd8e3;
    margin-left: 15px;
    text-decoration: none;
}

.contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
}

    .contact-item i {
        color: #3cc3ff;
        font-size: 18px;
        margin-top: 3px;
    }

.bank-announcements {
    background: #fff;
    font-family: system-ui, -apple-system, sans-serif;
}

.bank-announcements__viewall {
    color: #022d6b;
    /* font-size: 14px; */
    text-decoration: none;
}

/* FORCE SINGLE ROW */
.bank-announcements__row {
    flex-wrap: wrap;
    display: flex;
    gap: 20px;
}

/* LOCK WIDTH */
.bank-announcements__card {
    background: #f8fafc;
    border-radius: 14px;
    width: 100%;
    padding: 20px;
    flex: 0 0 100%;
}

.bg-none {
    background: transparent;
}

@media (min-width:992px) {
    ul.ulcustom {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap: 3px;
    }

        ul.ulcustom li {
            width: 48%;
        }

    .top-section {
        padding: 40px 0;
    }

    body .bank-announcements__card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

/* Top */
.bank-announcements__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
}

/* Tag */
.bank-announcements .tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
}

.offer {
    background: #DBEAFF;
    color: #5d57f4;
}

.news {
    background: #DBEAFF;
    color: #5d57f4;
}

.update {
    background: #DBEAFF;
    color: #5d57f4;
}

/* Text */
.bank-announcements__card h6 {
    font-size: 15px;
    font-weight: 600;
}

.bank-announcements__card p {
    font-size: 14px;
    color: #6b7280;
    margin: 8px 0 14px;
}

.bank-announcements__card a {
    color: #2563eb;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

/* ======================== */

.financial-tools {
    padding: 50px 0;
    background: #f5f7fb;
}

    .financial-tools .tools-card {
        background: #fff;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .financial-tools h5 {
        font-weight: 700;
        color: #0b3da8;
        font-size: 2rem;
    }

    .financial-tools p {
        font-size: 14px;
        color: #000000;
    }

    .financial-tools .view-tools {
        color: #0b3da8;
        /* font-weight:600; */
        text-decoration: none;
        margin-bottom: 0;
        display: block;
        display: grid;
        margin-top: auto;
        place-items: self-end;
        grid-auto-columns: max-content;
    }

.calc-tabs {
    list-style: none;
    display: flex;
    padding: 0;
    margin-bottom: 15px;
}

    .calc-tabs li {
        font-size: 14px;
        color: #777;
        cursor: pointer;
        position: relative;
    }

        .calc-tabs li.active {
            color: #3EB3C4;
            font-weight: 600;
        }

            .calc-tabs li.active::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -6px;
                width: 100%;
                height: 2px;
                background: #3EB3C4;
            }

.calc-body span {
    font-size: 13px;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #777;
}

.duration {
    display: flex;
    gap: 10px;
}

    .duration button {
        border: 1px solid #ddd;
        background: #fff;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        cursor: pointer;
    }

        .duration button.active {
            background: #3EB3C4;
            color: #fff;
            border-color: #3EB3C4;
        }

.result-box {
    background: linear-gradient(180deg, #0b3da8, #1f6ae1);
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
}

    .result-box small {
        font-size: 12px;
    }

    .result-box h3 {
        margin: 10px 0;
        font-weight: 700;
    }

    .result-box p {
        /* font-size:13px; */
        margin-bottom: 10px;
        color: white;
    }

    .result-box ul {
        padding-left: 16px;
        font-size: 14px;
    }

        .result-box ul li {
            margin-bottom: 5px;
        }


/* =============== */
.why-nainital {
    height: 420px;
    background: linear-gradient(180deg, #1b3a7a 0%, #0b1c38 100%);
    color: #ffffff;
    padding: 70px 0 60px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}


    .why-nainital .container {
        max-width: 1180px;
    }

    .why-nainital h2 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .why-nainital .subtitle {
        font-size: 13px;
        opacity: 0.9;
    }


    .why-nainital .features {
        margin-top: 48px;
    }

    .why-nainital .feature {
        text-align: center;
        padding: 0 10px;
    }

        .why-nainital .feature i {
            font-size: 36px;
            margin-bottom: 14px;
            display: inline-block;
        }

        .why-nainital .feature h5 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .why-nainital .feature p {
            font-size: 12.5px;
            line-height: 1.45;
            opacity: 0.85;
            max-width: 210px;
            margin: 0 auto;
        }

    /* ================= FOOTER TEXT ================= */
    .why-nainital .trust {
        margin-top: 42px;
        font-size: 13px;
        opacity: 0.9;
    }

    /* ================= BUTTON ================= */
    .why-nainital .cta {
        margin-top: 14px;
        padding: 7px 18px;
        font-size: 12.5px;
        border-radius: 20px;
        background: #36c3c0;
        color: #fff;
        font-weight: 600;
        border: none;
    }

        .why-nainital .cta i {
            font-size: 13px;
            margin-left: 4px;
        }

.stats-strip {
    background: #D9E3FF;
    padding: 20px 0;
}

.stats-container {
    max-width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    text-align: center;
    color: #1e3a8a;
}


    .stat-item h2 {
        font-size: 36px;
        font-weight: 600;
        margin-bottom: 4px;
    }


@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 30px;
    }
}


.nainital-why {
    background: linear-gradient(25deg, #0a1b34 0%, #122a57 35%, #1c3f8a 70%, #244aa5 100%);
    color: #fff;
}

    .nainital-why h2 {
        font-weight: 700;
        margin-bottom: 10px;
    }

    .nainital-why .subtitle {
        font-size: 14px;
        opacity: .85;
    }

.why-box {
    text-align: center;
    padding: 23px;
}

    .why-box i {
        font-size: 36px;
        margin-bottom: 12px;
        display: inline-block;
    }

    .why-box h6 {
        font-weight: 400;
        font-size: 24px;
        margin-bottom: 0;
        text-align: left;
    }

    .why-box p {
        opacity: 1;
        margin: 0;
        text-align: left;
        max-width: 234px;
        width: 100%;
    }

.trust-text {
    margin-top: 4px;
    font-size: 14px;
    opacity: .9;
}

.get-started {
    margin-bottom: 15px;
    background: #2db6c9;
    color: #fff;
    padding: 5px 13px;
    border-radius: 30px;
    font-size: 14px;
}

    .get-started i {
        margin-left: 6px;
    }

    .get-started:hover {
        background: #23a3b4;
        color: #fff;
    }

a.view-tools {
    color: #3EB3C4 !important;
}

.calc-tabs {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #3EB3C4;
    /* thin full-width line */
    flex-wrap: wrap;
}

    .calc-tabs li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 0 12px;
        font-size: 15px;
        font-weight: 500;
        color: #1a1a1a;
        position: relative;
        cursor: pointer;
        white-space: nowrap;
    }

        .calc-tabs li i {
            font-size: 26px;
            color: #3EB3C4;
        }

        .calc-tabs li span {
            line-height: 1.2;
        }

        /* ACTIVE TAB */
        .calc-tabs li.active {
            font-weight: 600;
        }

            .calc-tabs li.active::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -1px;
                width: 100%;
                height: 4px;
                background-color: #3EB3C4;
            }

.text-part h5 {
    margin-left: 52px;
    margin-top: -38px;
}


.banking-solutions {
    padding: 60px 0;
    background: linear-gradient(to bottom, #e9eef5, #f5f7fa);
    font-family: 'Segoe UI', sans-serif;
}

    .banking-solutions .section-header {
        text-align: center;
        max-width: 900px;
        margin: 0 auto 40px;
    }

        .banking-solutions .section-header h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1c1c1c;
        }

            .banking-solutions .section-header h2 span {
                color: #1f4ed8;
            }

        .banking-solutions .section-header p {
            margin-top: 10px;
            color: #6b7280;
            font-size: 15px;
        }

    /* Slider */
    .banking-solutions .solutions-slider {
        position: relative;
    }

    .banking-solutions .solution-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: all .3s ease;
    }

        .banking-solutions .solution-card:hover {
            transform: translateY(-6px);
        }

    .banking-solutions .solution-img {
        position: relative;
        height: 180px;
        overflow: hidden;
    }

        .banking-solutions .solution-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    /* BLUE STRIP */
    .banking-solutions .img-strip {
        position: absolute;
        bottom: 20px;
        left: 0;
        background: #1f4ed8;
        color: #fff;
        padding: 10px 20px;
        font-weight: 600;
        border-radius: 0 6px 6px 0;
        font-size: 14px;
    }

    /* Content */
    .banking-solutions .solution-content {
        padding: 20px;
    }

        .banking-solutions .solution-content p {
            font-size: 14px;
            color: #555;
            margin-bottom: 15px;
        }

    .banking-solutions .explore-btn {
        font-size: 14px;
        font-weight: 600;
        color: #1f4ed8;
        text-decoration: none;
        transition: .3s;
    }

        .banking-solutions .explore-btn:hover {
            color: #0f2fb3;
        }

    /* Active Card (Center Highlight) */
    .banking-solutions .active-card {
        background: #1f4ed8;
        color: #fff;
    }

        .banking-solutions .active-card .solution-content p {
            color: #e2e8f0;
        }

        .banking-solutions .active-card .explore-btn {
            color: #fff;
        }

    /* Swiper Navigation */
    .banking-solutions .swiper-button-next,
    .banking-solutions .swiper-button-prev {
        color: #1f4ed8;
    }

    .banking-solutions .swiper {
        padding: 20px 40px;
    }


.cbsg-inner {
    max-width: 1300px;
    margin: auto;
}

.cbsg-header {
    text-align: center;
    margin-top: 40px;
    padding: 10px;
    border-radius: 0 0 100px 100px;
    z-index: 1;
    position: relative;
}

    .cbsg-header h2 {
        font-size: 35px;
        font-weight: 600;
        color: #ffffff;
    }

        .cbsg-header h2 span {
            color: #000000;
        }

    .cbsg-header p {
        color: #000000;
        margin-top: 10px;
    }

/* CARD */
.cbsg-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all .4s ease;
}

/* IMAGE */
.cbsg-card-img {
    position: relative;
    height: 180px;
}

    .cbsg-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Blue Strip */
.cbsg-img-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #0d1264;
    color: #fff;
    padding: 5px 20px;
    /* font-weight:600; */
    border-radius: 0 100px 0px 0;
    box-shadow: 0px -5px 0px rgb(222 180 97);
}

/* BODY */
.cbsg-card-body {
    padding: 20px;
}

    .cbsg-card-body p {
        font-size: 14px;
        color: #555;
        margin-bottom: 15px;
        height: 38px;
    }

.cbsg-link {
    /* font-weight:600; */
    color: #1f4ed8;
    text-decoration: none;
}

/* CENTER ACTIVE STYLE */
.cbsg-swiper .swiper-slide .cbsg-card {
    transition: .3s;
    box-shadow: 0 5px 0px rgb(179, 179, 179);
}



.cbsg-swiper .swiper-slide-active .cbsg-card {
    background: #0d1264;
    color: #fff;
    box-shadow: 0 5px 0px rgb(222 180 97);
}

.cbsg-swiper .swiper-slide-active .cbsg-card-body p {
    color: #e5edff;
}

.cbsg-swiper .swiper-slide-active .cbsg-link {
    color: #fff;
}

/* arrows */
.cbsg-wrapper .swiper-button-next,
.cbsg-wrapper .swiper-button-prev {
    color: #1f4ed8;
}

.search-box .bi-mic,
.search-input-box .bi-mic {
    border-left: 2px solid #d6d6d6;
    padding-left: 5px;
    line-height: 1;
}

.search-box i,
.search-input-box i {
    cursor: pointer;
}

.right-box h4 {
    font-weight: 600;
    color: #142f79;
}

.subhd {
    color: #142f79;
}




.bank-section {
    background: linear-gradient(0deg, #ffffff, #6c98dd 78%, #ffffff 100%);
    /* background: linear-gradient(
  180deg,
  #fcfeff -9%,
  #fcfeff 52%,
  #094bc6 80%
); */
}

.main-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
    z-index: 1;
    position: relative;
}

.hero-wrapper {
    overflow: hidden;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.95) 80%);
}

.hero-title {
    /* font-family:cursive; */
    font-size: 32px;
    /* color:#0d4aad; */
}

.hero-sub {
    font-weight: 600;
    font-size: 14px;
}

.emi-box small {
    font-size: 11px;
    font-weight: 600;
}

.emi-rate {
    font-size: 42px;
    font-weight: 700;
    color: #0d4aad;
}

.right-box {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px 30px 20px 0px;
}

.icon-box {
    background: #ffffff;
    border-radius: 15px;
    text-align: center;
    padding: 10px 10px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    transition: .3s;
    align-items: center;
    gap: 7px;
    box-shadow: 0px 0px 1px 1px #0000002b;
}

    .icon-box i {
        display: block;
        font-size: 20px;
        color: #d4a017;
        margin-bottom: 0px;
        line-height: 1;
    }

    .icon-box:hover {
        background: #e9efff;
    }

.btn-apply {
    background: #27a3a3;
    color: white;
    border-radius: 15px;
    border: 2px solid #dfb55f;
}

    .btn-apply:hover {
        background: #1f8c8c;
    }

.offer-box > img {
    max-width: 45%;
    object-fit: contain;
    background: #c7e3f0;
}

.offer-box {
    background: #f6f8fc;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 0px 2px 1px #0000002b;
    justify-content: space-between;
}

.search-box input {
    height: 45px;
    box-shadow: 0px 0px 1px 1px #00000038;
}

.bottom-service p {
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

.circle-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 0px solid #d4a017;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c8e4f0;
}

    .circle-icon i {
        font-size: 25px;
        color: #033d9b;
    }

.leftdv {
    padding: 11px;
    max-width: 267px;
}

    .leftdv a {
        color: #27a3a3;
        text-transform: capitalize;
    }

small.text-primary {
    color: #022a68 !important;
    margin-bottom: 10px;
    display: block;
    letter-spacing: 0.7px;
}

.bottom-service {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 9px 12px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid gainsboro;
}

.nainislider a {
    width: 100%;
}

img.img-right {
    position: absolute;
    right: -14px;
    top: 0px;
    height: 100%;
    filter: drop-shadow(14px 3px 8px #000);
    z-index: 1;
}

.hero-img {
    border-bottom: 1px solid #e7e7e763;
}

.banner-image .owl-nav {
    position: absolute;
}

.banner-image {
    z-index: 0;
    position: relative;
}

a.linktext {
    background: var(--nani-secondary);
    border: 2px solid var(--nani-secondary);
}

.bank-section {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .bank-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient(90deg, #7ab1ff 4px, #ffffff00 69px);
        background-size: 70px 100%;
        pointer-events: none;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
        -webkit-mask-image: linear-gradient(to bottom, rgb(175 175 175 / 48%) 0%, rgb(0 0 0 / 0%) 71%);
        top: 19%;
        z-index: -1;
    }

.swiper.cbsg-swiper {
    padding: 20px 0 30px;
}

@media (min-width:1366px) {
    .financial-tools .view-tools {
        height: 90px;
    }

    .cbsg-swiper .swiper-slide-active {
        transform: scale(1.07);
        opacity: 1;
        z-index: 3;
    }

    .swiper-button-next {
        right: -70px;
    }

    .swiper-button-prev {
        left: -70px;
    }
}

/* Hide default arrow icon */

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 0;
}

/* Common arrow style */
.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    /* Arrow icon using SVG */


    /* Custom Arrow */
    .swiper-button-next::before,
    .swiper-button-prev::before {
        content: '';
        width: 10px;
        height: 10px;
        border-top: 2px solid #333;
        border-right: 2px solid #333;
        transform: rotate(45deg);
    }

    .swiper-button-prev::before {
        transform: rotate(-135deg);
    }

    /* Hover effect */
    .swiper-button-next:hover,
    .swiper-button-prev:hover {
        background: #0d6efd;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }

        .swiper-button-next:hover::before,
        .swiper-button-prev:hover::before {
            border-color: #fff;
        }


/* Wrapper */
.pro-search-wrapper {
    color: #fff;
}

/* Title */
.search-title {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 20px;
    display: flex;
    justify-content: flex-start;
    padding: 11px;
}

/* Search Input */
.search-input-box {
    position: relative;
    margin-bottom: 25px;
}

    .search-input-box input {
        width: 100%;
        padding: 14px 20px 14px 50px;
        border-radius: 50px;
        border: none;
        font-size: 15px;
        outline: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
    }

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #18397d;
    font-size: 18px;
}

/* Keywords */
.keyword-title {
    font-size: 13px;
    opacity: .9;
    margin-bottom: 10px;
}

.keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.keyword {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s ease;
}

    .keyword:hover {
        background: #fff;
        color: #18397d;
        transform: translateY(-2px);
    }

/* Mini Slider */
.mini-slider {
    height: 45px;
    overflow: hidden;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .3);
    padding-top: 10px;
}

.keyword a {
    color: inherit;
    text-decoration: none;
}

.slider-track {
    transition: transform .5s ease;
}

.slide-item {
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 14px;
    opacity: .95;
}

div:where(.swal2-container).swal2-backdrop-show,
div:where(.swal2-container).swal2-noanimation {
    backdrop-filter: blur(5px);
}

div:where(.swal2-container) div:where(.swal2-popup) {
    border-radius: 30px;
}

.naini-search-popup {
    max-width: 600px;
    width: 100%;
    padding: 19px 14px;
    position: relative;
    background: linear-gradient(0deg, rgb(135 135 135 / 54%), rgb(106 106 106 / 78%) 99%);
}

.hero-section {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #173472, #0d3d88);
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
}

/* Row full height */
.hero-row {
    width: 100%;
}

/* LEFT SIDE */
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

/* RIGHT SIDE */
.hero-right {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* flex-direction: column; */
    gap: 10px;
    flex-wrap: wrap;
}

/* Badge */
.hero-badge {
    background: rgba(255, 255, 255, .15);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    width: max-content;
    margin: auto;
}

/* Title */
.hero-title {
    font-size: 48px;
    line-height: 1.2;
    color: white;
}

    .hero-title span {
        color: #0be1ff;
    }

.hero-desc {
    font-size: 18px;
    max-width: 800px;
    opacity: .85;
    margin: auto;
}

/* Buttons */
.store-btn img {
    height: 47px;
    transition: .3s;
    border: 2px solid white;
    border-radius: 10px;
}

    .store-btn img:hover {
        transform: translateY(-4px);
    }

/* Stats */
.hero-stats {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.stat-box h4 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #00e0ff;
}

.stat-box p {
    font-size: 14px;
    opacity: .8;
    margin: 0;
}

/* Phone */
.phone-wrapper {
    position: relative;
}

.phone-img {
    max-width: 367px;
    animation: float 5s ease-in-out infinite;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .4));
}

/* Floating */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Background Blobs */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .35;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #38ffda;
    top: -120px;
    left: -120px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #00e0ff;
    bottom: -120px;
    right: -121px;
}

/* Responsive */
@media(max-width:991px) {
    .hero-left {
        text-align: center;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        flex-direction: row;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 36px;
    }
}


.store-buttons {
    display: flex;
    gap: 5px;
    justify-content: center;
}



.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nainibtn {
    --main-color: #141414;
    --main-bg-color: rgb(62 179 196);
    --pattern-color: rgb(92 92 92 / 7%);
    filter: hue-rotate(0deg);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: radial-gradient(circle, var(--main-bg-color) 0%, rgba(0, 0, 0, 0) 95%), linear-gradient(var(--pattern-color) 1px, transparent 1px), linear-gradient(to right, var(--pattern-color) 1px, transparent 1px);
    background-size: cover, 10px 10px, 10px 11px;
    background-position: center center, center center, center center;
    border-image: radial-gradient(circle, var(--main-color) 0%, rgba(0, 0, 0, 0) 100%) 1;
    border-width: 1px 0 1px 0;
    color: var(--main-color);
    padding: 0rem 3rem;
    font-weight: 500;
    transition: background-size 0.2s ease-in-out;
}

    .nainibtn:hover {
        background-size: cover, 8px 8px, 8px 8px;
    }

    .nainibtn:active {
        filter: hue-rotate(250deg);
    }




[type="range"].kawaii {
    --base: #0d42ae;
    --light: color-mix(in sRGB, var(--base) 60%, #fff);
    --lighter: color-mix(in sRGB, var(--base) 30%, #fff);
    --dark: color-mix(in sRGB, var(--base) 95%, #000);
    --transparent: color-mix(in sRGB, var(--base) 0%, #0000);
    appearance: none;
    font-size: 0.7em;
    width: 100%;
    height: 1.8em;
    border: 0.3em solid #fff;
    border-radius: 1.8em;
    box-shadow: 0 0 1em #0001, 0 0.25em 0.5em #0001;
    overflow: hidden;
}

    [type="range"].kawaii::-webkit-slider-runnable-track {
        background: radial-gradient(circle at 0.75em 0.6em, var(--light) calc(0.2em - 1px), #0000 0.2em), radial-gradient(circle at 1.25em 0.6em, var(--light) calc(0.2em - 1px), #ff000000 0.2em), radial-gradient(circle at 5em 0.6em, var(--light) calc(0.2em - 1px), #0000 0.2em), linear-gradient(var(--light) 0 0) 1.25em 0.4em / 3.75em calc(0.4em - 0.5px) no-repeat, linear-gradient(90deg, var(--base), var(--transparent) 1em), linear-gradient(#fcfcfc00 70%, var(--dark) 80%), var(--base);
        border-radius: 2em;
        height: 100%;
        width: 100%;
        overflow: hidden;
    }

    [type="range"].kawaii::-webkit-slider-thumb {
        appearance: none;
        height: 2em;
        width: 2em;
        color: var(--lighter);
        background: radial-gradient(circle at 0.75em 0.6em, var(--light) calc(0.2em - 1px), #0000 0.2em), linear-gradient(90deg, #0000 0.75em, var(--base) 0) 0 0 / 100% 50% no-repeat;
        border-radius: 100%;
        box-shadow: inset 0.5em 0 0.5em -1.25em var(--base), 1em 0 0 0.25em, 2em 0 0 0.25em, 3em 0 0 0.25em, 4em 0 0 0.25em, 5em 0 0 0.25em, 6em 0 0 0.25em, 7em 0 0 0.25em, 8em 0 0 0.25em, 9em 0 0 0.25em, 10em 0 0 0.25em, 11em 0 0 0.25em, 12em 0 0 0.25em, 12em 0 0 0.25em, 13em 0 0 0.25em, 14em 0 0 0.25em, 15em 0 0 0.25em, 16em 0 0 0.25em, 17em 0 0 0.25em, 18em 0 0 0.25em, 19em 0 0 0.25em, 20em 0 0 0.25em, 21em 0 0 0.25em, 22em 0 0 0.25em, 23em 0 0 0.25em, 24em 0 0 0.25em, 25em 0 0 0.25em, 26em 0 0 0.25em, 27em 0 0 0.25em, 28em 0 0 0.25em, 29em 0 0 0.25em, 30em 0 0 0.25em, 31em 0 0 0.25em, 32em 0 0 0.25em, 33em 0 0 0.25em, 34em 0 0 0.25em, 35em 0 0 0.25em, 35em 0 0 0.25em, 36em 0 0 0.25em, 37em 0 0 0.25em, 38em 0 0 0.25em, 1em 0 0 0.25em, 2em 0 0 0.25em, 3em 0 0 0.25em, 4em 0 0 0.25em, 5em 0 0 0.25em, 6em 0 0 0.25em, 7em 0 0 0.25em, 8em 0 0 0.25em, 9em 0 0 0.25em, 10em 0 0 0.25em, 11em 0 0 0.25em, 12em 0 0 0.25em, 12em 0 0 0.25em, 13em 0 0 0.25em, 14em 0 0 0.25em, 15em 0 0 0.25em, 16em 0 0 0.25em, 17em 0 0 0.25em, 18em 0 0 0.25em, 19em 0 0 0.25em, 20em 0 0 0.25em, 21em 0 0 0.25em, 22em 0 0 0.25em, 23em 0 0 0.25em, 24em 0 0 0.25em, 25em 0 0 0.25em, 26em 0 0 0.25em, 27em 0 0 0.25em, 28em 0 0 0.25em, 29em 0 0 0.25em, 30em 0 0 0.25em, 31em 0 0 0.25em, 32em 0 0 0.25em, 33em 0 0 0.25em, 34em 0 0 0.25em, 35em 0 0 0.25em, 35em 0 0 0.25em, 36em 0 0 0.25em, 37em 0 0 0.25em, 38em 0 0 0.25em, 39em 0 0 0.25em, 40em 0 0 0.25em, 41em 0 0 0.25em, 42em 0 0 0.25em, 43em 0 0 0.25em, 44em 0 0 0.25em, 45em 0 0 0.25em, 46em 0 0 0.25em, 47em 0 0 0.25em, 48em 0 0 0.25em, 49em 0 0 0.25em, 50em 0 0 0.25em, 51em 0 0 0.25em, 52em 0 0 0.25em, 53em 0 0 0.25em, 54em 0 0 0.25em, 55em 0 0 0.25em, 56em 0 0 0.25em, 57em 0 0 0.25em, 58em 0 0 0.25em, 59em 0 0 0.25em, 60em 0 0 0.25em, 61em 0 0 0.25em, 62em 0 0 0.25em, 63em 0 0 0.25em, 64em 0 0 0.25em, 65em 0 0 0.25em, 66em 0 0 0.25em, 67em 0 0 0.25em, 68em 0 0 0.25em, 69em 0 0 0.25em, 70em 0 0 0.25em, 71em 0 0 0.25em, 72em 0 0 0.25em, 73em 0 0 0.25em, 74em 0 0 0.25em, 75em 0 0 0.25em, 76em 0 0 0.25em, 77em 0 0 0.25em, 78em 0 0 0.25em, 79em 0 0 0.25em, 80em 0 0 0.25em;
    }

    [type="range"].kawaii::-moz-range-track {
        background: radial-gradient(circle at 0.75em 30%, var(--light) calc(0.2em - 1px), #0000 0.2em), radial-gradient(circle at 1.5em 30%, var(--light) calc(0.2em - 1px), #0000 0.2em), radial-gradient(circle at 5.5em 30%, var(--light) calc(0.2em - 1px), #0000 0.2em), linear-gradient(var(--light) 0 0) 1.5em calc(15% + 0.18em) / 4em calc(0.4em - 0.5px) no-repeat, linear-gradient(90deg, var(--base), var(--transparent) 1em), linear-gradient(var(--transparent) 70%, var(--dark) 80%), var(--base);
        border-radius: 2em;
        height: 100%;
        width: 100%;
        overflow: hidden;
    }

    [type="range"].kawaii::-moz-range-thumb {
        appearance: none;
        width: 100%;
        height: 2em;
        width: 2em;
        border: 0;
        color: var(--lighter);
        background: radial-gradient(circle at 0.75em 0.6em, var(--light) calc(0.2em - 1px), #0000 0.2em), linear-gradient(90deg, var(--transparent) 0.75em, var(--base) 0) 0 0 / 100% 50% no-repeat;
        border-radius: 50% 0 50% 50% 0;
        box-shadow: inset -0.5em 0 0.5em -0.25em var(--base), 1em 0 0 0.25em, 2em 0 0 0.25em, 3em 0 0 0.25em, 4em 0 0 0.25em, 5em 0 0 0.25em, 6em 0 0 0.25em, 7em 0 0 0.25em, 8em 0 0 0.25em, 9em 0 0 0.25em, 10em 0 0 0.25em, 11em 0 0 0.25em, 12em 0 0 0.25em, 12em 0 0 0.25em, 13em 0 0 0.25em, 14em 0 0 0.25em, 15em 0 0 0.25em, 16em 0 0 0.25em, 17em 0 0 0.25em, 18em 0 0 0.25em, 19em 0 0 0.25em;
    }

.range-group > input[type="number"] {
    /* float: right; */
    max-width: 179px;
    padding: 8px;
    font-size: 11px;
    color: #000000;
    border-radius: 100px;
    font-family: monospace;
    border: 1px solid var(--nani-secondary);
    font-weight: 200;
    margin: 10px 0px;
    margin-left: auto;
}

.range-group label {
    font-size: 15px;
    display: inline-block;
    float: left;
    margin-top: 5px;
}

.stats-strip {
    padding: 50px 0;
    background: linear-gradient(135deg, #0f2027, #1b49a0, #27a3a3);
    position: relative;
    overflow: hidden;
    display: flex;
}

    .stats-strip::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, #00d4ff33, transparent 60%);
        top: -200px;
        left: -200px;
        animation: floatBg 6s infinite alternate ease-in-out;
    }

@keyframes floatBg {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(40px);
    }
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.stat-item {
    background: rgb(4 8 69 / 51%);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    width: 100%;
    color: #fff;
    transition: all .4s ease;
}

    .stat-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
        border-color: #00d4ff;
    }

.icon-wrapper {
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .icon-wrapper i {
        font-size: 44px;
    }

.stat-icon {
    width: 52px;
    height: 51px;
    color: #fff;
    margin-bottom: 0;
}

.stat-item h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: .85;
}


/* Video */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* Dark overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0), rgb(0 0 0 / 33%));
    z-index: 1;
}



.banner-box {
    position: relative;
    width: 100%;
    /*        height: 390px;*/
    /* adjust as needed */
    overflow: hidden;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* ============================= */
/* NAVIGATION ARROWS */
/* ============================= */

.banner-carousel .owl-nav {
    position: absolute;
    top: 83%;
    width: 100%;
    transform: translateY(-50%);
    max-width: 173px;
    z-index: 1;
}

    .banner-carousel .owl-nav button {
        width: 50px;
        height: 50px;
        background: rgb(255 255 255 / 23%) !important;
        backdrop-filter: blur(8px);
        border-radius: 50% !important;
        transition: all 0.3s ease;
        position: absolute;
        border: 1px solid #c8e4f0 !important;
    }

        .banner-carousel .owl-nav button:hover {
            background: #1e7d7d !important;
        }

        .banner-carousel .owl-nav button span {
            font-size: 26px;
            color: #ffffff;
            line-height: 50px;
            display: block;
        }

        .banner-carousel .owl-nav button:hover span {
            color: #004aad;
        }
    /* Position */
    .banner-carousel .owl-nav .owl-prev {
        left: 30px;
    }

    .banner-carousel .owl-nav .owl-next {
        right: 30px;
    }
/* ============================= */
/* DOTS */
/* ============================= */

.banner-carousel .owl-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
    z-index: auto;
}

    .banner-carousel .owl-dots .owl-dot span {
        width: 12px;
        height: 12px;
        margin: 2px 3px;
        background: rgb(255 255 255);
        display: block;
        border-radius: 50%;
        transition: all 0.3s ease;
        border: 1px solid;
    }

    .banner-carousel .owl-dots .owl-dot.active span {
        width: 35px;
        border-radius: 20px;
        background: #022e6d;
        border-color: white;
    }

.banner-carousel .owl-nav i {
    font-size: 25px;
    color: white;
    line-height: 1;
    margin: auto;
}




.pro-navbar {
    background: #fff;
    padding: 18px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
    position: relative;
}
/* Main Menu */
.pro-menu {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    align-items: center;
}

    .pro-menu li {
        position: relative;
    }

    .pro-menu a {
        text-decoration: none;
        font-weight: 600;
        color: #222;
        transition: .3s;
        display: flex;
        align-items: center;
        gap: 6px;
        position: relative;
    }
        /* Hover underline */
        .pro-menu a::after {
            content: "";
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: #0d6efd;
            transition: .3s;
        }

        .pro-menu a:hover::after {
            width: 100%;
        }

        .pro-menu a:hover {
            color: #0d6efd;
        }
/* Arrow */
.arrow {
    font-size: 12px;
    transition: .3s;
}
/* Desktop Hover */
.mega-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-item:hover .arrow {
    transform: rotate(180deg);
}
/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
    transition: .35s ease;
    transition: all .5s ease;
    border-top: 4px solid #0d6efd;
}

    .mega-menu h6 {
        font-weight: 600;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 8px;
    }

    .mega-menu ul {
        list-style: none;
        padding: 0;
    }

        .mega-menu ul li {
            margin-bottom: 0px;
        }

            .mega-menu ul li a {
                font-size: 14px;
                color: #000000;
                transition: .3s;
            }

                .mega-menu ul li a:hover {
                    padding-left: 8px;
                    color: #0d6efd;
                }
/* Promo */
.promo {
    margin-top: 15px;
    background: linear-gradient(135deg, #0d6efd, #1c3faa);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}
/* Mobile */
@media(max-width:1199px) {

    .pro-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        display: none;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
    }

        .pro-menu.active {
            display: flex;
        }

    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding: 20px 0;
    }
}

li.nav-item.dropdown.mega-dropdown {
    position: static;
}

.mainnav .navbar-nav .nav-link {
    color: #0d1264;
    font-weight: 500 !important;
    font-size: 16px;
}


.promo-box {
    position: relative;
    background: linear-gradient(135deg, #0d6efd, #1c3faa);
    color: #fff;
    padding: 18px 15px;
    border-radius: 12px;
    overflow: hidden;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(13, 110, 253, .35);
    transition: .4s ease;
}
    /* Shine effect */
    .promo-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .25), transparent);
        transition: .6s;
    }

    .promo-box:hover::before {
        left: 100%;
    }

    .promo-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(13, 110, 253, .45);
    }
    /* Icon */
    .promo-box i {
        font-size: 22px;
        margin-bottom: 6px;
        display: block;
        opacity: .95;
    }
    /* Title */
    .promo-box .promo-title {
        font-weight: 600;
        font-size: 15px;
        margin-bottom: 4px;
    }
    /* Subtitle */
    .promo-box .promo-sub {
        font-size: 13px;
        opacity: .9;
    }
/* Make mega full width */
.mega-dropdown {
    position: static;
}

.mega-menu {
    width: 100%;
    left: 0 !important;
    right: 0 !important;
    margin-top: 0;
    border-radius: 12px;
    border-top: 4px solid #0d6efd;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .5s ease;
}

.ticker-container a {
    color: #ffa500;
}
/* DESKTOP HOVER */
#nbDebitCard .panel-title a {
    font-size: 17px;
}

    #nbDebitCard .panel-title a::after {
        line-height: unset;
    }

.rtdv {
    display: flex;
    align-items: center;
    max-width: 228px;
    width: 100%;
}

.keywords .text-muted {
    color: white !important;
}

.dicgc-content a {
    color: white;
}

.brin p {
    margin-bottom: 0px;
    font-size: 10px;
    text-align: center;
}

.rtdv img {
    max-width: 110px;
    aspect-ratio: 3 / 3;
    object-fit: contain;
    width: 100%;
}



.store-buttons a {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

img.brimg {
    height: auto;
    max-width: 111px;
}

@media (min-width: 768px) {

    .mega-dropdown:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        display: block;
    }
    /* Rotate arrow */
    .mega-dropdown:hover .custom-arrow {
        transform: rotate(180deg);
    }
    /* Disable bootstrap click dropdown animation */
    .mega-dropdown .dropdown-toggle::after {
        display: none;
    }
}
/* Mobile fix */

@media (max-width: 1249px) {
    div#mainNavbar {
        position: absolute;
        top: 100%;
        z-index: 999;
        background: #ffffff;
        width: 100%;
        border-radius: 0;
        padding: 10px;
        box-shadow: 0px 0px 3px #080808;
        overflow-y: auto;
        left: 0;
        right: 0;
    }

    .mega-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.leftdv p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offcanvas-body .login_btn a {
    display: block;
}

@media (min-width:1530px) {
    /* .container {
  max-width: 1500px;
} */
}


.container-custom, .container {
    padding: 0;
    width: 100%;
    max-width: 95%;
    margin: auto;
}


@media (max-width:1292px) {

    .header .container {
        max-width: 100%;
    }
}

@media (min-width:1292px) {
    .right-box h4 {
        font-size: 2.3rem;
    }

    .subhd {
        font-size: 2rem;
    }
}

@media (max-width:992px) {


    .login_btn a {
        /* font-size: 8px; */
        border: 1px solid;
    }

    .login_btn .linktext1 {
        color: #ffffff;
        border: 1px solid #e0b965;
    }

    .mainnav .navbar-nav .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 1300px) {
    .bottombar .login_btn a {
        font-size: 12px;
        display: none;
    }
}

img.mainlogo {
    padding: 0px;
    transition: 0.3s linear;
    padding: 12px 0;
}

.header.scrolled .mainlogo {
    max-width: 80px;
    object-fit: cover;
    object-position: left;
    transition: 0.3s linear;
}

img.rights {
    transform: scaleX(-1);
}

img.lefts,
img.rights {
    max-width: 51px;
    width: 100%;
}

.licon {
    position: fixed;
    top: 50%;
    left: 50%;
    font-size: 29px;
    color: #000;
    z-index: 1;
    animation: popCenter .1s ease forwards;
}

@keyframes popCenter {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    70% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.df {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .df img {
        max-width: 68px;
        aspect-ratio: 3/3;
        object-fit: contain;
        width: 100%;
    }

section.nainital-why .container {
    max-width: 1320px;
}

.stat-box img {
    aspect-ratio: 3 / 3;
    width: 100%;
    max-width: 128px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.social-icons {
    margin-bottom: 15px;
}

@media (max-width:1600px) {

    div .premium-banner-popup {
        max-width: 500px;
    }
}

@media (max-width:992px) {
    html {
        font-size: 16px;
    }

    section div .premium-banner-popup {
        max-width: 80%;
    }

    .bank-section .container {
        max-width: 95%;
    }

    .login_btn a {
        /* font-size: 9px; */
        width: 100%;
    }

    .login_btn {
        flex-wrap: nowrap;
    }

    img.img-right {
        display: none;
    }

    .banner-image img,
    .banner-image video {
        border-top-right-radius: 20px;
    }
}

.footer ul li a {
    color: white;
    display: flex;
    padding-left: 19px;
    flex-wrap: balance;
}

.ftlogo {
    display: inline-flex;
    gap: 5px;
    background-color: white;
    padding: 5px;
    border-radius: 5px;
}

    .ftlogo img {
        max-width: 57px;
    }

.dicgc-content {
    padding: 20px 0px;
    display: flex;
    gap: 14px;
}

.ulcustom > li > a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border: 1px solid var(--ib-primary, #d7a84b);
    border-radius: 50%;
    background: transparent;
    transform: translateY(-50%);
    transition: all .3s ease;
}

.ulcustom > li > a:hover::before {
    width: 7px;
    height: 7px;
    background: var(--ib-primary, #d7a84b);
    box-shadow: 0 0 0 4px rgba(215, 168, 75, .12);
}

.dropdown-menu {
    --bs-dropdown-min-width: 12rem;
}

@media (max-width:992px) {
    div div div .premium-banner-popup {
        max-width: 90%;
    }

    .header .container {
        padding: 0;
    }

    .header img.mainlogo {
        max-width: 100px;
    }

    .header .navbar {
        margin-left: auto;
        width: 100%;
    }

    .mainnav ul.navbar-nav > li + li {
        border-top: 1px solid #0d12644d;
    }

    .mainnav ul.navbar-nav > li a .bi-chevron-down {
        float: right;
        background: #f1f2f8;
        padding: 4px;
        line-height: 1;
        color: black;
        border-radius: 5px;
    }
}


.calc-section {
    display: none
}

    .calc-section.active {
        display: block
    }





.premium-banner-popup {
    max-width: 800px;
    width: 100%;
}

.swal2-html-container {
    padding: 0px;
}

.premium-banner {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.banner-overlay {
    width: 100px;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}

.banner-content {
    color: #fff;
    max-width: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    height: 100%;
    padding: 9px;
    justify-content: end;
}

    .banner-content h2 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 18px;
        margin-bottom: 25px;
    }



.banner-btn {
    padding: 2px 12px;
    border: unset;
    border-radius: 15px;
    color: #ffffff;
    z-index: 1;
    background: #0342bb;
    position: relative;
    font-size: 13px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    border: 1px solid;
}

    .banner-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 0;
        border-radius: 15px;
        background-color: #018ba9;
        z-index: -1;
        -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
        box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
        transition: all 250ms
    }

    .banner-btn:hover {
        color: #ffffff;
    }

        .banner-btn:hover::before {
            width: 100%;
        }

.premium-banner img {
    max-width: 900px;
    width: 100%;
    border: 2px solid white;
    overflow: hidden;
    border-radius: 20px;
}
/* internal  */
.heading_banner {
    position: relative;
    background: linear-gradient(180deg, #ffffff, #ff0c042e);
    padding: 60px 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    overflow: hidden;
    padding-bottom: 0;
}
    /* White Curved Shape in Center */
    .heading_banner::after {
        /* content:""; */
        position: absolute;
        bottom: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 420px;
        height: 120px;
        background: #fff;
        border-top-left-radius: 100px;
        border-top-right-radius: 100px;
        z-index: 1;
    }
/* Content Styling */
.content-box {
    position: relative;
    z-index: 2;
}

.cat_title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pageslists li {
    /* font-size: 14px; */
    /* font-weight: 500; */
    position: relative;
    /* display: grid; */
    /* place-items: center center; */
}

.pageslists a {
    text-decoration: none;
    color: #6f42c1;
    font-weight: 600;
}

    .pageslists a:hover {
        color: #000;
    }

.custom-breadcrumb-wrapper {
    padding: 15px 0;
}

    .custom-breadcrumb-wrapper .breadcrumb {
        display: flex;
        align-self: stretch;
    }

    .custom-breadcrumb-wrapper .breadcrumb-item a {
        color: #1b448a;
        /* font-weight:500; */
        text-decoration: none;
        padding-left: 9px;
        transition: 0.3s ease;
    }

        .custom-breadcrumb-wrapper .breadcrumb-item a:hover {
            color: var(--nani-secondary);
        }

    .custom-breadcrumb-wrapper .breadcrumb-item.active {
        color: #1b448a;
        padding-left: 16px;
        /* font-weight: 600; */
    }

    .custom-breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
        color: #000000;
        position: absolute;
        left: 0;
    }

.breadcrumb-item + .breadcrumb-item::before {
    content: "\F285";
    font-family: bootstrap-icons;
}

img.rightr {
    transform: scaleX(-1);
}

.custom-breadcrumb-wrapper img {
    max-width: 46px;
}


:root {
    --primary: #1d4990;
    --primary-light: #edf2fb;
    --border: #d7e1f2;
}

.search-box.linktext {
    background: var(--nani-secondary);
    padding: 7px;
    border-radius: 15px;
    line-height: 1;
    width: 34px;
    color: white;
    border: 1px solid #e0b965;
}

.internal-top-links {
    position: sticky;
    top: 0;
    background: #fff;
    padding: 9px 0;
    z-index: 101;
    box-shadow: 0 1px 5px rgb(0 0 0 / 23%);
}


.tabs-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}
/* Scrollable Nav */
.common-links-nav {
    overflow: hidden;
    flex: 1;
}

.common-links {
    display: flex;
    /* gap: 14px; */
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    line-height: 1;
}

    .common-links::-webkit-scrollbar {
        display: none;
    }
    /* Tabs */
    .common-links a {
        display: inline-block;
        color: var(--primary);
        white-space: nowrap;
        transition: all .3s ease;
    }
        /* Active */
        .common-links a.active {
            color: #27a3a3;
        }
/* Arrows */
.tab-arrow {
    background: #fff;
    border: 2px solid var(--nani-secondary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--nani-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

    .tab-arrow:hover {
        background: var(--primary);
        color: #fff;
    }

    .tab-arrow.left {
        margin-right: 10px;
    }

    .tab-arrow.right {
        margin-left: 10px;
    }

    .common-links a:focus,
    .tab-arrow:focus {
        outline: 1px solid var(--primary);
        outline-offset: -3px;
    }
/* Mobile */
@media(max-width:768px) {

    .internal-top-links {
        padding: 12px 0;
    }

    .common-links a {
        /* font-size: 13px; */
        padding: 4px 0px;
    }

    .tab-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}
/* Left Table Style */
.faq-table {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

    .faq-table .nav-link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
        color: #333;
        font-weight: 500;
        transition: 0.3s;
    }

        .faq-table .nav-link i {
            color: var(--primary);
            font-size: 18px;
        }

        .faq-table .nav-link:hover {
            background: rgba(9, 75, 198, 0.05);
        }

        .faq-table .nav-link.active {
            background: var(--primary);
            color: #fff;
        }

            .faq-table .nav-link.active i {
                color: #fff;
            }
/* Right Content */
.faq-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
    background: rgba(9, 75, 198, 0.08);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #eee;
}
/* ==============================
   NANI TABLE COMPONENT
================================= */

.nani-table .card {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
/* Header */
.nani-table .card-header {
    background: linear-gradient(135deg, var(--nani-primary), var(--nani-secondary));
    color: #fff;
    padding: 20px 28px;
    border: 0;
}

    .nani-table .card-header h5 {
        font-weight: 600;
        letter-spacing: .5px;
    }
/* Table */
.nani-table .table {
    margin-bottom: 0;
}

    .nani-table .table thead {
        background: var(--nani-primary);
        color: #fff;
    }

        .nani-table .table thead th {
            border: none;
            text-transform: capitalize;
            letter-spacing: .6px;
        }
    /* Body Cells */
    .nani-table .table td {
        padding: 10px;
        vertical-align: middle;
        font-size: 14px;
    }
/* Badge */
.nani-table .badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 12px;
}
/* Icons */
.nani-table .bi {
    font-size: 18px;
    cursor: pointer;
    color: var(--nani-primary);
    transition: .3s;
}

    .nani-table .bi:hover {
        color: var(--nani-secondary);
        transform: scale(1.15);
    }
/* Footer */
.nani-table .card-footer {
    background: #f9fbff;
    border-top: 1px solid #e8eef8;
    padding: 18px 28px;
}
/* Pagination */
.nani-table .pagination {
    margin: 0;
}

    .nani-table .pagination .page-item .page-link {
        border: none;
        color: var(--nani-primary);
        border-radius: 10px;
        margin: 0 4px;
        padding: 6px 14px;
        font-weight: 500;
        background: #eef4ff;
        transition: .3s;
    }

    .nani-table .pagination .page-item.active .page-link {
        background: var(--nani-primary);
        color: #fff;
        box-shadow: 0 5px 15px rgba(27, 67, 137, .3);
    }

    .nani-table .pagination .page-item .page-link:hover {
        background: var(--nani-secondary);
        color: #fff;
    }

.table {
    width: 100%;
    /* important */
}

    .table td,
    .table th {
        word-break: normal;
        padding: 10px;
        overflow-wrap: normal;
        line-height: 1;
    }


.news-ticker {
    display: flex;
    align-items: center;
    color: #fff;
    border-radius: 0px 0px 20px 20px;
    overflow: hidden;
    background: linear-gradient(0deg, #0d67b3, #00225e 99%);
    border-top: 2px solid #ce901f;
    border-bottom: 2px solid #ce901f;
}

.ticker-label {
    background: #ce901f;
    padding: 12px 18px;
    font-weight: 600;
    white-space: nowrap;
}

.ticker-container {
    flex: 1;
    overflow: hidden;
}

.ticker {
    display: flex;
    gap: 60px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .ticker li {
        padding: 12px 0;
        white-space: nowrap;
        padding-left: 8px;
        line-height: 1;
    }

.ticker-controls {
    display: flex;
    gap: 6px;
    padding: 7px 18px;
    background: #ce901f;
}

    .ticker-controls button {
        border: none;
        background: #fff;
        color: #003366;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        cursor: pointer;
    }

        .ticker-controls button:hover {
            background: #ce901f;
            color: #fff;
        }

.ticker li::marker {
    content: '\F122';
    font-family: 'bootstrap-icons';
    line-height: 0;
    margin-bottom: 0px;
    font-size: 14px;
    color: #84ffff;
}

li.nav-item > a {
    position: relative;
}

ul.navbar-nav > li.nav-item > a::before {
    position: absolute;
    height: 2px;
    width: 0px;
    bottom: 0;
    content: '';
    left: 0;
    background: #ffc107;
    transition: .3s;
}

li.nav-item:hover > a::before,
li.nav-item.active > a::before {
    width: 100% !important;
}


.stats-container .stat {
    background: #D20062;
    padding: 24px;
    text-align: center;
    color: #FFD0EC;
    border-radius: 25px;
}

    .stats-container .stat .odometer {
        font-size: 50px;
        font-weight: bold;
        display: inline-block;
    }

    .stats-container .stat .type {
        font-size: 20px;
    }

.odometer.plus {
    position: relative;
    font-size: 30px;
    font-weight: 900;
    color: #1b4ca3;
}

    .odometer.plus::after {
        content: "%";
        position: absolute;
        top: 0;
        right: -30px;
        font-size: 25px;
    }

.stat-wrapper .col-md-6 {
    padding: 10px 20px;
}

    .stat-wrapper .col-md-6:nth-child(even) {
        border-left: 2px solid #ccc;
    }

    .stat-wrapper .col-md-6:nth-child(1) {
        border-bottom: 2px solid #ccc;
    }

    .stat-wrapper .col-md-6:nth-child(2) {
        border-bottom: 2px solid #ccc;
    }

.stats-heading h2 {
    margin-bottom: 59px;
    color: #1b49a0;
    text-align: center;
}

.stat {
    text-align: center;
}

.statimg img {
    margin: auto;
}

.stats-heading h2 {
    margin-bottom: 25px;
    color: #1b49a0;
    text-align: center;
    font-weight: 600;
    font-size: 3rem;
}

.type {
    font-size: 20px;
    font-weight: 500;
}

.bottombar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.topheader .header-wrapper ul.social-wrapper {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
    transition: all 0.3s ease-in-out;
}

    .topheader .header-wrapper ul.social-wrapper li {
        margin-left: 5px;
    }

        .topheader .header-wrapper ul.social-wrapper li a {
            font-size: 14px;
            letter-spacing: 0.5px;
            padding: 2px 3px;
        }

ul.social-wrapper > li > a {
    color: white;
}

ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.theme-change {
    margin-left: 8px;
}

.font-adjust {
    margin-left: 8px;
}

.news-lang {
    margin-left: 8px;
}

.topnav-list li a,
.font-adjust a {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.4s ease-in-out;
}

.theme-change ul li {
    margin: 0 0.5rem;
}

    .theme-change ul li .theme-item {
        height: 16px;
        width: 18px;
        display: flex;
        border: 1px solid #e4e4e4;
        cursor: pointer;
    }

        .theme-change ul li .theme-item:before,
        .theme-change ul li .theme-item:after {
            width: 50%;
            content: "";
        }

        .theme-change ul li .theme-item.theme-1:before {
            background-color: #797979;
        }

        .theme-change ul li .theme-item.theme-1:after {
            background-color: #030303;
        }

        .theme-change ul li .theme-item.theme-2:before {
            background-color: #df1a14;
        }

        .theme-change ul li .theme-item.theme-2:after {
            background-color: #fff;
        }

li.dropdown.lang-dropdown a {
    color: #ffffff;
}

.topheader {
    margin-bottom: 10px;
}


header .desk-logo-curve svg {
    fill: #0d1264;
    width: 310px;
    height: 99px;
}

.desk-logo-curve {
    position: absolute;
    left: 7.5625rem;
    z-index: -1;
    top: 0;
}

.navwrapper {
    width: 72%;
    transition: 0.3s linear;
}

img.textlogo {
    height: 50px;
    width: 100%;
    transition: 0.3s linear;
}

.header.scrolled img.textlogo {
    width: 0;
    display: none;
    opacity: 0;
}

rect {
    height: 100px;
}

.header.scrolled .navwrapper {
    width: 91%;
}

.header.scrolled .desk-logo-curve {
    left: -10.5625rem;
}

.header.scrolled::before {
    width: 95%;
}

.login_btn span.seacrbox {
    background: transparent !important;
    color: #0d1264;
    font-size: 24px;
    width: auto;
    display: inline-block;
    font-weight: bold;
    margin-right: 8px;
}


.social-bar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 999;
}

.follow-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: #2c6aa0;
    color: #fff;
    padding: 10px 5px;
    font-size: 14px;
    border-radius: 0 8px 8px 0px;
    margin-bottom: 5px;
    font-weight: 500;
}

.icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

    .icon:hover {
        color: #ffffff;
    }
/* Colors */
.fb {
    background: #3b5998;
}

.x {
    background: #000000;
}

.yt {
    background: #ff0000;
}

.ig {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
}

.ln {
    background: #0077b5;
}
/* Rounded edges like your design */
.icon:first-of-type {
    border-radius: 8px 0px 0 0;
}

.icon:last-of-type {
    border-radius: 0px 0px 0px 8px;
}

.btn-readmore,
.btn-readmore:hover {
    background: #0d1264;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    transition: all 0.3s ease;
    margin-top: 15px;
    display: inline-block;
    font-size: 14px;
}

.sticky-container {
    padding: 0px;
    margin: 0px;
    position: fixed;
    left: -246px;
    top: 50%;
    width: 290px;
    z-index: 3;
    transform: translateY(-50%);
}



.sticky li {
    list-style-type: none;
    color: #efefef;
    padding: 0px;
    margin: 0px 0px 10px 0px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    display: flex;
    background: #0d1264;
}

    .sticky li:hover {
        margin-right: -172px;
    }

    .sticky li:last-child:hover {
        margin-left: -200px;
    }

    .sticky li img {
        float: left;
        margin: 5px 5px;
        margin-left: -2px;
        height: 25px;
        width: 23px;
        object-fit: contain;
    }

    .sticky li p {
        padding: 0px;
        margin: 0px;
        text-transform: uppercase;
        line-height: 43px;
        font-size: 12px;
        color: white;
    }

    .sticky li:first-child {
        border-radius: 0 20px 20px 0;
    }


    .sticky li:last-child {
        border-radius: 0 20px 20px 0;
    }

    .sticky li p a, ul.sticky h5 a {
        color: white;
    }

ul.sticky h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 400;
    padding: 5px 10px 5px 20px;
    margin-bottom: 0;
    cursor: pointer;
    flex-direction: row-reverse;
    width: 100%;
}

    ul.sticky h5 i {
        font-size: 20px;
        padding: 8px 9px;
        background: #f9ca6e;
        color: #1d1d1d;
        border-radius: 0 10px;
        animation: blinking 1s infinite;
    }

.header-wrapper {
    gap: 4%;
}

.header.scrolled .topheader .header-wrapper ul.social-wrapper {
    margin-left: 0;
}

.sidebtn-box {
    position: fixed;
    bottom: 20px;
    right: 0;
    transform: translateY(-50%);
    z-index: 99999;
}

    .sidebtn-box img {
        max-width: 100px;
    }

.main-card.internalban {
    border-radius: 30px;
    background: rgb(13, 18, 100);
    overflow: hidden;
}

.inrght .right-box h4 {
    color: white;
}

ul.subhd.links li {
    padding-right: 10px;
    line-height: 1;
}

    ul.subhd.links li + li {
        border-left: 2px solid white;
        padding-left: 10px;
    }
/* ==================responsive==================== */

@media (max-width: 1640px) {
    .mega-menu ul li a {
        font-size: 13px;
        color: #1e1e1e;
    }

    body .inrght .right-box h4 {
        font-size: 2rem;
    }
}

@media (max-width: 1500px) {
    img.textlogo {
        height: 35px;
    }

    .mainnav .navbar-nav .nav-link {
        font-size: 14px;
        padding: 6px;
    }



    .topheader .header-wrapper ul.social-wrapper li a {
        font-size: 12px;
        font-weight: 400;
    }

    .desk-logo-curve {
        position: absolute;
        left: 2.5625rem;
        z-index: -1;
        top: 0;
    }
}
/* Accessibility Icon */
.menuopener {
    display: none;
}
/* Show only laptop/desktop */
@media (max-width: 1249px) {

    .menuopener {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .header-wrapper.active {
        display: block !important;
    }

    .header::before {
        display: none;
    }

    img.textlogo {
        height: 40px;
    }

    .bottombar .login_btn {
        display: none !important;
    }

    .navwrapper {
        width: 100%;
        position: static;
    }

    .topheader {
        margin: 0;
    }

    .header .navbar {
        margin-right: 20%;
        position: static;
    }

    .header.scrolled img.textlogo {
        width: auto;
        display: block;
        opacity: 1;
    }

    .header-wrapper {
        gap: 0;
        flex-direction: column;
        background: #0d1264;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 10px;
        border-radius: 0;
        display: block !important;
    }

    .topheader .header-wrapper ul.social-wrapper {
        flex-direction: column;
        margin: 0;
        border-bottom: 1px solid #d3d3d380;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }


    .accessibility-menu {
        display: block !important;
    }

    .theme-change {
        margin: 0;
        margin-top: 8px;
    }

    .news-lang {
        margin-left: 0;
        margin-top: 8px;
    }

    .font-adjust {
        margin-left: 0;
        margin-top: 8px;
    }

    .header-wrapper {
        display: none !important;
    }


    .banner-image img {
        height: auto;
    }

    .dropdown-menu.mega-menu.p-4.border-0.shadow-lg.show {
        height: 300px;
        overflow-y: scroll;
    }

    .circle-icon {
        width: 60px;
        height: 60px;
    }


    .banner-carousel .owl-nav button {
        width: 30px;
        height: 30px;
    }

    .banner-carousel .owl-nav i {
        font-size: 14px;
    }

    .banner-carousel .owl-nav {
        top: 30%;
        display: none;
    }

    .desk-logo-curve {
        display: none;
    }

    .navbar-expand-md .navbar-toggler {
        display: block;
    }

    .navbar-expand-md .navbar-collapse {
        display: none !important;
    }

    .navbar-collapse.collapse.show {
        display: block !important;
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: column;
    }

    .bank-section {
        padding-top: 5px !important;
    }

        .bank-section .container {
            max-width: 100%;
        }
}


@media (max-width:568px) {
    .banner-box {
        height: 200px;
    }

    .ticker-label span {
        display: none;
    }

    button#left,
    button#right {
        display: none;
    }

    .ticker-controls {
        padding: 7px 10px;
    }

    .cbsg-header {
        margin-top: 10px;
    }

        .cbsg-header h2 {
            font-size: 20px;
            color: #0d1264;
        }

    section {
        padding: 20px 0;
    }

    .stats-heading h2 {
        font-size: 2rem;
    }
}
/* ========================
internal page 
=-===================== */

.row.btnclcl {
    display: flex;
    gap: 10px;
}

    .row.btnclcl button {
        width: auto;
        border: none;
        padding: 10px 20px;
        border-radius: 100px;
    }

.inrght .right-box {
    background: transparent;
    padding: 10px;
    height: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

    .inrght .right-box h4 {
        font-size: 3.4rem;
    }

ul.common-links li + li {
    border-left: 2px solid var(--primary);
}

ul.common-links li {
    padding: 0 10px;
}

ul.subhd.links {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.3rem;
    gap: 11px;
    padding: 15px 0;
}

    ul.subhd.links a {
        color: #ffffff;
    }

        ul.subhd.links a.active {
            color: #27a3a3;
        }

.info-icon-wrap {
    align-items: center;
}

    .info-icon-wrap svg {
        width: 180px;
        height: 158px;
    }

.info-content h3 {
    color: #1b4389; /* font-size:16px; */ /* font-weight:700; */ /* margin-bottom:8px; */
}
/* FEATURES BAR */
.features-bar {
    background: linear-gradient(169deg,rgba(30, 41, 93, 1) 0%, rgba(61, 151, 176, 1) 123%);
    border-radius: 30px;
    display: flex;
    align-items: stretch;
    overflow: hidden; /* min-height:120px; */ /* padding: 37px 0; */
}

.features-label-wrap {
    background: #3eb3c4;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 80% 0%, 100% 50%, 80% 100%, 0 100%);
    /* flex-shrink: 0; */
    height: 100%;
}

    .features-label-wrap span {
        color: #fff;
        font-size: 1.3rem;
        font-weight: 700;
        letter-spacing: .5px;
    }

.carousel-section {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 35px 8px 35px 10px;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
}

.owl-wrap {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}
/* FEATURE CARDS */
.feat-card {
    background: rgb(255 255 255);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    gap: 0;
    margin: 4px 6px;
    min-height: 90px;
}

.feat-icon-col {
    width: 100%;
    max-width: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feat-icon-col svg {
        width: 38px;
        height: 38px;
    }

.feat-divider {
    width: 2px;
    background: rgb(24 58 131);
    align-self: stretch;
    margin: 0 12px;
}

.owl-nav-btns {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-shrink: 0;
}

    .owl-nav-btns button {
        background: rgba(255,255,255,0.12);
        border: 1px solid rgba(255,255,255,0.25);
        border-radius: 50%;
        width: 30px;
        height: 30px;
        color: #fff;
        font-size: 20px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
        transition: background .2s;
    }

        .owl-nav-btns button:hover {
            background: rgba(255,255,255,0.3);
        }

        .owl-nav-btns button.nav-disabled {
            opacity: .3;
            pointer-events: none;
        }
/* OWL OVERRIDES */
.owl-dots {
    display: none !important;
}

.owl-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.owl-carousel .owl-item {
    display: flex;
}

    .owl-carousel .owl-item > .feat-card {
        flex: 1;
    }

.info-cards {
    display: flex;
    flex-direction: row;
    border-radius: 30px;
    padding: 20px 15px;
}



.terms-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.internal-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px 35px;
    border: 1px solid #dcdcdc5c;
}

.terms-title {
    color: #18246d;
    font-size: 1.6rem;
    font-weight: 600;
}

.terms-list,
.sub-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .terms-list > li,
    .sub-list > li {
        display: flex;
        padding: 15px 0;
        border-bottom: 1px solid #d8d8d8;
        flex-wrap: wrap;
    }

.sub-list {
    width: 100%;
    margin-top: 10px;
}

    .sub-list li {
        padding-left: 60px;
    }

        .terms-list > li:last-child,
        .sub-list li:last-child {
            border-bottom: none;
        }

    .terms-list i,
    .sub-list i {
        color: #34c3dd;
        font-size: 22px;
        flex-shrink: 0;
        margin-top: 1px;
        padding-right: 10px;
    }

    .terms-list span,
    .sub-list span {
        color: #010101;
        font-size: 1.1rem;
    }

@media(max-width:992px) {
    .info-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .inrght .right-box h4 {
        font-size: 1.4rem;
    }

    ul.subhd.links {
        font-size: 1.1rem;
    }

    .terms-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .terms-title {
        font-size: 1.5rem;
    }

    .terms-list span,
    .sub-list span {
        font-size: 1rem;
    }

    .sub-list li {
        padding-left: 20px;
    }
}
/* Overlay */
.gigw-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    animation: fadeIn 0.25s ease;
}
    /* Hidden State */
    .gigw-modal[hidden] {
        display: none;
    }
/* Modal Box */
.gigw-modal-content {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    text-align: center;
    animation: modalSlideUp 0.3s ease;
}
/* Title */
#modalTitle {
    margin: 0 0 15px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e293b;
}
/* Description */
#modalDesc {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}
/* Button Group */
.gigw-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}
    /* Common Button */
    .gigw-modal-actions button {
        border: none;
        cursor: pointer;
        min-width: 130px;
        padding: 12px 24px;
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        transition: all .25s ease;
    }


.btn-primary:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Mobile */
@media (max-width: 576px) {
    .gigw-modal-content {
        padding: 24px 20px;
    }

    #modalTitle {
        font-size: 1.3rem;
    }

    .gigw-modal-actions {
        flex-direction: column;
    }

        .gigw-modal-actions button {
            width: 100%;
        }
}




.coming-soon-icon {
    width: 100%;
    max-width: 400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

    .coming-soon-icon i {
        font-size: 40px;
        color: #0d6efd;
    }

.coming-soon-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.coming-soon-text {
    max-width: 600px;
    margin: 0 auto;
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.8;
}

.coming-soon-info {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 50px;
    border: 1px solid #e9ecef;
    font-weight: 500;
}

    .info-box i {
        color: #0d6efd;
        font-size: 18px;
    }

@media (max-width: 767px) {
    .coming-soon-card {
        padding: 35px 20px;
    }

    .coming-soon-title {
        font-size: 2.2rem;
    }

    .coming-soon-info {
        flex-direction: column;
        align-items: center;
    }
}


.internal-common {
    padding: 0px 0 60px;
    min-height: 60vh;
}

    .internal-common .container {
        background: #ffffff;
        border-radius: 16px;
        padding: 40px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.08);
        position: relative;
    }

.h3-title {
    position: relative;
    display: inline-block;
    padding: 0 0 1rem 0.25rem;
    margin-bottom: 1rem;
    font-size: clamp(2rem,3vw,2.3rem);
    line-height: 1;
    color: #6a1719;
}


    .h3-title::after {
        content: '';
        position: absolute;
        left: 1.25rem;
        bottom: 0;
        width: 120px;
        height: 3px;
        border-radius: 30px;
        box-shadow: 0 8px 20px rgba(13,18,100,.15);
        left: 0;
    }

    .h3-title span {
        color: #0d1264;
    }

@media(max-width:768px) {

    .h3-title {
        font-size: 1.8rem;
        padding-left: 1rem;
    }

        .h3-title::after {
            width: 90px;
            left: 1rem;
        }
}

.internal-common h3:not([class]) {
    color: #003380;
    font-size: 25px;
    display: inline-block;
    border-bottom: 2px solid #003380;
    font-size: 1.3rem;
    margin-bottom: 10px;
}



.internal-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #1d4e9e;
    position: relative;
}
    /* Main Title */
    .internal-card .h3-title {
        font-size: 2rem;
        font-weight: 500;
        color: #1d4e9e;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 12px;
    }

        .internal-card .h3-title::after {
            content: "";
            width: 80px;
            height: 4px;
            background: #fbc707;
            position: absolute;
            left: 0;
            bottom: 0;
            border-radius: 30px;
        }
    /* Section Headings */
    .internal-card h3:not(.h3-title) {
        font-size: 1.35rem;
        font-weight: 500;
        color: #1d4e9e;
        margin-top: 25px;
        margin-bottom: 15px;
        padding-left: 15px;
        border-left: 4px solid #fbc707;
    }

    .internal-card h2:not(.h2-title) {
        font-size: 1.4rem;
        font-weight: 500;
        color: #1d4e9e;
        margin-top: 25px;
        margin-bottom: 15px;
        padding-left: 15px;
        border-left: 4px solid #fbc707;
    }

    .internal-card h5:not(.h5-title) {
        font-size: 1rem;
        font-weight: 500;
        color: #1d4e9e;
        margin-top: 25px;
        margin-bottom: 15px;
        padding-left: 15px;
        border-left: 4px solid #fbc707;
    }
    /* Paragraphs */
    .internal-card p {
        color: #4d5967;
        font-size: 1rem;
        line-height: 1.9;
        margin-bottom: 12px;
    }
    /* Lists */
    .internal-card ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 15px;
    }
/* Font Awesome Square Icon */
.i-square {
    color: #fbc707;
    font-size: 10px;
    margin-right: 8px;
    vertical-align: middle;
    overflow: hidden;
    border-radius: 100px;
}
/* Nested Points */
.internal-card .ml {
    padding-left: 25px;
    margin-bottom: 8px;
}
/* Highlight Box */
.internal-card .table-responsive {
    background: #fff;
    border: 1px solid #e6edf5;
    border-radius: 12px;
    padding: 25px;
    margin-top: 20px !important;
}
/* Links */
.internal-card a {
    color: #1d4e9e;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .internal-card a:hover {
        color: #fbc707;
    }
/* Responsive */
@media (max-width: 768px) {
    .internal-card {
        padding: 25px;
    }

        .internal-card .h3-title {
            font-size: 1.6rem;
        }

        .internal-card h3:not(.h3-title) {
            font-size: 1.15rem;
        }

        .internal-card p,
        .internal-card li {
            font-size: 0.95rem;
        }
}
/*=======================
 internal pages css 
=======================*/
.i-square {
    font-size: 8px;
    top: -2px;
    position: relative;
    margin-right: 6px;
    margin-left: 15px;
}


.apply-btn {
    background: #4d10ad; /* Text color now used as background */
    color: #ffffff !important; /* White text */
    border-radius: 4px;
    padding: 4px 10px !important;
    font-size: 15px;
    text-decoration: none;
    /* Blink Animation */
    animation: blinkBtn 1s infinite;
}
/* Blink Effect */
@keyframes blinkBtn {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        opacity: 1;
    }
}


table td {
    padding: 6px;
}

    table td p {
        margin: 0;
    }

.loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 50, .70);
    backdrop-filter: blur(4px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader-card {
    width: 380px;
    background: #fff;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
    animation: popup .35s ease;
}

.loader-spinner {
    width: 70px;
    height: 70px;
    border: 6px solid #e9ecef;
    border-top: 6px solid #0d6efd;
    border-radius: 50%;
    margin: auto;
    animation: spin 1s linear infinite;
}

.loader-card h5 {
    margin-top: 20px;
    font-weight: 700;
    color: #0d6efd;
}

.loader-text {
    color: #6c757d;
    margin-top: 8px;
    margin-bottom: 20px;
}

.progress {
    height: 12px;
    border-radius: 25px;
    overflow: hidden;
    background: #edf2f7;
}

.progress-bar {
    border-radius: 25px;
    background: linear-gradient(90deg,#0d6efd,#4dabff);
}

.loader-percent {
    font-size: 18px;
    font-weight: 700;
    color: #0d6efd;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes popup {
    from {
        opacity: 0;
        transform: scale(.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* Common Internal Page Design */

.internal-card {
    background: #fff;
    border: 1px solid #dbe4f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.branch-card {
    background: #fff;
    border: 1px solid #dbe4f0;
    border-radius: 10px;
    padding: 18px;
    transition: all .3s ease;
}

    .branch-card:hover {
        border-color: var(--nani-primary);
        box-shadow: 0 4px 15px rgba(27,67,137,.08);
    }

.branch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 12px;
    margin-bottom: 16px;
}



    .branch-header .badge {
        font-size: .8rem;
        font-weight: 600;
        padding: 8px 12px;
        border-radius: 30px;
    }

.detail-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 8px;
    padding: 12px;
    height: 100%;
}

    .detail-box i {
        font-size: 18px;
        width: 20px;
        margin-top: 3px;
        flex-shrink: 0;
    }

    .detail-box strong {
        display: block;
        font-size: 13px;
        color: #6c757d;
        margin-bottom: 3px;
        text-transform: uppercase;
        letter-spacing: .3px;
    }

    .detail-box p {
        margin: 0;
        font-size: 14px;
        color: #212529;
        line-height: 1.6;
    }

.branch-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    margin-top: 8px;
}

    .branch-grid .label {
        font-size: 12px;
        color: #6c757d;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .branch-grid .value {
        font-size: 14px;
        font-weight: 600;
        color: #212529;
    }

.facility-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

    .facility-list li {
        background: #f8fafc;
        border: 1px solid #edf2f7;
        border-radius: 6px;
        padding: 10px 12px;
        font-size: 13px;
    }

        .facility-list li strong {
            color: var(--nani-primary);
        }

.branch-table {
    border: 1px solid #dbe4f0;
}

    .branch-table thead th {
        background: var(--nani-primary);
        color: #fff;
        border-color: var(--nani-primary);
        font-weight: 600;
        font-size: 14px;
        vertical-align: middle;
    }

    .branch-table tbody td {
        vertical-align: top;
        padding: 15px;
    }

    .branch-table tbody tr:nth-child(even) {
        background: #fafbfd;
    }

.dt-length,
.dt-info,
.dt-paging {
    margin-top: 12px;
}

@media (max-width: 991px) {
    .dt-length {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .branch-grid,
    .facility-list {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 767px) {

    body .sticky-container {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        width: 100%;
    }

        body .sticky-container ul {
            display: flex;
            justify-content: center;
            padding: 10px;
            gap: 5px;
            align-items: center;
        }

            body .sticky-container ul.sticky li {
                border-radius: 20px;
                margin: 0px !important;
            }

    .branch-grid,
    .facility-list {
        grid-template-columns: 1fr;
    }

    .detail-box {
        padding: 10px;
    }

    .branch-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.card-footer.bg-light {
    border-top: 1px solid #e3edf8 !important;
    color: #005bb5 !important;
    padding: 10px 15PX !important;
}

.card-footer i {
    color: #ff9800;
}


.nainislider {
    position: relative;
    max-width: 98%;
    margin: auto 10px;
    padding: 15px 20px;
}

    .nainislider .owl-nav {
        display: block !important;
    }

        .nainislider .owl-nav button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border-radius: 50% !important;
            background: #ffffff !important;
            color: #003366 !important;
            border: 1px solid #ddd !important;
            box-shadow: 0 2px 8px rgba(0,0,0,.15);
            transition: .3s;
        }

            .nainislider .owl-nav button:hover {
                background: #003366 !important;
                color: #fff !important;
            }

        .nainislider .owl-nav .owl-prev {
            left: -8px;
        }

        .nainislider .owl-nav .owl-next {
            right: 3px;
        }

        .nainislider .owl-nav button span {
            font-size: 35px;
            line-height: 0.6;
        }

}

.modal-backdrop {
    --bs-backdrop-zindex: 0;
}

.font-adjust ul {
    gap: 5px;
}

h2.counter.odometer.odometer-auto-theme {
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons a {
    background: none;
}

.ipv6-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #fff;
    border: 1px solid #cfcfcf;
    border-radius: 16px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #1b4d9c;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
    transition: .2s;
}

    .ipv6-badge:hover {
        background: #f5f5f5;
        transform: translateY(-1px);
    }

    .ipv6-badge .icon {
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #4CAF50;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        line-height: 1;
    }

    .ipv6-badge .text {
        letter-spacing: .5px;
        color: black;
    }

.common-links {
    line-height: 1.5;
}

.social-bar .mediadiv {
    /* display: flex; */
    gap: 10px;
    /* overflow: hidden; */
    en;
    */ max-height: 60px;
    opacity: 1;
    transition: width .5s ease;
}

.social-bar.collapsed .mediadiv {
    /* max-height: 0; */
    /* opacity: 0; */
    margin-top: 0;
    pointer-events: none;
}

.follow-text {
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.downclick {
    transition: transform .3s ease;
}

.social-bar.collapsed .downclick {
    transform: rotate(180deg);
}

.social-bar.collapsed .mediadiv {
    width: 0;
}

.follow-text > i {
    margin: 0px !important;
}

/*===========mobile menu ========*/



/* ===== Offcanvas ===== */

.offcanvas {
    width: 360px;
    border: 0;
    background: #f7f9fc;
}

.offcanvas-header {
    padding: 18px 20px;
    background: #0d1264;
    color: #fff;
}

    .offcanvas-header .btn-close {
        /* filter: invert(1); */
    }

/* ===== Search ===== */

.mobile-search {
    padding: 18px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 9;
    border-bottom: 1px solid #ececec;
}

    .mobile-search .input-group {
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0,0,0,.08);
    }

    .mobile-search input {
        height: 48px;
        border: 0;
        box-shadow: none;
    }

    .mobile-search .input-group-text,
    .mobile-search .btn {
        background: #fff;
        border: 0;
    }

/* ===== Menu ===== */

.mobile-nav {
    padding: 16px;
}

    .mobile-nav > li {
        margin-bottom: 1px;
    }

    .mobile-nav a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 9px 10px;
        background: #fff;
        color: #222;
        text-decoration: none;
        transition: .3s;
        box-shadow: 0 4px 12px rgba(0,0,0,.05);
    }

        .mobile-nav a:hover {
            background: #004a99;
            color: #fff;
            transform: translateX(4px);
        }

        .mobile-nav a i {
            transition: .3s;
        }

    .mobile-nav li.active > a {
        background: #0d1264;
        color: #fff;
    }

        .mobile-nav li.active > a i {
            transform: rotate(90deg);
        }

/* ===== Submenu ===== */

.submenu {
    display: none;
    margin: 8px 0 0 0px;
    border-left: 2px solid #d7e3f3;
    padding-left: 8px;
}

    .submenu li {
        margin-bottom: 8px;
    }

    .submenu a {
        background: #3eb3c4;
        font-size: 14px;
        font-weight: 500;
        color: #ffffff;
        box-shadow: none;
        border-radius: 5px;
        padding: 6px 10px;
    }

        .submenu a:hover {
            background: #dcecff;
            color: #004a99;
            transform: translateX(5px);
        }

    /* ===== Level 3 ===== */

    .submenu .submenu {
        margin-left: 4px;
        border-left: 2px dashed #c7d7ea;
    }

        .submenu .submenu a {
            background: #27a3a3;
        }

/* ===== Scroll ===== */

.mobile-menu-list {
    overflow-y: auto;
    height: calc(100vh - 219px);
    padding-bottom: 6px;
}

    .mobile-menu-list::-webkit-scrollbar {
        width: 5px;
    }

    .mobile-menu-list::-webkit-scrollbar-thumb {
        background: #b7c8dc;
        border-radius: 30px;
    }

/* ===== CTA ===== */

.mobile-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 15px;
    border-top: 1px solid #e5e5e5;
}

    .mobile-footer a {
        display: block;
        text-align: center;
        padding: 13px;
        margin-bottom: 10px;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
    }

    .mobile-footer .internet {
        background: #004a99;
        color: #fff;
    }

    .mobile-footer .demat {
        background: #17a34a;
        color: #fff;
    }

.mobile-nav a i:first-child,
.submenu a i:first-child {
    width: 22px;
    text-align: center;
    color: #0d6efd;
    font-size: 16px;
}

.submenu a i:first-child {
    font-size: 14px;
    color: #6c757d;
}

.mobile-nav a:hover i:first-child,
.mobile-nav li.active > a i:first-child {
    color: #ffffff !important;
}


/* ==========================
   CSR Gallery
========================== */

.csrgal {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

    .csrgal .card-header {
        background: #031F4B !important;
        color: #fff;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 12px 18px !important;
    }

/* Gallery Layout */
.csrgal {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    padding: 20px;
}

    /* Image Card */
    .csrgal .lightbox {
        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 10px;
        background: #f8f9fa;
        box-shadow: 0 3px 10px rgba(0,0,0,.08);
        transition: transform .3s ease, box-shadow .3s ease;
    }

        .csrgal .lightbox:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0,0,0,.18);
        }

        /* Image */
        .csrgal .lightbox img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            display: block;
            transition: transform .4s ease;
        }

        .csrgal .lightbox:hover img {
            transform: scale(1.08);
        }

    /* Zoom Icon */
    .csrgal .lightbox-zoom {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(3,31,75,.65);
        color: #fff;
        font-size: 40px;
        font-weight: 300;
        opacity: 0;
        transition: opacity .3s ease;
    }

    .csrgal .lightbox:hover .lightbox-zoom {
        opacity: 1;
    }

/* ==========================
   Responsive
========================== */

@media (max-width: 991px) {
    .csrgal {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

        .csrgal .lightbox img {
            height: 180px;
        }
}

@media (max-width: 767px) {
    .csrgal {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px;
    }

        .csrgal .lightbox img {
            height: 160px;
        }

        .csrgal .card-header {
            font-size: 1rem;
            padding: 10px 15px !important;
        }
}

@media (max-width: 480px) {
    .csrgal {
        grid-template-columns: 1fr;
    }

        .csrgal .lightbox img {
            height: 220px;
        }
}

.vdogal .info-content {
    column-count: 2;
    column-gap: 24px;
}

.vdogal iframe,
.vdogal video {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
    border: 0;
    border-radius: 8px 8px 0 0;
    display: block;
}

.vdogal .gallery-title {
    margin: 0px 0 3px;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}

.vdogal iframe,
.vdogal video,
.vdogal .gallery-title {
    break-inside: avoid;
    page-break-inside: avoid;
}

@media(max-width:768px) {
    .vdogal .info-content {
        column-count: 1;
    }
}

.offcanvas-body {
    position: relative;
    padding-bottom: 76px;
}

/* Bottom Accessibility Bar */
.mobile-accessibility-fixed {
    position: relative;
    left: 0;
    right: 0;
    bottom: 0;
    height: 56px;
    background: #fff;
    border: 1px solid #e4e8ee;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 8px;
    padding: 0 10px;
    z-index: 100;
    max-width: 95%;
    margin: auto;
}

    /* All Buttons */
    .mobile-accessibility-fixed a,
    .mobile-accessibility-fixed .theme-item {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #dfdfdf;
        border-radius: 8px;
        background: #fff;
        color: #003366;
        text-decoration: none;
        font-size: 15px;
        /* font-weight: 600; */
        cursor: pointer;
        transition: all .25s ease;
    }

        /* Hover */
        .mobile-accessibility-fixed a:hover,
        .mobile-accessibility-fixed .theme-item:hover {
            background: #003366;
            color: #fff;
            border-color: #003366;
            transform: translateY(-2px);
        }

        /* Active */
        .mobile-accessibility-fixed a:active,
        .mobile-accessibility-fixed .theme-item:active {
            transform: scale(.96);
        }

        /* Focus */
        .mobile-accessibility-fixed a:focus-visible,
        .mobile-accessibility-fixed .theme-item:focus-visible {
            outline: 2px solid #0d6efd;
            outline-offset: 2px;
        }

    /* Theme Buttons */
    .mobile-accessibility-fixed .theme-1 {
        background: #000;
        border-color: #000;
    }

    .mobile-accessibility-fixed .theme-2 {
        background: #fff;
        border: 0px solid #000;
        background: #0d1264;
    }

    /* Language Button */
    .mobile-accessibility-fixed #languageSwitcherMobile {
        width: auto;
        min-width: 58px;
        padding: 0 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Font Buttons */
    .mobile-accessibility-fixed .font-btn {
        font-family: inherit;
        letter-spacing: .3px;
    }

        .mobile-accessibility-fixed .font-btn.large {
            font-size: 17px;
        }

        .mobile-accessibility-fixed .font-btn.small {
            font-size: 13px;
        }

    .mobile-accessibility-fixed .theme-item i {
        font-size: 60px;
        color: white;
    }

    .mobile-accessibility-fixed .theme-item.theme-2.light i {
        color: #3eb3c4;
    }

.modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity);
    z-index: -1;
}

@media (min-width:1366px) {
    .vdogal .info-content {
        column-count: 3;
    }

    .vdogal .gallery-title {
        margin: 0px 0 3px;
        color: #ffffff;
        text-align: center;
        vertical-align: bottom;
        height: 72px;
        line-height: 1;
    }
}

.gallery-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    transition: .3s;
    margin-bottom: 25px;
}

    .gallery-card:hover {
        transform: translateY(-5px);
    }

.gallery-title {
    background: #00255b;
    color: #fff;
    padding: 12px 15px;
    margin: 0; /* Remove extra space */
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    /* Fixed height so all cards look equal */
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-media {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
    object-fit: cover;
}

.gallery-thumb {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

@media (max-width:768px) {
    .gallery-media,
    .gallery-thumb {
        height: 220px;
    }

    .gallery-title {
        min-height: 60px;
        font-size: 15px;
    }
}

.lang-btn {
    background: #ffcc00;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    font-weight: 500;
}

    .lang-btn:hover {
        background: #e6b800;
    }

.language-popup {
    border-radius: 10px;
}

button#uw-widget-custom-trigger {
    display: none !important;
}

span.file-meta.file-pdf {
    display: flex;
}

.bhashini-dropdown
{
    left:2% !important;
}
button.bhashini-dropdown-btn {
    width: 150px;
    border-radius: 100px;
    gap: 5px;
    padding: 7px 13px;
    background: #1c4aa2;
}