:root {
    --primary-color: #0066ff;
    --secondary-color: #004ec2;
    --text-color: #333;
    --white: #ffffff;
    --header-bg: #1a237e;  /* Dark blue background */
    --header-text: #ffffff; /* White text */
    --menu-hover: #ff9800;
    --bs-yellow: #fd7e14;
    --bd-orange: #ffc107;
}

body {
    padding-top: 0;
    font-family: 'Segoe UI', sans-serif;
}

.navbar {
    background-color: var(--header-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1030;
}

.navbar.scrolled {
    background-color: rgba(26, 35, 126, 0.95); /* Semi-transparent version of header-bg */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-nav {
    margin-left: 30px;
}

.navbar-nav .nav-item {
    position: relative;
    margin: 0 5px;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 15px 20px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--menu-hover);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--menu-hover);
}

.navbar-nav .nav-item.active .nav-link {
    color: var(--menu-hover);
}

.navbar-nav .nav-item.active .nav-link::after {
    width: 100%;
}

.navbar-nav .nav-link {
    color: var(--header-text);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-nav .nav-link i {
    margin-right: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover i {
    transform: translateY(-2px);
}

.btn-language {
    background: linear-gradient(45deg, #2193b0, #6dd5ed);
    color: white;
    border: none;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.btn-language:hover {
    background: linear-gradient(45deg, #6dd5ed, #2193b0);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33, 147, 176, 0.3);
}

.btn-auth {
    background-color: var(--bs-yellow);
    border: none;
    color: white;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-auth i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-auth:hover i {
    transform: translateX(2px);
}

.btn-auth:hover {
    background-color: var(--bd-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item i {
    margin-right: 8px;
    width: 20px;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    padding-left: 25px;
}

@media (max-width: 991.98px) {
    .nav-right {
        margin-top: 1rem;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-right .btn {
        width: 100%;
        margin: 0.25rem 0;
    }

    .nav-right .dropdown,
    .nav-right .btn-auth {
        width: 100%;
    }

    .dropdown {
        width: 100%;
        margin: 0 !important;
    }

    .btn-language {
        width: 100%;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        font-size: 16px;
    }

    .navbar-nav {
        margin-left: 0;
        padding: 20px 0;
    }

    .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .navbar-nav .nav-link {
        padding: 10px 15px;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .btn-language, .btn-login, .btn-signup {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }

    .btn-auth {
        width: 100%;
        justify-content: center;
        margin: 5px 0;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
    }

    /* Remove margin from login button in mobile */
    .btn-auth.me-2 {
        margin-right: 0 !important;
    }

    /* Ensure icons are aligned properly */
    .btn-language i,
    .btn-auth i {
        font-size: 16px;
        margin-right: 8px;
    }
}

/* Add this for mobile menu icon color */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Remove all previous .hero-slider and .carousel related styles and replace with these */

.hero-slider {
    margin-top: 65px;
    width: 100%;
    overflow: hidden;
    position: relative;
    top: 0;
}

.carousel {
    position: relative;
    top: 0;
}

.carousel-item {
    position: relative;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 0;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .hero-slider {
        margin-top: 65px;
    }
}

/* Basic carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.7;
}

.carousel-indicators {
    margin-bottom: 1rem;
    z-index: 15;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--white);
    opacity: 0.5;
    transition: all 0.3s ease;
    margin: 0 5px;
    border: none;
}

.carousel-indicators .active {
    opacity: 1;
    background-color: var(--white);
    transform: scale(1.2);
}

/* Hide carousel controls on mobile */
@media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition-duration: 0.6s;
}

@media (max-width: 768px) {
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

/* Add after existing styles */
.whats-new {
    background-color: #f8f9fa;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--header-bg);
    margin-bottom: 15px;
}

.title-line {
    width: 80px;
    height: 3px;
    background: var(--menu-hover);
    margin: 0 auto;
}

.news-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.news-card img {
    width: 100%;
    height: 450;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.about-bank {
    background-color: var(--white);
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(26, 35, 126, 0.2), rgba(255, 152, 0, 0.2));
    z-index: 1;
}

.about-content .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--header-bg);
    margin-bottom: 15px;
}

.about-content .lead {
    font-size: 20px;
    color: var(--bs-yellow);
    font-weight: 500;
}

.about-content p {
    color: var(--text-color);
    line-height: 1.8;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 24px;
    color: var(--bs-yellow);
    width: 50px;
    height: 50px;
    background: rgba(253, 126, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    background: var(--bs-yellow);
    color: var(--white);
    transform: rotate(360deg);
}

.feature-item h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var (--text-color);
}

@media (max-width: 991.98px) {
    .about-content {
        text-align: center;
        padding-top: 30px;
    }

    .title-line {
        margin: 0 auto;
    }

    .feature-item {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .feature-item {
        padding: 15px;
    }

    .feature-item i {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .feature-item h4 {
        font-size: 16px;
    }
}

.app-download {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.app-content {
    position: relative;
    z-index: 1;
}

.app-content .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--header-bg);
    margin-bottom: 15px;
}

.app-content .lead {
    font-size: 20px;
    color: var(--bs-yellow);
    font-weight: 500;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.app-features li:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.app-features li i {
    color: var(--bs-yellow);
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: rgba(253, 126, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.app-features li:hover i {
    background: var(--bs-yellow);
    color: var(--white);
    transform: rotate(360deg);
}

@media (max-width: 768px) {
    .app-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 25px 0;
    }

    .app-features li {
        padding: 20px;
        margin-bottom: 15px;
    }

    .app-features li:last-child {
        margin-bottom: 0;
    }

    /* Specific margins for each feature box */
    .app-features li:nth-child(1) { margin-bottom: 25px; } /* Quick Balance Check */
    .app-features li:nth-child(2) { margin-bottom: 25px; } /* Instant Fund Transfer */
    .app-features li:nth-child(3) { margin-bottom: 25px; } /* Bill Payment */
    .app-features li:nth-child(4) { margin-bottom: 25px; } /* Mobile Top-up */
    .app-features li:nth-child(5) { margin-bottom: 25px; } /* Secure Banking */

    .app-content {
        padding: 0 15px;
    }
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.google-play {
    background: #000000;
    color: white;
}

.apple-store {
    background: #000000;
    color: white;
}

.store-button i {
    font-size: 30px;
}

.button-text {
    display: flex;
    flex-direction: column;
}

.small-text {
    font-size: 12px;
    opacity: 0.8;
}

.large-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 575.98px) {
    .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .store-button {
        width: 100%;
        justify-content: center;
    }
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.store-button {
    transition: all 0.3s ease;
}

.store-button:hover {
    transform: translateY(-5px);
}

.store-button img {
    height: 50px;
    width: auto;
}

.app-image {
    position: relative;
    text-align: center;
}

.app-image img {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: floatAnimation 3s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .app-content {
        text-align: center;
        margin-bottom: 40px;
    }

    .title-line {
        margin: 0 auto;
    }

    .app-features {
        display: inline-block;
        text-align: left;
    }

    .app-buttons {
        justify-content: center;
    }

    .app-image img {
        max-width: 60%;
    }
}

@media (max-width: 575.98px) {
    .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .store-button img {
        height: 45px;
    }
}

.app-video {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.video-content .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--header-bg);
    margin-bottom: 15px;
}

.video-content .lead {
    font-size: 20px;
    color: var(--bs-yellow);
    font-weight: 500;
    margin-bottom: 20px;
}

.video-description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.video-wrapper {
    position: relative;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    overflow: hidden;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-btn {
    width: 90px;
    height: 90px;
    background: var(--bs-yellow);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-btn i {
    color: var(--white);
    font-size: 35px;
    margin-left: 8px;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--header-bg);
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.4);
}

.video-description {
    padding: 30px 20px;
}

.video-description h3 {
    color: var(--header-bg);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.video-description p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .video-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .title-line {
        margin: 0 auto;
    }

    .play-btn {
        width: 70px;
        height: 70px;
    }

    .play-btn i {
        font-size: 28px;
    }

    .video-description h3 {
        font-size: 20px;
    }

    .video-description p {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .video-wrapper {
        border-radius: 15px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn i {
        font-size: 24px;
        margin-left: 5px;
    }
}

.loan-plans {
    background-color: #f8f9fa;
}

.loan-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.loan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.loan-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.loan-icon i {
    font-size: 32px;
    color: var(--white);
}

.loan-card:hover .loan-icon {
    transform: rotate(360deg);
    background: var(--header-bg);
}

.loan-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--header-bg);
}

.interest-rate {
    margin-bottom: 25px;
}

.interest-rate .rate {
    font-size: 36px;
    font-weight: 700;
    color: var(--bs-yellow);
    display: block;
}

.interest-rate .period {
    font-size: 14px;
    color: #666;
}

.btn-loan {
    background: var(--bs-yellow);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 25px;
    border: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-loan:hover {
    background: var(--header-bg);
    color: var(--white);
    transform: translateY(-2px);
}

#loanCarousel .carousel-indicators {
    position: relative;
    margin-top: 30px;
}

#loanCarousel .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--bs-yellow);
}

@media (max-width: 991.98px) {
    .loan-card {
        padding: 25px;
    }

    .loan-icon {
        width: 70px;
        height: 70px;
    }

    .loan-icon i {
        font-size: 28px;
    }

    .loan-card h3 {
        font-size: 20px;
    }

    .interest-rate .rate {
        font-size: 30px;
    }
}

@media (max-width: 767.98px) {
    .loan-card {
        margin-bottom: 20px;
    }
}

/* Add these styles to your style.css file */
.loan-details {
    margin: 20px 0;
    text-align: left;
    padding: 0 15px;
}

.loan-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.loan-details ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.loan-details ul li i {
    color: var(--bs-yellow);
    font-size: 16px;
}

.loan-card {
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .loan-details ul li {
        font-size: 13px;
    }
    
    .loan-card {
        padding: 25px 15px;
    }
}

.emi-calculator {
    background-color: var(--white);
}

.calculator-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--header-bg);
    font-weight: 500;
}

.form-control {
    height: 50px;
    border-radius: 10px;
    border: 2px solid #e1e1e1;
    padding: 10px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--bs-yellow);
    box-shadow: 0 0 0 0.2rem rgba(253, 126, 20, 0.25);
}

.result-box {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-box label {
    color: var(--header-bg);
    font-weight: 500;
    margin-bottom: 8px;
}

.emi-result {
    font-size: 24px;
    font-weight: 700;
    color: var(--bs-yellow);
    display: flex;
    align-items: center;
    gap: 5px;
}

.currency {
    font-size: 20px;
    opacity: 0.8;
}

.btn-calculate {
    background: var(--bs-yellow);
    color: var(--white);
    padding: 12px 40px;
    border-radius: 25px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-calculate:hover {
    background: var(--header-bg);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
}

@media (max-width: 768px) {
    .calculator-card {
        padding: 25px;
    }
    
    .form-control {
        height: 45px;
        font-size: 15px;
    }
    
    .emi-result {
        font-size: 20px;
    }
}

.emi-calculator .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--header-bg);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calculator-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .emi-calculator .section-title {
        font-size: 24px;
    }
    
    .calculator-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

.loan-overview {
    background: var(--white);
    padding: 60px 0;
}

.loan-overview .section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--header-bg);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.title-line {
    width: 80px;
    height: 3px;
    background: var(--bs-yellow);
    margin: 0 auto;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .loan-overview .section-title {
        font-size: 24px;
    }
    
    .overview-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .title-line {
        margin-bottom: 30px;
    }
}

.overview-tabs {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-tabs {
    border: none;
    margin-bottom: 30px;
    justify-content: center;
    gap: 15px;
}

.nav-tabs .nav-link {
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: var(--bs-yellow);
}

.nav-tabs .nav-link.active {
    background: var(--bs-yellow);
    color: var(--white);
}

.tab-content {
    padding: 20px;
}

/* Overview Tab Styles */
.overview-content h3 {
    color: var(--header-bg);
    margin-bottom: 20px;
    font-size: 24px;
}

.key-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.point {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.point i {
    font-size: 32px;
    color: var(--bs-yellow);
    margin-bottom: 15px;
}

.point h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--header-bg);
}

.point p {
    color: #666;
    font-size: 14px;
}

/* Features Tab Styles */
.feature-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-list li i {
    color: var(--bs-yellow);
    font-size: 20px;
}

/* Eligibility & Documents Styles */
.eligibility-criteria,
.doc-category {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.eligibility-criteria h4,
.doc-category h4 {
    color: var(--header-bg);
    margin-bottom: 15px;
    font-size: 18px;
}

.doc-category ul {
    list-style: none;
    padding: 0;
}

.doc-category ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #666;
}

.doc-category ul li i {
    color: var(--bs-yellow);
}

@media (max-width: 768px) {
    .overview-tabs {
        padding: 20px;
    }

    .key-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .nav-tabs .nav-link {
        white-space: nowrap;
        padding: 10px 20px;
    }
}

.customer-reviews {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.review-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--bs-yellow) 0%, var(--header-bg) 100%);
}

.review-profile {
    margin-bottom: 20px;
    position: relative;
}

.review-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bs-yellow);
    padding: 3px;
    background: white;
    margin: 0 auto;
}

.review-rating {
    margin: 15px 0;
    color: var(--bs-yellow);
}

.review-rating i {
    margin: 0 2px;
    font-size: 16px;
}

.review-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-name {
    color: var(--header-bg);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.reviewer-title {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Swiper navigation customization */
.reviews-slider .swiper-button-next,
.reviews-slider .swiper-button-prev {
    color: var(--header-bg);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reviews-slider .swiper-button-next:after,
.reviews-slider .swiper-button-prev:after {
    font-size: 18px;
}

.reviews-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.reviews-slider .swiper-pagination-bullet-active {
    background: var(--header-bg);
}

@media (max-width: 768px) {
    .review-card {
        padding: 20px;
        margin: 10px;
    }

    .review-profile img {
        width: 60px;
        height: 60px;
    }

    .review-text {
        font-size: 14px;
    }

    .reviewer-name {
        font-size: 16px;
    }
}

#reviewCarousel .carousel-control-prev,
#reviewCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--bs-yellow);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
}

#reviewCarousel .carousel-control-prev {
    left: -20px;
}

#reviewCarousel .carousel-control-next {
    right: -20px;
}

#reviewCarousel .carousel-control-prev i,
#reviewCarousel .carousel-control-next i {
    color: var(--white);
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .review-card {
        margin-bottom: 20px;
    }
    
    #reviewCarousel .carousel-control-prev,
    #reviewCarousel .carousel-control-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .reviewer-image {
        width: 50px;
        height: 50px;
    }
    
    .reviewer-details h4 {
        font-size: 16px;
    }
    
    .review-text {
        font-size: 13px;
    }
}

.footer {
    background-color: var(--header-bg);
    color: #fff;
}

.footer-top {
    background: linear-gradient(rgba(26, 35, 126, 0.97), rgba(26, 35, 126, 0.97));
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--bs-yellow);
    transform: translateY(-3px);
}

