body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 48px 0 0;
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

.main-content {
    margin-left: 250px;
    padding: 20px;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.navbar-brand {
    font-weight: 700;
}

footer {
    background-color: #343a40;
    color: white;
}

.social-links a {
    color: white;
    margin-right: 10px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .sidebar {
        position: static;
        height: auto;
    }
    
    .main-content {
        margin-left: 0;
    }
}
.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}
/* Add to your existing CSS */
.hero-slider .carousel-caption {
    bottom: 15%;
    left: 5%;
    right: auto;
    width: 100%;
}

.slider-content {
    max-width: 100%;
    backdrop-filter: blur(5px);
}

@media (max-width: 992px) {
    .hero-slider .carousel-caption {
        bottom: 5%;
    }
    .hero-slider h2 {
        font-size: 1.8rem;
    }
    .hero-slider .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}