
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

 .navbar-brand img {
            height: 60px;
        }

 .navbar-nav .nav-link {
    color: #fff;
}

.nav-item {
    padding-left: 10px;
}

  .nav-link {
    font-size: 1.2em;
    color: white;
}

 .nav-link:hover {
    color: #DAF7A6;
}

.contact-info {
    font-size: 14px;
}
.responsive-image {
    width: 100%;
    height: auto;
}
.navbar-nav {
    margin-left: auto; 
}

nav {
    /* background: rgba(0, 0, 0, 0.7); */
    transition: background-color 0.3s ease;
}

nav.scrolled {
    background: rgba(0, 0, 0, 0.7);
}

.carousel-item img {
    height: 100vh; /* Full viewport height */
 
}

/* Mobile View */
@media (max-width: 600px) {
    .carousel-item img {
        height: 50vh; /* Adjust height for mobile */
    }

    .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 10px; /* Adjust padding for mobile */
    }
}

@media (min-width: 600px) and (max-width: 768px) {
    .carousel-item img {
        height: 55vh;
        object-fit: cover; /* Maintain aspect ratio */
    }
    .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 850px) {
    .carousel-item img {
        object-fit: cover; /* Maintain aspect ratio */
    }
 
}

@media (min-width: 850px) and (max-width: 991px) {
    .carousel-item img {
        height: 95vh;
        width: 70vh;
    }
    .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }
}


@media (min-width: 991px) and (max-width: 1250px) { 
    .carousel-item img {
        height: 111vh; /* Adjust height for mobile */
     
    }
    .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
    }
}
.navbar-custom {
    transition: background-color 0.3s ease-in-out;
}

.scrolled {
    background-color: rgba(0, 0, 0, 0.9) !important; /* 90% Transparent */
}