.footer-widget h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--bs-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--bs-yellow);
    padding-left: 5px;
}

.footer-hours li {
    margin-bottom: 12px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
}

.footer-hours span {
    font-weight: 600;
    color: var(--bs-yellow);
}

.online-banking {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--bs-yellow);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
}

.footer-contact li i {
    color: var(--bs-yellow);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--bs-yellow);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.payment-methods img {
    height: 40px;
}

@media (max-width: 991.98px) {
    .footer-widget {
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom {
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-widget h4 {
        margin-bottom: 20px;
    }
}

.support-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.support-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bs-yellow);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(253, 126, 20, 0.3);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.support-toggle i {
    font-size: 24px;
    margin-bottom: 2px;
}

.support-toggle span {
    font-size: 0;
    transition: all 0.3s ease;
}

.support-toggle:hover {
    width: 140px;
    border-radius: 30px;
}

.support-toggle:hover span {
    font-size: 12px;
}

.support-options {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95) translateY(20px);
    transform-origin: bottom right;
    transition: all 0.3s ease;
}

.support-options.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.support-header {
    text-align: center;
    margin-bottom: 20px;
}

.support-header h4 {
    color: var(--header-bg);
    margin-bottom: 5px;
    font-size: 18px;
}

.support-header p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.support-channels {
    display: grid;
    gap: 10px;
}

