/* Global Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Navigation Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand img {
    max-height: 50px;
    object-fit: contain;
}

/* Carousel Styles */
.carousel {
    height: 100vh;
    position: relative;
}

.carousel-inner, .carousel-item {
    height: 100%;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomOut 20s ease-in-out infinite alternate;
}

/* Zoom Out Animation */
@keyframes zoomOut {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.3);
    }
}

/* Slide Background Images */
.slide-1 {
    background-image: url('Img/background/img-09.jpg');
}

.slide-2 {
    background-image: url('Img/background/img-14.jpg');
}

.slide-3 {
    background-image: url('Img/background/img-95.jpg');
}

/* Carousel Caption Styles */
.carousel-caption {
    background: rgba(0,0,0,0.5);
    padding: 10px;
    border-radius: 10px;
}

.carousel-caption h1 {
    color: #fff;
    font-weight:  300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.carousel-caption p {
    color: #f4f4f4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-caption {
        position: absolute;
        right: 15%;
        bottom: 20px;
        left: 15%;
        z-index: 10;
        padding-top: 20px;
        padding-bottom: 20px;
        color: #fff;
        text-align: center;
    }
}
