@font-face {
    font-family: 'Raleway';
    src: url('/assets/fonts/Raleway-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/assets/fonts/Raleway-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

header {
	position: fixed;
	top: 0px;
	width: 100%;
	background-color: white;
	z-index: 2;
}

.content-section {
	margin-top:80px!important;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

h5, h6 {
	font-weight:800;
}

/**Navigation**/

.navbar-nav {
	font-size: 16px;
}
.nav-link {
	padding-left: 20px !important;
	padding-right: 20px !important;
	display: inline-block;
	position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ea5b0c;
  transition: transform 0.25s ease-out;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link::after {
  transform-origin: bottom center;
}


.nav-link:hover {
	color:#ea5b0c;
	padding-bottom:5px;
}

/* Mobile Menu */

.navbar-collapse {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100%;
	background-color: white;
	transition: right 0.3s ease;
	z-index: 1000;
        }
            
.navbar-collapse.show {
    right: 0;
		}

.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;      
	z-index: 999;
        }

.overlay.show {
    display: block;
        }
        
/* Burger icon */
.navbar-toggler {
	 border: none;
	 outline: none;
        }

.navbar-toggler-icon {
    background-image: url("/assets/img/burger-menu-462145.webp");
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Fills the entire screen */
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    z-index: 1000;

}

.mobile-menu-content {
    background: white;
    width: calc(100% - 30px); /* Adds 15px margin on each side */
    height: 65%; /* Fills 65% of the screen height */
    padding: 20px;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: black;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 40px;
    flex-grow: 1;
}

.mobile-menu-list li {
    margin-bottom: 15px;
}

.mobile-menu-list li a {
    text-decoration: none;
    font-size: 20px;
    color: #000;
}

/* Hide the desktop menu on mobile */
@media (max-width: 992px) {
    .desktopnav {
        display: none;
    }
    
    .navbar-expand-lg {
	    left: 75px;
    }
	
    .novanavbar-expand-lg {
	    left: 75px;
    }
}

/* Slide-in animation */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Slide-down animation for closing the menu */
@keyframes slideDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

/**Navigation End**/


body{
background:#f5f5f5;
font-family:'Raleway';
}

.app-container{
max-width:420px;
margin:auto;
background:white;
min-height:100vh;
}

.logo-box{
width:28px;
height:28px;
background:#f4a623;
border-radius:6px;
}

.notice-box{
background:#d8f5c2;
border-radius:12px;
font-size:12px;
}

.card-dashboard{
border:none;
background:#ffffff;
border-radius:16px;
box-shadow: 0px 0px 10px #00000024;
}

.list-group-item{
background:transparent;
padding-left:0px!important;
padding-right:0px!important;
border:0;
border-bottom:1px solid #e9e9e9;
font-weight:700;
}

.list-group-item:last-child{
border-bottom:0;
}

.bottom-nav{
    position: sticky;
    bottom: 0;
    background: white;
    border-radius: 20px 20px 0px 0px;
    box-shadow: 0px -2px 10px #00000024;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-nav a{
font-size:12px;
color:#666;
text-decoration:none;
font-weight:700;
}

.footerlinks a{
color:#ffffff;
text-decoration: none;	
}

.bottom-nav a.active{
color:#f4a623;
font-weight:700;
}

.img-icon{
	width:48px;
	min-width:48px;
	max-width:48px;
	height:32px;
	object-fit:contain;
	margin-right:10px;
}

.modal-content{
border:none;
box-shadow:0 10px 40px rgba(0,0,0,0.15);
}

body.modal-open .content-section {
    filter: blur(8px);
    transform: scale(0.98);
    transition: 0.25s ease;
}

.btn-warning{
background:#ffd400;
border:none;
color:#000;
}

.btn-warning:hover{
background:#f5c700;
}

.action-text{
	font-weight:400!important;
}