.channel-btn {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.channel-btn i {
    font-size: 20px;
    margin-right: 10px;
}

.channel-btn span {
    font-size: 14px;
}

.messenger { background: #0084ff; }
.whatsapp { background: #25d366; }
.telegram { background: #0088cc; }
.imo { background: #00b0ed; }

.channel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
}

@media (max-width: 768px) {
    .support-widget {
        bottom: 20px;
        right: 20px;
    }

    .support-options {
        width: 260px;
        bottom: 70px;
    }
}

/* Add these styles to your existing style.css */

.about-hero {
    background: linear-gradient(rgba(26, 35, 126, 0.97), rgba(26, 35, 126, 0.97));
    color: #fff;
    padding: 80px 0;
}

.about-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 20px;
    color: var(--bs-yellow);
    margin-bottom: 20px;
}

.vision-card,
.mission-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 32px;
    color: #fff;
}

.value-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 36px;
    color: var(--bs-yellow);
    margin-bottom: 15px;
}

.value-card h4 {
    color: var(--header-bg);
    margin-bottom: 10px;
    font-size: 20px;
}

.value-card p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 991.98px) {
    .about-content h1 {
        font-size: 32px;
    }
    
    .about-content .lead {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 60px 0;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .value-card {
        padding: 20px;
    }
}

.about-intro {
    background: linear-gradient(to right, var(--header-bg) 60%, transparent 60%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.section-subtitle {
    color: var(--bs-yellow);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-content h1 {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: var(--bs-yellow);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.about-image-wrapper {
    position: relative;
}

.main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.shape-image {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: -1;
    width: 200px;
    opacity: 0.5;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--bs-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-box h3 {
    color: var(--header-bg);
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-box p {
    color: #666;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .about-intro {
        background: var(--header-bg);
    }

    .about-content h1 {
        font-size: 32px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-image-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-box {
        padding: 25px;
    }
}

/* About Page Styles */
.about-banner {
    background: linear-gradient(rgba(26, 106, 126, 0.95), rgba(26, 35, 126, 0.95));
    padding: 120px 0 80px;
    color: white;
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content .lead {
    font-size: 20px;
    color: var(--bs-yellow);
    margin-bottom: 40px;
}

.bank-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: var(--bs-yellow);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.vision-card, .mission-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: var(--bs-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.icon-box i {
    font-size: 28px;
    color: white;
}

.value-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-card i {
    font-size: 32px;
    color: var(--bs-yellow);
    margin-bottom: 15px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
}

.team-header {
    background: #f8f9fa;
    padding: 15px;
    text-align: center;
}

.team-logo {
    height: 40px;
    width: auto;
}

.team-img {
    width: 100%;
    height: 591px; /* Set fixed height */
    object-fit: cover; /* Maintain aspect ratio and cover container */
    display: block;
}

.team-info {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.team-info h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

.team-info .designation {
    color: #666;
    margin: 0;
    font-size: 14px;
}

/* Add hover effect */
.team-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Make cards responsive */
@media (max-width: 768px) {
    .team-img {
        height: 400px; /* Smaller height for mobile devices */
    }
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    margin-bottom: 5px;
    color: var(--header-bg);
}

.designation {
    color: #666;
    margin-bottom: 15px;
}

.social-links a {
    color: var(--bs-yellow);
    margin: 0 10px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--header-bg);
}

@media (max-width: 991.98px) {
    .about-banner {
        padding: 100px 0 60px;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .bank-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .bank-stats {
        grid-template-columns: 1fr;
    }

    .team-img {
        height: 250px;
    }
}

/* Update the leadership section styles */
.leadership {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.team-card {
    max-width: 350px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .leadership {
        padding: 60px 0;
    }
    
    .team-card {
        max-width: 300px;
    }
}

/* Update banner image styles */
.banner-image {
    position: relative;
    padding: 20px;
    margin-left: 30px;
}

.banner-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.banner-image::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bs-yellow);
    border-radius: 20px;
    transform: rotate(-3deg);
    z-index: -1;
}

/* Update team card styles */
.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    max-width: 350px;
    margin: 0 auto;
}

.team-header {
    background: var(--header-bg);
    padding: 15px;
    text-align: center;
}

.team-logo {
    height: 40px;
}

.team-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-info {
    padding: 20px;
    text-align: center;
    background: white;
}

.team-info h4 {
    color: var(--header-bg);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.designation {
    color: #666;
    margin: 0;
    font-size: 16px;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

@media (max-width: 991.98px) {
    .team-card {
        max-width: 300px;
    }
    
    .team-img {
        height: 250px;
    }
}

@media (max-width: 991.98px) {
    .banner-content {
        padding-right: 0;
    }
    
    .banner-image {
        margin-left: 0;
        margin-top: 40px;
    }
}

/* Add these login styles to your existing CSS */
.login-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #c2bdbd 0%, #c2bdbd 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.login-card {
    background: linear-gradient(145deg, hsl(184, 83%, 32%), #f8f9fa);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Optional: Add hover effect to login card */
.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .login-card {
        padding: 30px 20px;
    }
}

.login-logo {
    height: 60px;
    margin-bottom: 20px;
}

.login-card h2 {
    color: var(--header-bg);
    font-weight: 700;
    margin-bottom: 10px;
}

.form-label {
    color: var(--header-bg);
    font-weight: 500;
    margin-bottom: 8px;
}

.input-group-text {
    background-color: #f8f9fa;
    border-right: none;
}

.input-group-text i {
    color: var(--header-bg);
    width: 16px;
    text-align: center;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-left: none;
    box-shadow: none;
}

.input-group .form-control:focus + .input-group-text {
    border-color: #86b7fe;
}

.input-group-text {
    background: #f8f9fa;
    color: #666;
}

.btn-login {
    background: var(--bs-yellow);
    color: white;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: var(--header-bg);
    color: white;
    transform: translateY(-2px);
}

.forgot-link {
    color: var(--bs-yellow);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.forgot-link:hover {
    color: var (--header-bg);
}

.signup-link {
    color: var(--bs-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.signup-link:hover {
    color: var(--header-bg);
}

@media (max-width: 768px) {
    .login-card {
        padding: 30px 20px;
    }
    
    .login-logo {
        height: 50px;
    }
}

/* Add these signup styles to your existing CSS */
.signup-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #c2bdbd 0%, #c2bdbd 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.signup-card {
    background: linear-gradient(145deg, hsl(184, 83%, 32%), #f8f9fa);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.signup-logo {
    height: 60px;
    margin-bottom: 20px;
}

.signup-card h2 {
    color: var(--header-bg);
    font-weight: 700;
    margin-bottom: 10px;
}

.btn-signup {
    background: var(--bs-yellow);
    color: white;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background: var(--header-bg);
    color: white;
    transform: translateY(-2px);
}

.login-link {
    color: var(--bs-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-link:hover {
    color: var(--header-bg);
}

@media (max-width: 768px) {
    .signup-card {
        padding: 30px 20px;
    }
    
    .signup-logo {
        height: 50px;
    }
}

/* Add to your style.css file */
.dps-plans-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.dps-plan-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dps-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.plan-header {
    background: linear-gradient(135deg, var(--header-bg) 0%, #1a237e 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plan-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    pointer-events: none;
}

.plan-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    position: relative;
}

.interest-rate {
    margin-top: 15px;
    position: relative;
}

.interest-rate .rate {
    font-size: 48px;
    font-weight: 700;
    color: var(--bs-yellow);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.interest-rate .period {
    font-size: 14px;
    opacity: 0.9;
    display: block;
}

.plan-details {
    padding: 30px 25px;
}

.plan-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-details li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #666;
    padding: 10px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.plan-details li:hover {
    transform: translateX(5px);
    background: #f0f1f2;
}

.plan-details li i {
    color: var(--bs-yellow);
    margin-right: 15px;
    font-size: 20px;
    width: 24px;
    text-align: center;
}

.plan-details li span {
    font-weight: 600;
    margin-right: 5px;
    color: var(--header-bg);
}

.plan-details li.highlight {
    background: #811616;
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin: 25px auto 0;  /* Center the element */
    max-width: 80%;      /* Reduce width */
    padding: 15px;       /* Adjust padding */
    text-align: center;  /* Center text */
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan-details li.highlight i {
    margin-right: 8px;   /* Reduce icon margin */
    font-size: 18px;     /* Adjust icon size */
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .plan-details li.highlight {
        max-width: 90%;   /* Slightly wider on mobile */
        font-size: 16px;
        padding: 12px;
    }
}

.plan-details li.highlight i,
.plan-details li.highlight span {
    color: white;
}

/* Optional: Add a hover effect */
.plan-details li.highlight:hover {
    background: #811616;  /* Slightly darker shade for hover */
    transform: translateX(5px);
}

.plan-footer {
    padding: 25px;
    text-align: center;
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-dps {
    background: var(--bs-yellow);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-dps:hover {
    background: var(--header-bg);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--header-bg);
}

.swiper-pagination-bullet-active {
    background: var(--header-bg);
}

@media (max-width: 768px) {
    .plan-header h3 {
        font-size: 20px;
    }
    
    .interest-rate .rate {
        font-size: 36px;
    }
    
    .plan-details {
        padding: 20px 15px;
    }
    
    .plan-details li {
        font-size: 14px;
        padding: 8px;
        margin-bottom: 15px;
    }
    
    .plan-details li.highlight {
        font-size: 16px;
    }
}

/* Add to your style.css file */
.fdr-plans-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.fdr-plan-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.fdr-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-fdr {
    background: var(--bs-yellow);
    color: white;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-fdr:hover {
    background: var(--header-bg);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .fdr-plans-section {
        padding: 100px 0 40px;
    }
    
    .fdr-plan-card {
        margin-bottom: 20px;
    }
}

/* Add to your style.css file */
.contact-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-details li i {
    color: var(--bs-yellow);
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-details li h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--header-bg);
}

.contact-details li p {
    margin-bottom: 5px;
    color: #666;
}

.messaging-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.messaging-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.messaging-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.messaging-icon i {
    font-size: 40px;
}

/* Messaging app specific styles */
.messenger .messaging-icon i {
    color: #0084ff;
}

.whatsapp .messaging-icon i {
    color: #25d366;
}

.telegram .messaging-icon i {
    color: #0088cc;
}

.imo .messaging-icon i {
    color: #00b0ff;
}

.btn-messenger, .btn-whatsapp, .btn-telegram, .btn-imo {
    width: 100%;
    padding: 12px;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-messenger {
    background: #0084ff;
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-telegram {
    background: #0088cc;
    color: white;
}

.btn-imo {
    background: #00b0ff;
    color: white;
}

.btn-messenger:hover, .btn-whatsapp:hover, 
.btn-telegram:hover, .btn-imo:hover {
    transform: translateY(-2px);
    color: white;
    filter: brightness(110%);
}

@media (max-width: 768px) {
    .contact-section {
        padding: 100px 0 40px;
    }
    
    .messaging-card {
        padding: 20px;
    }
    
    .messaging-icon {
        width: 60px;
        height: 60px;
    }
    
    .messaging-icon i {
        font-size: 30px;
    }
}

/* Add these styles to your existing style.css */

.privacy-policy-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.policy-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-card h2 {
    color: var(--header-bg);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bs-yellow);
}

.policy-card ul {
    list-style: none;
    padding-left: 0;
}

.policy-card ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
}

.policy-card ul li:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--bs-yellow);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list li i {
    color: var(--bs-yellow);
    width: 20px;
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 100px 0 40px;
    }

    .policy-card {
        padding: 20px;
    }

    .policy-card h2 {
        font-size: 20px;
    }
}

.terms-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.terms-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.terms-card h2 {
    color: var(--header-bg);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--bs-yellow);
}

.terms-card h3 {
    color: var(--header-bg);
    font-size: 20px;
    margin: 25px 0 15px;
}

.terms-text ul {
    list-style: none;
    padding-left: 0;
}

.terms-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #666;
}

.terms-text ul li:before {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--bs-yellow);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list li i {
    color: var(--bs-yellow);
    width: 20px;
}

@media (max-width: 768px) {
    .terms-section {
        padding: 100px 0 40px;
    }

    .terms-card {
        padding: 20px;
    }

    .terms-card h2 {
        font-size: 20px;
    }

    .terms-card h3 {
        font-size: 18px;
    }
}

.services-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 35px;
    color: white;
}

.service-card h3 {
    color: var(--header-bg);
    font-size: 22px;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: left;
}

.service-features li {
    margin-bottom: 12px;
    color: #666;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--bs-yellow);
    margin-right: 10px;
    font-size: 14px;
}

.btn-service {
    background: transparent;
    color: var(--header-bg);
    border: 2px solid var(--header-bg);
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: var(--header-bg);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .services-section {
        padding: 100px 0 40px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 25px;
    }

    .service-card h3 {
        font-size: 20px;
    }
}

.reviews-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--bs-yellow) 0%, var(--header-bg) 100%);
}

.review-profile {
    margin-bottom: 20px;
    position: relative;
}

.review-profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bs-yellow);
    padding: 3px;
    background: white;
    margin: 0 auto;
}

.review-rating {
    margin: 15px 0;
    color: var(--bs-yellow);
}

.review-rating i {
    margin: 0 2px;
    font-size: 16px;
}

.review-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-name {
    color: var(--header-bg);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.reviewer-title {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Swiper navigation customization */
.reviews-slider .swiper-button-next,
.reviews-slider .swiper-button-prev {
    color: var(--header-bg);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reviews-slider .swiper-button-next:after,
.reviews-slider .swiper-button-prev:after {
    font-size: 18px;
}

.reviews-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.reviews-slider .swiper-pagination-bullet-active {
    background: var(--header-bg);
}

@media (max-width: 768px) {
    .review-card {
        padding: 20px;
        margin: 10px;
    }

    .review-profile img {
        width: 60px;
        height: 60px;
    }

    .review-text {
        font-size: 14px;
    }

    .reviewer-name {
        font-size: 16px;
    }
}

/* Add RTL support for Bangla if needed */
[lang="bn"] {
    font-family: 'SolaimanLipi', Arial, sans-serif;
}

[lang="bn"] .rtl-support {
    direction: rtl;
    text-align: right;
}