/* Custom Styles */
body {
    background: linear-gradient(135deg, #ff6200, #ffffff, #28a745); /* Orange, White, Green */
    color: #005566; /* Blue text */
    font-family: Arial, sans-serif;
}

.top-bar {
    font-size: 14px;
	background: linear-gradient(135deg, #ff6200, #ffffff, #28a745); /* Orange, White, Green */
}

.top-bar a {
    color: #000088;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: #ff6200; /* Green on hover for contrast */
    text-decoration: none;
}

.top-bar img{width:25px;}
.top-bar img:hover{background-color:#ff6200; border-radius:100%;}

@media (max-width: 768px) {
    .top-bar .col-md-6.text-md-end {
        text-align: center !important;
    }
    .top-bar .col-md-6.text-left {
        text-align: center !important;
        margin-bottom: 5px;
    }
}


.bg-orange {
    background-color: #ff6200 !important; /* Saffron */
}

.bg-green {
    background-color: #28a745 !important; /* Green */
}

.text-blue {
    color: #005566 !important; /* Blue text */
}

.justify {
    text-align:justify; /* Text Justify */
}

.navbar-brand {
    color: #ffffff !important;
}

.navbar-logo {
    object-fit: contain;
    transition: all 0.3s ease;
}

.desktop-logo {
    display: block; height:90px;
}

.mobile-logo {
    display: none;
    margin-right: 0.5rem;
}

.navbar-brand-text {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2px;
	color:white;
}

@media (max-width: 767.98px) {
    .desktop-logo {
        display: none;
    }
    .mobile-logo {
        display: block;
    }
    .navbar-brand-text {
        display: inline;
        font-size: 1rem;
    }
    .navbar-brand {
        display: flex;
        align-items: center;
    }
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: bold;
}


.navbar-nav .active {
    color: #005566 !important;
}

.navbar-nav .nav-link:hover {
    color: #005566 !important;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.announcement {
    padding: 10px;
    font-weight: bold;
}

.member-photo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    color: #005566;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.card-img-top {
    object-fit: cover;
}