﻿.carousel-control-prev {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}
.carousel-control-next {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-caption {
    top: 0;
    bottom: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 50%, 50%;
}

@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 30px;
        height: 30px;
    }
}
/* Keep dropdown inside navbar container */
.navbar .dropdown-menu {
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    border-top: 3px solid #0056b3;
    padding-top: 0;
}

    /* Contained dropdown */
    .navbar .dropdown-menu > .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Hover color & transitions */
    .navbar .dropdown-menu a {
        transition: color 0.2s ease;
    }

        .navbar .dropdown-menu a:hover {
            color: #003d80 !important;
        }

/* Optional: keep open on hover for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }
}
.hover-shadow-sm:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: #eef2f9;
}

@media (max-width: 575px) {
    .hover-shadow-sm {
        padding: 1rem !important;
    }
}