    /* Hover dropdown instead of click */
    
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    /* Custom styling to match screenshot */
    
    .navbar-nav .nav-link {
        font-weight: 500;
        padding: 10px 15px;
    }
    
    .dropdown-menu {
        border-radius: 6px;
        padding: 10px 0;
        min-width: 220px;
    }
    
    .dropdown-item {
        padding: 8px 20px;
    }
    
    .dropdown-item:hover {
        background-color: dodgerblue;
    }
    /* Active (orange highlight like screenshot) */
    /* .nav-link.active,
    .dropdown-item.active {
        color: #ff6600 !important;
        font-weight: 600;
    } */
    /* Logo and Menu CSS */
    /* Background */
    
    .highlights-section {
        background: #2f3654;
    }
    /* Card */
    
    .highlight-card {
        background: #f8f9fa;
        padding: 30px 20px;
        border-radius: 10px;
        position: relative;
        transition: 0.5s;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
    }
    /* Hover */
    
    .highlight-card:hover {
        transform: translateY(-8px);
    }
    /* Icon circle */
    
    .icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 15px;
        position: relative;
    }
    /* Blue style */
    
    .icon.blue {
        background: rgba(0, 123, 255, 0.2);
        color: #0d6efd;
    }
    /* Orange style */
    
    .icon.orange {
        background: rgba(255, 122, 0, 0.2);
        color: #ff7a00;
    }
    /* Fancy background circle effect */
    
    .icon::after {
        content: '';
        position: absolute;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        top: -20px;
        left: -20px;
        background: inherit;
        opacity: 0.2;
        z-index: 0;
    }
    
    body {
        font-family: 'Segoe UI', sans-serif;
    }
    
    .carousel-item {
        height: 90vh;
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .carousel-caption {
        bottom: 30%;
    }
    
    .feature-box {
        transition: 0.3s;
    }
    
    .feature-box:hover {
        transform: translateY(-10px);
    }
    
    footer {
        background: #111;
        color: #fff;
    }
    
    li.nav-item {
        font-weight: bold;
    }



.banner {
    height: 500px;
    background: url('../images/hero.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner .container {
    position: relative;
    z-index: 2;
}




