﻿.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 {
    background-color: #FE0000; /* Fallback color for browsers that do not support images */
    height: 650px; /* Set height to 600px */
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 39, 133, 0.7); /* Blue overlay with transparency */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center; /* Center text */
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-hero {
    background-color: #26A653; /* Change to a suitable color */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-hero:hover {
    background-color: #1e8a43; /* Change to a darker shade for hover effect */
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.8rem;
    }
}
