@import url('https://fonts.googleapis.com/css2?family=Playwrite+DK+Uloopet+Guides&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #0a254c;
    --secondary: #2196F3;
    --accent: #FFC107;
    --light: #F8F9FA;
    --dark: #212529;
    --success: #28a745;
    --mastergradient: linear-gradient(90deg, #005a8f, #007bb5, #00a2e0);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    top: 0px !important;
}

.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

.VIpgJd-yAWNEb-L7lbkb>div {
    display: none !important;
}

/* bank Header */
.bank-header {
    font-family: 'Inter', sans-serif;
    position: sticky;
    top: 0;
    z-index: 1009;
    /* Increased z-index */
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.bank-top-bar {
    background: #f8fbff;
    min-height: 40px;
    padding: 5px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 1px solid rgba(51, 153, 204, 0.1);
}

.logo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 110;
}

.logo-img {
    background-image: url(../images/logo-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 104px;
    max-width: 446px;
    filter: drop-shadow(1px 1px 1px #ccc);
    object-fit: contain;
    padding-right: 25px;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #2b98d3;
    font-size: 1.8rem;
    margin-right: 10px;
    cursor: pointer;
}

.query {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--mastergradient);
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    /* More rounded */
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 5px rgba(51, 153, 204, 0.2);
}

.query:hover {
    background-color: #2b82ad;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(51, 153, 204, 0.3);
}


.query a {
    align-items: center;
    color: #fff;
    text-decoration: none;
}


.top-nav-left {
    display: flex;
    gap: 15px;
}

.top-nav-left a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 4px;
}

.top-nav-left a.active {
    background: white;
    color: #2b98d3;
}

.top-nav-left a:hover:not(.active) {
    background: rgba(255, 255, 255, 0.1);
}

.top-nav-right {
    /* padding-top: 5px; */
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
    text-decoration: darkgrey;
}


.bank-middle-bar {
    background: linear-gradient(90deg, #005a8f, #007bb5, #00a2e0);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 450px;
    /* Increased to avoid logo overlap */
    padding-right: 33px;
    position: relative;
}

.bank-middle-content {
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 20px; */
    color: #fff;
}

/* .bank-search {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ccc;
    border-radius: 25px;
    padding: 0 15px;
    height: 45px;
}

.bank-search i {
    color: #666;
    font-size: 1.1rem;
    cursor: pointer;
}

.bank-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 10px;
    font-size: 0.95rem;
} */

.bank-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-text-pink {
    color: #2b98d3;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.divider {
    color: #ccc;
}

.btn-digital {
    border: 1px solid #2b98d3;
    color: #2b98d3;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-digital:hover {
    background: #e6f3fa;
}

.btn-login-burgundy {
    background: #2b98d3;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-login-burgundy:hover {
    background: #1a7ab0;
    color: white;
}

.bank-bottom-bar {
    background: white;
    padding-left: 300px;
    height: 45px;
    display: flex;
    align-items: center;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.bank-main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.bank-main-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

/* Mega Menu CSS */
.bank-middle-bar {
    position: relative;
    /* Anchor for full width dropdown */
}

.mega-nav-item {
    position: static;
    display: inline-block;
}

.mega-nav-item>a {
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 19px 0;
    /* Vertical pad triggers hover without gap */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.mega-nav-item>a i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}


@media (min-width: 1000px) {
    .mega-nav-item:hover>a i {
        transform: rotate(180deg);
    }

    .mega-nav-item:hover>a {
        color: #ffeb3b;
    }
}

.mega-nav-item:hover>a i {
    transform: rotate(180deg);
}

.mega-nav-item:hover>a {
    color: #ffeb3b;

}

.mega-menu {
    position: absolute;
    width: 900px;
    right: 20px;
    top: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    /* Glassmorphism */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    display: none;
    /* Changed from opacity/visibility for reliability */
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border-top: 4px solid #3399CC;
    padding: 30px;
    padding-left: 5px;
    padding-left: 0px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

@media (min-width: 1000px) {
    .mega-nav-item:hover .mega-menu {
        display: block;
        transform: translateY(0);
    }
}

.mega-nav-item.mobile-open .mega-menu {
    display: block;
    /* Changed from opacity/visibility */
    transform: translateY(0);
}

.mega-grid {
    display: flex;
    justify-content: space-between;
    /* gap: 30px; */
    max-width: 100%;
    margin: 0 auto;
}

/* Fix for Bootstrap Offcanvas clipping the mega menu */
@media (min-width: 992px) {
    .offcanvas-body {
        overflow: visible !important;
    }

    .offcanvas-lg {
        overflow: visible !important;
    }
}

.mega-col h4 {
    color: #3399CC;
    font-size: 15px;
    margin-bottom: 2px;
    /* border-bottom: 2px solid #d1d0d0; */
    padding-bottom: 7px;
}

.mega-col h4 i {
    color: #3399CC !important;
}


.mega-col ul li h5 {
    color: #3399CC;
    font-size: 15px;
    margin-bottom: 2px;
    /* border-bottom: 2px solid #d1d0d0; */
    padding-bottom: 5px;
}

.mega-col ul li {
    list-style: none;
    margin-bottom: 10px;
}

.mega-col a {
    display: initial;
    color: #3399CC;
    text-decoration: none;
    transition: all 0.3s;
}

.mega-col a:hover {
    color: #1a7ab0 !important;
    padding-left: 6px;
}

.mega-col p {
    color: #555 !important;
    display: block;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.mega-col {
    width: 30%;
}
.mega-col ul {
    padding-left: 15px;
}
.mega-col-img {
    width: 350px;
}

@media (max-width: 1400px) {

    .bank-middle-bar {
        padding-left: 350px;
    }

    .mega-nav-item>a {
        text-decoration: none;
        color: #fff;
        /* font-size: 0.95rem; */
        font-weight: 500;
        /* padding: 19px 0; */
        display: inline-flex;
        align-items: center;
        gap: 2px;
        transition: color 0.3s;
    }
}


@media (max-width: 1282px) {

    .bank-middle-bar,
    .bank-bottom-bar {
        justify-content: center;
        height: 60px;
    }

    .bank-main-nav {
        gap: 7px;
    }

    .mega-nav-item>a {
        font-size: 13px;
        padding-right: 4px;
        font-weight: 500;
    }

    .bank-main-nav>a {
        font-size: 13px;
        padding-right: 9px;
    }

    .mega-menu {
        padding: 15px;
        width: 801px;
    }

    .mega-grid {
        gap: 10px;
    }

    .bank-main-nav a {
        font-size: 14px;
    }

    .mega-col h4 {
        font-size: 13px;
    }

    .mega-col ul li h5 {
        font-size: 13px;
    }

    .mega-col p {
        font-size: 10px;
    }

    .mega-col {
        width: 235px;
    }
}

.logo-img {
    background-image: url(../images/logo-bg-1220.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100px;
    width: 350px;
    filter: drop-shadow(1px 1px 1px #ccc);
    object-fit: contain;
    padding-right: 25px;
}

.mega-nav-item>a {
    text-decoration: none;
    color: #fff;
    /* font-size: 0.95rem; */
    font-weight: 500;
    /* padding: 19px 0; */
    display: inline-flex;
    align-items: center;
    gap: 2px;
    transition: color 0.3s;

}

.col-img {
    margin-top: -12px;
    width: 100%;
    /* height: 180px; */
}

.col-img img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@media (max-width: 1134px) {

    .bank-middle-bar,
    .bank-bottom-bar {
        justify-content: center;
        height: 60px;
    }

}

@media (max-width: 1074px) {

    .logo-img {
        height: 95px;
        width: 330px;
    }

    .bank-middle-bar,
    .bank-bottom-bar {
        height: 56px;
    }

    .mega-nav-item>a {
        font-size: 11px;
    }

    .bank-middle-bar {
        padding-left: 310px;
    }
}


@media (max-width: 991px) {
    .bank-header {
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .logo-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 10px 0px;
        background: #fff;
        z-index: 1010;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    .logo-img {
        height: 60px !important;
        width: 271px !important;
        background: none !important;
        padding-right: 0 !important;
        filter: none !important;
    }

    .bank-top-bar {
        justify-content: space-between;

        padding-top: 10px;
        padding-bottom: 5px;
        flex-wrap: wrap;
    }

    .bank-top-links {
        display: flex;
        align-items: center;
    }

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

    .bank-middle-bar {
        padding-left: 15px;
        padding-right: 15px;
        height: auto;
    }

    .bank-middle-content {
        align-items: stretch;
    }

    .bank-main-nav {
        display: flex;
        /* offcanvas handles hiding when closed */
        flex-direction: column;
        width: 100%;
        background: transparent;
        padding-bottom: 15px;
        align-items: flex-start;
        gap: 0;
    }

    .bank-main-nav>a,
    .mega-nav-item>a {
        padding: 15px 10px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        justify-content: space-between;
        color: #333 !important;
        /* Force dark text in white offcanvas */
    }

    .mega-col p {

        display: none;

    }


    .bank-main-nav>a:hover,
    .mega-nav-item>a:hover {
        background: rgba(0, 0, 0, 0.02);
    }

    .mega-menu {
        position: static;
        width: 90%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-left: 2px solid #3399CC;
        background: #f8f9fa;
        display: none;
        padding: 10px 15px;
        margin-left: 5px;
        border-radius: 0;
    }

    .mega-nav-item {
        display: block;
        width: 100%;
    }

    .mega-nav-item.mobile-open .mega-menu {
        display: block;
    }

    .mega-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0px;
        width: 100%;
    }

    .mega-col {
        width: 100%;
        overflow: hidden;
    }

    .mega-menu-image {
        display: none;
    }


    .mega-col h4 {
        margin-bottom: 2px;
        border-bottom: 1px solid #d1d0d0;
        padding-bottom: 6px;
    }

    .mega-col a {
        display: inline-block;
        width: 80%;
    }

    .mega-col ul {
        padding-left: 12px;
    }


    .query {
        display: flex;
        align-items: center;
        font-size: 15px;
        background-color: #3399CC;
        color: #fff;
        padding: 6px 12px;
        border-radius: 10px;
        text-decoration: none;

    }

    .query:hover {
        transform: translateY(-1px);
    }


    .query a {
        align-items: center;
        color: #fff;
        text-decoration: none;
    }
}

@media (min-width:400px) and (max-width:768px) {
    .logo-img {
        height: 77px !important;
        width: 84% !important;
        background: none !important;
        padding-right: 0 !important;
        filter: none !important;
    }
}

@media (max-width:540px) {
    .logo-wrapper {
        padding: 0px 0px;
    }

}

@media (max-width:350px) {
    .mega-nav-item a {
        font-size: 13px !important;
    }

    .mega-col a {
        width: 87%;
    }

}


/*------------------- nav end -------------------*/


/*------------------- Hero Slider -------------------*/
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: block;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
    z-index: -1;
}

.hero-slide-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 5%;
    position: relative;
    color: white;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(62 58 58 / 68%);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.prev-btn {
    left: 2%;
}

.next-btn {
    right: 2%;
}

.slider-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(135deg, var(--primary) 0%, #1e3c72 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 678px;
    z-index: 10;
}

.hero-content h1 {
    color: #ffffff;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    animation: slideUp 1s ease-out;
}

.hero-content p {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 2rem;
    font-weight: 600;
    opacity: 0.9;
    animation: slideUp 1s ease-out 0.2s backwards;
}

/* Custom sizes for first slide */
.hero-main-title {
    font-size: clamp(1.5rem, 5vw, 3.125rem) !important;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-sub-title {
    font-size: clamp(0.95rem, 2vw, 1.25rem) !important;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.hero-graphics {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: auto;
    z-index: 1;
}

.hero-btn {
    background: var(--mastergradient);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 1180px) {
    .hero-slider-container {
        position: relative;
        width: 100%;
        height: 58vh;
        overflow: hidden;
        display: block;
    }

    .hero-content h1 {
        font-size: 25px;
    }
}

@media (max-width: 992px) {
    .dot {
        width: 7px;
        height: 7px;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        position: relative;
        width: 100%;
        height: 45%;
        overflow: hidden;
        display: block;
    }

    .hero-content {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .hero-content h1 {
        color: #ffffff;
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 10px;
        font-weight: 800;
        animation: slideUp 1s ease-out;
    }

    .hero-content p {
        color: #0D1164;
        font-size: 14px;
        margin-bottom: 15px;
        font-weight: 600;
        animation: slideUp 1s ease-out 0.2s backwards;
    }

    .hero-btn {
        background-color: #3399CC;
        color: #fff;
        padding: 5px 12px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        display: inline-block;
    }


}

@media (max-width: 450px) {
    .hero-slider-container {
        width: 100%;
        height: 25%;
    }
}

/*------------------- Hero Slider end -------------------*/



@media (min-width: 1399px) {
    .offcanvas-body {
        overflow: visible !important;
        display: flex;
        align-items: center;
    }

    .offcanvas-header {
        display: none !important;
    }
}

.btn {
    padding: 7px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background: var(--mastergradient);
    color: white;
}

.btn-primary:hover {
    background-color: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
    margin-right: 10px;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--dark);
}





/* ----------------- Updates Marquee -----------------*/
.updates-marquee-container {
    display: flex;
    align-items: center;
    background: #fff;
    /* border-bottom: 1px solid #e0e0e0; */
    height: 45px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.updates-label {
    background: var(--primary);
    color: #fff;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    box-shadow: 3px 0 10px rgba(0, 0, 0, 0.1);
}

.updates-label::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    border-left: 16px solid var(--primary);
    border-top: 22.5px solid transparent;
    border-bottom: 22.5px solid transparent;
}

.bell-icon {
    margin-right: 8px;
    color: var(--accent);
    animation: ring 2s infinite ease-in-out;
}

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

    10% {
        transform: rotate(15deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(5deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    50%,
    100% {
        transform: rotate(0);
    }
}

.marquee-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.marquee-text {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: scroll-marquee 25s linear infinite;
    padding-left: 30px;
}

.marquee-text span {
    font-size: 0.95rem;
    color: #444;
    display: inline-flex;
    align-items: center;
}

.marquee-text span i {
    color: var(--secondary);
    margin-right: 6px;
    font-size: 1.1rem;
}

.marquee-text strong {
    color: #d32f2f;
    margin-right: 5px;
    font-weight: 600;
}

.marquee-content:hover .marquee-text {
    animation-play-state: paused;
}

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

    100% {
        transform: translateX(calc(-50% - 25px));
    }
}

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

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

@media (max-width: 768px) {
    .updates-marquee-container {
        height: 35px;
    }

    .updates-label::after {
        display: none;
    }

    .updates-label {
        padding: 0 12px;
    }

    .bell-icon {
        margin-right: 0;
    }

    .marquee-text {
        gap: 30px;
        padding-left: 15px;
        animation: scroll-marquee-mobile 20s linear infinite;
    }

    .marquee-text span {
        font-size: 0.88rem;
    }

    .marquee-text span i {
        font-size: 1rem;
    }
}

/* -----------------marquee end -----------------*/

/* ----------------- Services Slider -----------------*/
.py-5 {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--light);
}

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

.mb-4 {
    margin-bottom: 2rem;
}

.services-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.services-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.service-card {
    min-width: 300px;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 0 0 auto;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.service-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.srv-btn {
    background: white;
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.1rem;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.srv-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

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

    50% {
        transform: translateY(-15px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-graphics {
        width: 400px;
        opacity: 0.9;
    }

    .mega-nav-item a {
        font-size: 14px;
    }


}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-graphics {
        position: relative;
        width: 100%;
        max-width: 400px;
        top: 0;
        transform: translateY(0);
        margin: 0 auto;
    }

    /* nav ul { display: none; } removed because it prevented the mobile mega menus from expanding */

    .hero h1 {
        font-size: 1.2rem;
    }

    .calc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .account-card.popular {
        transform: scale(1);
    }

    .account-card.popular:hover {
        transform: translateY(-10px);
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-slide-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .slider-btn {
        width: 30px;
        height: 29px;
        font-size: 11px;
        /* Hide arrows on mobile, rely on dots/swipe ideally */
    }
}

/* -----------------services end -----------------*/


/*------------------- Premium Services -------------------*/
/* Unique Container */
.premium-section {
    background: linear-gradient(135deg, #1e3c72 0%, var(--primary) 100%);
    padding: 50px 0;
    display: flex;
    justify-content: center;
}

.services-section-premium {

    width: 80%;
    max-width: 1300px;
    overflow: hidden;
    border-radius: 20px;
}

.section-title-premium {
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    margin-bottom: 0px;
}

.slider-wrapper-premium {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.services-track-premium {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 10px 0;
}

.slider-wrapper-premium {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}


/* Glassmorphism Card Style */
.service-card-premium {
    flex: 0 0 300px;
    /* Fixed width for better control */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding-bottom: 20px;
    text-align: center;
    color: #ffffff;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.service-card-premium:hover {
    transform: translateY(-15px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.3);
}

.service-image-premium {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: transform 0.5s ease;
}

.service-card-premium:hover .service-image-premium {
    transform: scale(1.05);
}

.service-icon-premium {
    /* font-size: 3rem;
    margin-bottom: 20px; */
    color: #ffffff;
}

.service-card-premium h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.service-card-premium p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    padding: 0 15px;
}

.premium-hide {
    opacity: 0;
    transform: translateY(50px) !important;
    pointer-events: none;
}

.srv-link-premium {
    display: inline-block;
    margin-top: 15px;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.srv-link-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.srv-link-premium:hover::before {
    left: 100%;
}

.srv-link-premium:hover {
    background: var(--secondary);
    color: #ffffff;
    border-color: var(--secondary);
    box-shadow: 0 0 15px rgba(33, 150, 243, 0.4);
}

/* Premium Slider Controls */
.service-controls-premium {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.srv-btn-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.srv-btn-premium:hover {
    background: var(--mastergradient);
    border-color: var(--secondary);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.srv-btn-premium:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .premium-section {
        padding: 20px 0;
    }

    .services-section-premium {
        width: 90%;
    }

    .section-title-premium h2 {
        color: #ffffff;
        text-align: center;
        font-weight: 700;
        margin-bottom: 0px;
    }

    .service-card-premium {
        min-width: 300px;
    }

    .service-image-premium {
        height: 150px;
    }

    .service-card-premium h3 {
        font-size: 1.2rem;
    }

    .service-card-premium p {
        font-size: 0.85rem;
    }

    .srv-link-premium {
        font-size: 0.9rem;
        padding: 6px 20px;
    }

    .service-controls-premium {
        margin-top: 20px;
    }

    .srv-btn-premium {
        width: 40px;
        height: 40px;
    }

}

/*============== POSTER SECTION==================== */

.poster-section {
    padding: 50px 0;
    background: #fdfdfd;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.poster-card {
    justify-content: center;
    display: flex;
    position: relative;
    /* border-radius: 20px; */
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

}

.poster-card img {
    width: 100%;
    object-fit: cover;
}

.poster-content {
    position: absolute;
    top: 31%;
    margin-left: 111px;
    padding: 25px 20px;
}

.poster-content h3 {
    font-size: 35px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000000;
}

.poster-content p {
    font-size: 19px;
    line-height: 1;
    color: #000000;
}

.poster-content-2 {
    position: absolute;
    top: 35%;
    left: 29px;
    padding: 25px 20px;
}

.poster-content-2 h3 {
    font-size: 35px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #ffffff;
}

.poster-content-2 p {
    font-size: 19px;
    line-height: 1;
    color: #ffffff;
}

.lg-display-none {
    display: none;
}

.sm-display-none {
    display: block;
}

@media (min-width: 993px) {
    .lg-display-none {
        display: block;
    }

    .sm-display-none {
        display: none;
    }
}

@media (max-width: 992px) {
    .lg-display-none {
        display: none;
    }

    .sm-display-none {
        display: block;
    }
}

@media (max-width: 350px) {
    .poster-content {
        position: absolute;
        width: 168px;
        top: 31%;
        right: 0;
        padding: 0px 0px;
    }
}

@media (max-width: 776px) {

    .hero-slider-container {
        width: 100%;
        height: 25%;
    }


    .poster-content {
        position: absolute;
        width: 50%;
        top: 31%;
        right: 5;
        padding: 0px 0px;
        margin: 0;
    }

    .poster-content h3 {
        font-size: 15px !important;
        margin-bottom: 10px;
        font-weight: 700;
        color: #000000;
    }

    .poster-content p {
        font-size: 11px !important;
        line-height: 1;
        color: #000000;
    }

    .poster-content-2 {
        position: absolute;
        top: 35%;
        left: 9px;
        width: 50%;
        padding: 0px 0px;
    }

    .poster-content-2 h3 {
        font-size: 14.5px !important;
        margin-bottom: 10px;
        font-weight: 700;
        color: #ffffff;
    }

    .poster-content-2 p {
        font-size: 11px !important;
        line-height: 1;
        color: #ffffff;
    }
}

@media (max-width: 680px) {}



/* -----------circular slider start------------- */

/* 1. Global Variables & High-Res Fixes */
:root {
    --primary-blue: #007bff;
    --dark-blue: #003366;
    --radius: 320px;
    --card-width: 280px;
    --card-height: 400px;
}

/* 2. Main Layout Container */
.circle-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 850px;
    background: #f8f9fa;
    overflow: hidden;
    /* High Perspective prevents extreme distortion/blur */
    perspective: 3000px;
    padding: 60px 0;
}

/* 3. Morphing Play/Pause Button (Centered) */
.controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 80px;
    z-index: 100;
}

.toggle-auto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    position: relative;
    width: 20px;
    height: 20px;
}

.bar {
    position: absolute;
    background: var(--primary-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default State: PAUSE (2 Bars) */
.bar-1 {
    left: 0;
    width: 7px;
    height: 20px;
}

.bar-2 {
    right: 0;
    width: 7px;
    height: 20px;
}

/* Play State: Triangle Morph */
.toggle-auto.is-playing .bar-1 {
    left: 0;
    width: 22px;
    height: 20px;
    clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}

.toggle-auto.is-playing .bar-2 {
    opacity: 0;
    transform: scale(0);
}

/* 4. The Rotating Track */
.circle-track {
    position: relative;
    width: var(--card-width);
    height: var(--card-height);
    transform-style: preserve-3d;
    animation: rotateOpposite 30s linear infinite;
    /* Smooth movement when clicking cards */
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}

.circle-track.is-paused {
    animation-play-state: paused;
}

/* 5. Product Cards (Sharpness Fixes) */
.product-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;

    /* Centering Content */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;

    /* BLUR FIX: High-quality rendering properties */
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    transform-style: preserve-3d;
    image-rendering: -webkit-optimize-contrast;

    /* 3D Position */
    transform: rotateY(calc(var(--i) * 72deg)) translateZ(var(--radius));
}

.product-card img {
    width: 100%;
    max-height: 140px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 {
    color: var(--dark-blue);
    font-size: 1.3rem;
    margin: 10px 0;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* 6. Card Button (Perfectly Centered) */
.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-blue);
    color: white !important;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    margin-top: auto;
    transition: 0.3s;
}

.card-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

/* 7. Keyframes (Clockwise) */
@keyframes rotateOpposite {
    from {
        transform: rotateY(360deg);
    }

    to {
        transform: rotateY(0deg);
    }
}

/* 8. Mobile Responsiveness */
@media (max-width: 768px) {
    :root {
        --radius: 200px;
        --card-width: 200px;
        --card-height: 320px;
    }

    .circle-container {
        min-height: 600px;
    }
}

/* ------------------------------------------------------------------- */




.gpt-slider {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.gpt-service {
    position: absolute;
    width: 140px;
    text-align: center;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gpt-service img {
    width: 50px;
    height: 50px;
}

.gpt-service h4 {
    margin: 5px 0;
    font-size: 14px;
}

.gpt-service p {
    font-size: 12px;
    color: #555;
}

.gpt-service button {
    margin-top: 5px;
    padding: 5px 10px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
}

/* Positioning in circle */
.service:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

.service:nth-child(2) {
    top: 25%;
    left: 85%;
    transform: translate(-50%, -50%);
}

.service:nth-child(3) {
    top: 75%;
    left: 85%;
    transform: translate(-50%, -50%);
}

.service:nth-child(4) {
    top: 100%;
    left: 50%;
    transform: translate(-50%, -100%);
}

.service:nth-child(5) {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
}





/*------------------- Premium Services end -------------------*/

/*------------- digital banking feature showcase------------- */
.feature-showcase {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}

.feature-showcase h2 {
    color: rgb(10, 37, 76);
    font-weight: 700;
    font-size: 45px;
    margin-bottom: 5px;
}

/* App Download Buttons */
.app-download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0 50px;
    flex-wrap: wrap;
}

.app-btn {
    display: flex;
    align-items: center;
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    min-width: 190px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.app-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.app-btn i {
    font-size: 2.2rem;
    margin-right: 15px;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-btn-text span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
    opacity: 0.8;
}

.app-btn-text strong {
    font-size: 1.15rem;
    font-weight: 500;
}

.apple-btn {
    background: #000;
}

.apple-btn:hover {
    background: #222;
}

.play-btn {
    background: #000;
}

.play-btn:hover {
    background: #222;
}

.play-btn i {
    background: linear-gradient(135deg, #4285f4 20%, #34a853 50%, #fbbc05 80%, #ea4335 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.visual-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: auto;
    /* Adjust based on your image height */
}

.showcase img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}



.feature-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 200px;
    text-align: left;
}

/* Positioning specific items */
.item-1 {
    top: 5%;
    left: 0;
}

.item-2 {
    top: 5%;
    right: 0;
    flex-direction: row-reverse;
    text-align: right;
}

.item-3 {
    top: 45%;
    left: 0;
}

.item-4 {
    top: 45%;
    right: 0;
    flex-direction: row-reverse;
    text-align: right;
}

.item-5 {
    bottom: 5%;
    left: 0;
}

.item-6 {
    bottom: 5%;
    right: 0;
    flex-direction: row-reverse;
    text-align: right;
}

.icon {
    background: #fdf2f5;
    color: #971237;
    /* Axis-style burgundy */
    padding: 10px;
    border-radius: 50%;
    font-weight: bold;
}

@media (max-width: 992px) {
    .feature-showcase {
        text-align: center;
        padding: 18px 13px;
        padding-bottom: 50px;
        background-color: #fff;
    }

    .app-download-buttons {
        margin: 0%;
    }

    .feature-showcase h2 {
        font-size: 26px;
    }

    .feature-showcase p {
        font-size: 14px;
    }

    .app-btn-text span {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 3px;
        opacity: 0.8;
    }

    .app-btn-text strong {
        font-size: 1.15rem;
        font-weight: 500;
    }

}

/* -----------------------end--------------------------------- */


/*------------------- Loan Section -------------------*/
.loan-section .container {
    max-width: 1200px;
    margin: 0 auto;

}

.loan-section h2 {
    font-size: 45px;
    font-weight: 700;
    color: rgb(10, 37, 76);
    text-align: center;
}

.slider-wrapper-loan {
    position: relative;
    overflow: hidden;
    padding: 10px 0;
}

.services-track-loan {
    display: flex;
    gap: 30px;
}

.loan-card {
    flex: 0 0 350px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.loan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.loan-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.loan-body {
    padding: 25px;
    text-align: left;
}

.loan-body h3 {
    color: #0a254c;
    /* var(--primary) equivalent in this project usually */
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.loan-body p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-controls-loan {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.srv-btn-loan {
    background: #fff;
    border: 1px solid #ddd;
    color: #3399CC;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-btn-loan:hover {
    background: var(--mastergradient);
    border-color: #3399CC;
    color: #fff;
}

@media (max-width: 768px) {
    .loan-card {
        flex: 0 0 280px;
    }

    .loan-section h2 {
        font-size: 32px !important;
        font-weight: 700;
        color: rgb(10, 37, 76);
        text-align: center;
    }

}

/*------------------- Loan Section End -------------------*/



/* --------------------about us cards----------------- */

:root {
    --primary1: #88BDF2;
    --dark1: #0a254c;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
/* body {
    background: linear-gradient(180deg, #eef6ff, #ffffff);
} */

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* TITLE */
.about-text {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    color: var(--dark1);
    margin: 80px 0 60px;
}

.about-sticky-top {
    top: 106px !important;
    z-index: 90;
}

.about-text span {
    color: var(--primary1);
}

/* STACK */
.cards-stack {
    position: relative;
}

/* CARD */
.about-card {
    position: sticky;
    top: 120px;
    height: 420px;
    display: flex;
    align-items: center;
    padding: 50px;
    margin-bottom: 40px;
    border-radius: 25px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(15px);

    border: 1px solid rgba(136, 189, 242, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

    transform: scale(1);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* TEXT */
.card-text {
    flex: 0.5;
}

.card-text h2 {
    font-size: 32px;
    color: var(--dark1);
    margin-bottom: 15px;
}

.card-text p {
    font-size: 17px;
    color: var(--dark1);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTON */
.btn-learn {
    background: var(--primary1);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

/* IMAGE */
.card-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.card-visual img {
    width: 85%;
    border-radius: 15px;
}

/* ALTERNATE */
.reverse {
    flex-direction: row-reverse;
}

/* STACK OFFSET */
.card1 {
    top: 170px;
    background-image: url('../images/bmc-building.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card2 {
    top: 180px;
    background-image: url('../images/card-objective.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card3 {
    top: 190px;
    z-index: 100;
    background-image: url('../images/card-performance.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.card4 {
    top: 180px;
    z-index: 100;
    background-image: url('../images/New-Arrival.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

/* RESPONSIVE */
@media(max-width: 768px) {
    .about-card {
        flex-direction: column;
        height: 230px;
        padding: 25px;
    }

    .card-visual {
        display: none;
    }

    .about-text {
        font-size: 32px;
        margin: 10px 0 16px;
    }

    .card-text p {
        font-size: 13px;
    }

    .card-text h2 {
        font-size: 24px;
    }
}




/*------------------- about us cards end -------------------*/



/*------------------- loan calculator logic -------------------*/


:root {

    --bg-color: #f6f8fb;
    --card-bg: #ffffff;
    --primary-color: #007bb5;
    --primary-gradient: linear-gradient(90deg, #005a8f, #007bb5, #00a2e0);
    --secondary-color: #00a2e0;
    /* Blue for chart interest */
    --principal-color: #005a8f;
    /* Dark blue for chart principal */
    --text-main: #333333;
    --text-muted: #888888;
    --border-color: #e0e4eb;
    --slider-track: #e0e4eb;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.loan-calculator-section {
    background-color: #e3e9f2;
    padding: 40px 0px;
}

.emi-widget {
    background-color: var(--bg-color);
    border-radius: 12px;
    padding: 40px;
    padding-top: 15px;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 40px auto;
    margin-top: 8px;
}

.calculator-head p {
    color: #5a6d88;
    font-size: 15px;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
}

.calculator-head h2 {
    font-size: 30px;
    color: #0f315f;
    margin-bottom: 0px;
}

.calculator-head h6 {
    font-size: 25px;
    /* margin-top: 65px; */
    margin-bottom: 0px;
    color: #3399CC;

}

.calculator-title {
    text-align: center;
    margin-bottom: 30px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Left Section */
.left-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-header label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}

.input-box {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px 10px;
    width: 120px;
}

.input-box input {
    border: none;
    outline: none;
    width: 100%;
    text-align: right;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: transparent;
}

.prefix,
.suffix {
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
}

.prefix {
    margin-right: 5px;
}

.suffix {
    margin-left: 5px;
}

/* Range Slider Styles */
.slider-wrapper {
    position: relative;
    width: 100%;
    padding: 5px 0;
}

.range-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--slider-track);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fff;
    border: 5.5px solid var(--primary-color);
    cursor: pointer;
    margin-top: -8px;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 0 1px #fff inset;
    /* ensures clean inner circle */
}

.range-slider::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #fff;
    border: 5.5px solid var(--primary-color);
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 13px;
    color: #8a94a6;
    font-weight: 500;
}

/* EMI Result Container */
.emi-result-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.emi-result-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.emi-amount-display {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.emi-label {
    font-size: 16px;
    color: var(--text-main);
    font-weight: 500;
}

.emi-value {
    font-size: 24px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-color);
    display: inline-block;
}

.cta-button {
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: inherit;
}

.cta-button:hover {
    opacity: 0.9;
}

.emi-note {
    font-size: 11px;
    color: var(--text-muted);
}

/* Right Section */
.right-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.chart-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donut-chart-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin-bottom: 40px;
}

.chart-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    width: 100%;
}

.center-label {
    font-size: 12px;
    color: #7b8698;
    margin-bottom: 4px;
}

.center-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
}

.chart-legend {
    display: flex;
    gap: 25px;
    justify-content: center;
    width: 100%;
}

.legend-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 4px;
}

.principal-dot {
    background-color: var(--principal-color);
}

.interest-dot {
    background-color: var(--secondary-color);
}

.legend-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.item-label {
    font-size: 12px;
    color: #7b8698;
}

.item-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
}

/* Responsive Design */
@media (max-width: 800px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }

    .emi-widget {
        padding: 2px;
    }



    .emi-result-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
    }

    .donut-chart-container {
        width: 220px;
        height: 220px;
    }

    .calculator-head p {
        color: #5a6d88;
        font-size: 15px;
        line-height: 1.8;
        max-width: 720px;
        margin: 0 auto;
    }

    .calculator-head h2 {
        font-size: 26px;
        color: #0f315f;
        margin-bottom: 0px;
    }

    .calculator-head h6 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 0px;
        color: #3399CC;

    }
}


/*------------------- loan calculator end -------------------*/


/*------------------- New Pages CSS -------------------*/

.modern-footer .container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 5%;
}

.page-header {
    background: var(--primary);
    color: white;
    padding: 6rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-content {
    padding: 5rem 0;
    min-height: 50vh;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Account Cards */
.account-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.account-card.popular {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.account-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.acc-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.account-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.account-card p {
    color: #666;
    margin-bottom: 2rem;
}

.acc-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.acc-features li {
    margin-bottom: 0.8rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.text-success {
    color: var(--success);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--secondary);
    color: var(--secondary);
    text-align: center;
}

.btn-outline-primary:hover {
    background: var(--secondary);
    color: white;
}

.mt-auto {
    margin-top: auto;
}

.mt-4 {
    margin-top: 2rem;
}

/*------------------- RBI Video Section -------------------*/
.rbi-video-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.rbi-video-section .section-title-premium {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    text-align: center;
}

.rbi-video-section .section-subtitle-premium {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    text-align: center;
}

.rbi-video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.rbi-video-card .video-thumbnail {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.rbi-video-card .video-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rbi-video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.rbi-video-card .video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.rbi-video-card .video-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    flex: 1;
}

.source-info {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    font-size: 0.8rem;
    color: #999;
}

.source-info strong {
    color: #555;
}

.rbi-video-card iframe {
    width: 100%;
    height: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {

    .rbi-video-section .section-title-premium {
        font-size: 23px !important;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 15px;
        text-align: center;
    }

    .rbi-video-section .section-subtitle-premium {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
        text-align: center;
    }

    .source-info {
        margin-top: 20px;
        padding-top: 0px;
        border-top: 1px solid #eee;
        font-size: 12px;
        color: #999;
    }

    .rbi-video-section {
        padding: 40px 0;
    }

    .rbi-video-section .section-title {
        font-size: 2rem;
    }

    .rbi-video-section .section-subtitle {
        font-size: 1rem;
    }

    .rbi-video-card .video-thumbnail img {
        height: 180px;
    }

    .rbi-video-card .play-button {
        width: 50px;
        height: 50px;
    }

    .rbi-video-card .play-button i {
        font-size: 20px;
    }

    .loan-calculator-section {
        background-color: #e3e9f2;
        padding: 40px 0px;
    }
}

/*------------------- RBI Video Section end -------------------*/

/*------------------- Main Footer -------------------*/

.container-fluid {
    max-width: 1440px;
    margin: 0 auto;
}

.modern-footer {
    background: #003149;
    color: #f8f8ff;
    font-family: inherit;
    position: relative;
    padding: 2rem 0 0;
    margin-top: 50px;
    opacity: 1;
    text-align: left;
    border-radius: 12px;
    /* width: 1200px; */
}


.main-content {
    /* max-width: 1360px; */
    margin: 0 auto;
}

.footer-card {
    max-width: 1300px;
    margin: 0 auto 40px;
    padding: 1.5rem 2rem;
    background: #ffffff;
    color: #0a254c;
    border-radius: 28px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    margin-bottom: 0px;
    top: -100px;
}

.footer-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-widget {
    min-width: 220px;
    flex: 1;
}

.footer-label {
    margin-bottom: 0px;
}

.footer-brand-logo {
    height: 55px;
    display: block;
    /* margin-bottom: 12px; */
}

.footer-tagline {
    margin: 0;
    padding-left: 50px;
    /* color: #e2e8f0; */
    font-size: 12px;
    /* line-height: 1.6; */
    opacity: 0.95;
}


.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-col {
    text-align: left;
}

.footer-logo {
    height: 55px;
    margin-bottom: 20px;
    background: white;
    padding: 3px;
    border-radius: 8px;
}

.footer-desc {

    line-height: 1.75;
    margin-left: 40px;
    font-size: 0.95rem;
}

.footer-heading {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-decoration-line: underline;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    /* background: #f9aa33; */
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}

.footer-download a {
    background: #000;
    color: #fff;
    padding: 7px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s;
}

.footer-download p {
    margin: 0 0 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    /* color: #f8f8ff; */
}

.footer-numbers {
    font-size: 16px;
    font-weight: 700;
    /* color: var(--accent); */
    margin-bottom: 0px;
}

.download-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.download-buttons a {
    background: rgba(255, 255, 255, 0.1);
    /* color: #ffffff; */
    border-radius: 14px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}

.download-buttons a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}


.store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    text-align: left;
}

.store-text small {
    font-size: 0.68rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.store-text span:last-child {
    font-size: 1rem;
    font-weight: 700;
}

.footer-download i {
    font-size: 1.45rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-grid .about-col {
        grid-column: span 2;
        text-align: center;
    }

    .footer-brand-logo {
        margin: 0 auto 10px;
    }

    .footer-tagline {
        padding-left: 0;
    }

    .footer-body {
        flex-direction: column;
        text-align: center;
    }

    .footer-download,
    .footer-contact {
        text-align: center;
    }

    .download-buttons {
        justify-content: center;
    }

    .footer-desc {
        line-height: 1.75;
        margin-left: 6px;
    }

    .mega-nav-item a {
        font-size: 12px !important;
    }



    .footer-card {
        max-width: 1300px;
        margin: 0 auto 40px;
        padding: 1.5rem 2rem;
        background: #ffffff;
        color: #0a254c;
        border-radius: 28px;
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        margin-bottom: 0px;
        top: -100px;
        margin-left: 5px;
        margin-right: 5px;

    }

    .footer-download a {
        background: #000;
        color: #fff;
        padding: 7px 15px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        gap: 7px;
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.15);
        transition: all 0.3s;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid .about-col {
        grid-column: span 1;
    }

    .footer-col {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .footer-bottom-inner h6 {
        margin-top: 15px;
    }

    .footer-legal a {
        margin: 0 10px;
    }

    .footer-heading {
        color: #ffffff;
        font-size: 20px !important;
        font-weight: 600;
        margin-bottom: 0px;
        position: relative;
        padding-bottom: 6px;
        text-decoration-line: underline;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .footer-links a {
        color: #cbd5e1;
        text-decoration: none;
        transition: all 0.25s ease;
        display: inline-flex;
        align-items: center;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .footer-card {
        padding: 1.4rem 1rem;
    }

    .footer-body {
        gap: 18px;
    }

    .footer-numbers {
        font-size: 16px;
    }

    .download-buttons a {
        min-width: 150px;
        padding: 0.85rem 0.9rem;
    }

}

.footer-bottom {
    background: #061020;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #94a3b8;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #ffffff;
}

.contact-info p {
    margin-bottom: 10px;
    color: #cbd5e0;
    display: flex;
    align-items: center;
    gap: 10px;
}



/* Dynamic Back to Top */
.back-to-top {
    position: fixed;
    bottom: -50px;
    /* Hidden initially */
    right: 30px;
    width: 45px;
    height: 45px;
    background: #3399CC;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(51, 153, 204, 0.4);
}

.back-to-top.active {
    bottom: 30px;
    opacity: 1;
}

.back-to-top:hover {
    background: #1e3c72;
    color: white;
    transform: translateY(-5px);
}



/* -------------------------- Footer End --------------------- */

/* Global Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, rgba(10, 37, 76, 0.85) 0%, rgba(30, 60, 114, 0.85) 100%), url('../images/bank_hero_bg.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumb-nav {
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: #e0e0e0;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: #fff;
}

.breadcrumb-active {
    color: #3399CC;
    font-weight: 600;
}

.poster-header p {
    font-size: 18px !important;
}

@media (max-width: 360px) {
    h1 {
        font-size: 15px !important;
    }

    h2 {
        font-size: 20px !important;
    }

    h3 {
        font-size: 13px !important;
    }

    h4 {
        font-size: 13px !important;
    }

    h5 {
        font-size: 16px !important;
    }

    h6 {
        font-size: 16px !important;
    }

    p {
        font-size: 12px !important;
    }
}

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

    .a,
    .btn,
    .btn-primary,
    .btn-secondary,
    .btn-success,
    .btn-danger,
    .btn-warning,
    .btn-info,
    .btn-light,
    .btn-dark {
        font-size: 13px !important;
    }
}

@media (max-width: 360px) {
    .left-section {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .chart-card {
        background-color: #ffffff;
        border-radius: 12px;
        padding: 9px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .breadcrumb-nav {
        font-size: 13px;
        opacity: 0.8;
    }

}

@media (max-width: 360px) {
    .footer-brand-logo {
        height: 53px;
    }
}

@media (max-width: 360px) {
    .bullet-list li::before {
        font-size: 13px !important;
        display: none !important;
    }

    .bullet-list li {
        font-size: 13px !important;
        padding-left: 0px !important;
    }



}

@media (max-width: 660px) {
    .contact-form-container {
        padding: 20px !important;
    }

    .form-control {
        padding: 8px 12px !important;
        font-size: 14px !important;
    }

    .submit-btn {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }

    .btn-submit {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }

    .griev-content {
        padding: 13px !important;
    }
}

@media (min-width: 1130px) and (max-width: 1290px) {

    /* Your styles here */
    .bank-main-nav {
        gap: 10px;
    }

    .bank-middle-bar,
    .bank-bottom-bar {
        height: 60px;
    }
}

.glass-card {
    backdrop-filter: none !important;
}