/* General */
.logo {
    max-height: 100px;
    margin-right: auto; /* Aligns logo to the extreme left */
}

.navbar-toggler {
    border-color: #ff0000; /* Red border for hamburger menu */
    background-color: #ff0000; /* Red background for the hamburger menu */
}

/* Static Vertical Text (Collapsible in Responsive Mode) */
.collapse-btn {
    display: none;
}

/* Hamburger Menu */
.navbar-toggler {
    border: none; /* Remove border from the button */
    background-color: transparent; /* Keep the background transparent */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='red' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 30px; /* Ensures the icon size remains consistent */
    height: 30px;
}

@media (max-width: 768px) {
    .collapse-btn {
        display: block;
        color: #007bff;
    }

    .static-text {
        display: none;
    }

    .static-text.open {
        display: block;
    }
}

/* Carousel */
.carousel {
    height: 40vh; /* Occupies 40% of the viewport height */
}

.carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio while covering the area */
}

/* Vertical Scrolling Text */
.text-scroller-vertical {
    height: 40vh; /* Occupies 40% of the viewport height */
    overflow: hidden;
    background: #007bff;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.scroller-content {
    animation: scrollVertical 10s linear infinite;
}

@keyframes scrollVertical {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* Footer */
footer h5 {
    margin-bottom: 1rem;
}

footer ul {
    list-style-type: none;
    padding: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel,
    .text-scroller-vertical {
        height: 40vh; /* Maintain 40% height in responsive mode */
    }
}
