@media (max-width: 768px) {
    .cover-nav {
        position: static !important;
    }
}
/* Removed spinning logo */

/* Modal and Carousel Sizing */
.modal-lg {
    max-width: 800px;
}

.carousel-inner .carousel-item > div {
    height: 480px !important;
}

/* Cover Nav (Bootstrap Cover style) - DARK GRAY TRANSPARENT */
.cover-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    background-color: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 3rem;
    height: 70px;
    box-sizing: border-box;
}

.navbar-brand {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
}

.navbar-links {
    display: flex;
    gap: 1.5rem;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggle-icon::before,
.navbar-toggle-icon::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.navbar-toggle-icon::before {
    top: -8px;
}

.navbar-toggle-icon::after {
    bottom: -8px;
}

.navbar-toggle.active .navbar-toggle-icon {
    background-color: transparent;
}

.navbar-toggle.active .navbar-toggle-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggle.active .navbar-toggle-icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.cover-nav-link {
    color: #fff;
    background: transparent;
    padding: 0.5rem 1.2rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.cover-nav-link:hover {
    color: #3498db;
    text-decoration: none;
}

/* Mobile styles */
@media (max-width: 768px) {
    .navbar-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(40, 40, 40, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navbar-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-toggle {
        display: block;
    }
}

.jumbotron {
        padding-top: 10rem;
        padding-bottom: 8rem;
        margin-bottom: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }
    
    .card-img-top {
        height: 225px;
        object-fit: cover;
    }
    
    .btn-group .btn {
        margin-right: 5px;
    }
    
    .team-card {
        transition: transform 0.2s ease-in-out;
    }
    
    .team-card:hover {
        /* Removed hover effect */
    }
    
    .bg-dark {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%) !important;
    }
    
    .hero-section {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8)), 
                    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        background-size: cover;
        border-radius: 0;
    }
        #teamModal .modal-dialog {
        min-width: 600px;
    }
    #teamModal .modal-content {
        min-height: 800px;
    }
    
    /* Move view buttons to the right side of cards */
    .card-body .d-flex {
        justify-content: flex-end !important;
    }
    
    .card-body .btn-group {
        margin-left: auto;
    }