﻿.navbar {
        background-color: #ffffff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand img.navbar-logo {
        height: 40px;
    }

    .navbar-nav {
        margin-left: auto;
        margin-right: auto;
    }

    .navbar-nav .nav-link {
        color: #000;
        font-size: 1.1em;
        margin: 0 15px;
        transition: color 0.3s ease;
        font-weight: bold;
       
    }

    .navbar-nav .nav-link:hover {
        color: #FE0000;
    }

    .navbar-nav .nav-link.active {
        color: #fff; /* Active link color */
        background-color: #FE0000; /* Background for active link */
    }

    .btn-outline-success {
        border-color: #FE0000;
        color: #FE0000;
    }

    .btn-outline-success:hover {
        background-color: #FE0000;
        color: #fff;
    }

    .offcanvas-header {
        background-color: #FE0000;
        color: #fff;
    }

    .offcanvas-title {
        margin: 0 auto;
    }

    .btn-close {
        color: #ffffff; /* Close icon color */
    }

    .modal-header {
        background-color: #FE0000;
        color: #fff;
    }

    .modal-title {
        margin: 0 auto;
    }

    @media (max-width: 992px) {
        .navbar-nav {
            flex-direction: column; /* Stack menu items vertically on mobile */
        }

        .navbar-toggler {
            margin-left: auto; /* Align toggler to the right on mobile */
        }

        .navbar-nav .nav-link {
            margin: 5px 0; /* Adjust margin between menu items */
            color: #000; /* Active color for mobile */
            text-decoration: none; /* Remove underline for mobile */
        }

        .navbar-nav .nav-link:hover {
            color: #fff; /* Hover color for mobile */
        }

        .navbar-nav .nav-link.active {
            color: #fff; /* Active link color for mobile */
            background-color: #FE0000; /* Background for active link */
        }

        .offcanvas-header .btn-close {
            color: #ffffff; /* Close icon color */
        }

        .modal-header .btn-close {
            color: #ffffff; /* Close icon color */
        }

        .offcanvas-body,
        .modal-body {
            background-color: #FE0000; /* Background color for offcanvas and modal body */
            color: #fff; /* Text color for offcanvas and modal body */
        }

        .modal-backdrop {
            background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent backdrop color for modal */
        }

        .btn-outline-success {
            color: #fff; /* Text color for button */
            border-color: #fff; /* Border color for button */
        }

        .btn-outline-success:hover {
            background-color: #fff;
            color: #FE0000; /* Text color on hover */
        }

        .btn-outline-success.active {
            background-color: #fff;
            color: #FE0000; /* Active button text color */
        }
    }
    
 /* Hero Section Styles */
.hero {
    position: relative;
    background-image: url('https://vehiclespledge.in/loan-against-two-wheeler-in-bangalore.jpg');
    background-size: cover;
    background-position: center;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding-top: 100px; /* Adjust this value to control the vertical alignment of the content */
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #042785;
    opacity: 0.5; /* Adjust the opacity to control the darkness of the overlay */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-hero {
    background-color: #FE0000; /* Red color */
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
}

.btn-hero:hover {
    background-color: #042785; /* Blue color */
    color: white;
}

/* Breadcrumb Section */
nav.bg-gray-200 {
    background-color: #f7fafc;
}

nav.bg-gray-200 ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

nav.bg-gray-200 li {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav.bg-gray-200 li a {
    display: flex;
    align-items: center;
    color: #f00; /* Text color: red */
    text-decoration: none;
    font-size: 1rem;
}

nav.bg-gray-200 li a:hover {
    text-decoration: underline;
}

nav.bg-gray-200 li a .icon {
    margin-right: 0.5rem;
}

nav.bg-gray-200 li .separator {
    margin: 0 0.5rem;
    color: #718096; /* Text color: gray */
}

/* Responsive Design */
@media (max-width: 768px) {
    nav.bg-gray-200 ol {
        justify-content: center;
    }
    nav.bg-gray-200 li {
        margin-bottom: 0.5rem;
    }
}
