.head-logo{
    max-height: 70px;
}
.head-fav{
    max-height: 100px;
}
.logo{
    max-height: 30px;
}
.text-brown{
    color: brown;
}
.text-blue{
    color: #171b3e;
}
.bg-dark-blue{
    background-color: #171b3e;
}

.Copyright{
    background-color: #060924;
}

.innerbanner {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    color: white !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}

.btn-glow {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #3498db; /* Initial color */
    color: white;
    transition: background-color 0.3s ease;
    outline: none;
    animation: colorChange 1s infinite alternate;
}

/* Animation for color change */
.btn-glow:hover {
    animation: colorChange 1s infinite alternate;
}

/* Keyframes for the color animation */
@keyframes colorChange {
    0% {
        background-color: #ff8800; /* Blue */
    }
    50% {
        background-color: #680d02; /* Red */
    }
    100% {
        background-color: #ff4800; /* Green */
    }
}

.nav-title{
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .nav-title{
        font-size: 16px;        
    }
    
}