.logo{
    max-height: 100px;
}
.active{
	color: #239a96 !important;
	font-size: 20px !important;
	font-weight: 700 !important;
}

.nav-btn{
	background: #283290;
    color: white;
    border-radius: 50px;
    padding: 10px;
	font-weight: 600;
}
.nav-btn:hover{
	color: #283290 !important;
	border: 1px solid #283290;
	background: #ffffff;
}
@media (max-width: 991px) {
    .nav-btn {
        display: none;
    }
}

/* footer */
.custom-footer {
    background: #0f152d;
    color: #d5d9e0;
    font-family: 'Poppins', sans-serif;
}

.footer-logo {
    width: 140px;
}

.footer-text {
    line-height: 1.7;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-list,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #d5d9e0;
    text-decoration: none;
}

.footer-list a:hover {
    color: #fff;
    padding-left: 5px;
    transition: all 0.3s ease;
}

.footer-list i {
    margin-right: 8px;
}

.footer-contact i {
    margin-right: 10px;
    color: #fff;
}

/* Social icons */
.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #0f152d;
    margin-right: 10px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #00aced;
    color: #fff;
}

/* Responsive */
@media (max-width: 767px) {
    .custom-footer {
        padding: 0px 20px;
    }
    .footer-social a {
        margin: 5px;
    }
}


.footer-bottom {
    background: #0f152d;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    color: #d5d9e0;
    font-size: 15px;
}


.help-sticky {
	position: fixed;
	left: 20px;
	bottom: 20px; /* 20px from bottom */
	z-index: 9999;
}

/* Main Button */
.help-main-btn {
	background-color: #283290;
	color: #fff;
	border: none;
	padding: 12px 16px;
	border-radius: 30px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
	border: none;
	display: none;
}

.help-main-btn:focus,
.help-main-btn:active {
	outline: none !important;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* keep shadow, no border */
}

/* Actions ABOVE main button */
.help-actions {
	display: none;
	margin-bottom: 12px; /* space above Need Help button */
	animation: slideUp 0.4s ease forwards;
}

/* Buttons */
.help-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 15px;
	margin-bottom: 8px;
	border-radius: 30px;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);

}

/* Colors */
.help-btn.whatsapp { background: #25d366; color: #fff; }
.help-btn.call { background: #28a745; color: #fff;}
.help-btn.message { background: #ff9800; color: #fff;}


/* Slide UP Animation */
@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile */
@media (max-width: 576px) {
	.help-btn span,
	.help-main-btn span {
		display: none;
	}
}

 #scrollTopBtn {
    position: fixed;
    right: 15px;
    bottom: 20px;
    display: none;
    z-index: 1050;
    width: 45px;
    height: 45px;
  }