body {
	margin: 0;
	font-family: 'Inter', sans-serif;
	background: #0f172a;
	color: white;
	overflow-x: hidden;
}

.hero-bg {
	position: fixed;
	top: 0;
	left: -50%;
	width: 200%;
	height: 100%;
	background: linear-gradient(-45deg, #0f172a, #1e293b, #1d4ed8, #0f172a);
	animation: gradientMove 12s ease infinite;
	z-index: -2;
	will-change: transform;
}

@keyframes gradientMove {
	0% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(25%, 0, 0);
	}

	100% {
		transform: translate3d(0, 0, 0);
	}
}

.nav-bordered {
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	padding: 6px 16px !important;
	margin: 0 6px;
	transition: all 0.3s ease;
}

.nav-bordered:hover,
.nav-bordered.active {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.8);
	color: white !important;
}

.hero {
	padding-top: 100px;
	padding-bottom: 100px;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
}

.feature-card {
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(15px);
	border-radius: 16px;
	transition: all 0.3s ease;
	padding: 30px;
}

.feature-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.1);
}

.modal-content {
	background-color: #1e293b;
	color: #f8fafc;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close {
	filter: invert(1);
}

.blur-bg {
	position: fixed;
	width: 100%;
	height: 100%;
	backdrop-filter: blur(8px);
	background: rgba(0, 0, 0, 0.5);
	z-index: 998;
}

.auth-center {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.9);
	width: 90%;
	max-width: 420px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(25px);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.3s ease;
}

.auth-center.show {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
	visibility: visible;
	pointer-events: auto;
}

.auth-center a {
	color: #38bdf8;
	text-decoration: underline;
	transition: color 0.2s;
}

.auth-center a:hover {
	color: #60a5fa;
}

.form-control {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: white;
}

.form-control::placeholder {
	color: #ccc;
}

.form-control:focus {
	background: rgba(255, 255, 255, 0.2);
	box-shadow: none;
	color: white;
}

.close-btn {
	position: absolute;
	top: 15px;
	right: 20px;
	color: white;
	font-size: 24px;
	text-decoration: none;
}

ul {
	padding-left: 18px;
}

footer {
	margin-top: 80px;
	padding: 40px 0;
	text-align: center;
	opacity: 0.7;
}

.text-danger {
	font-size: 0.85rem;
}

@media (max-width: 991px) {
	.nav-bordered {
		margin: 6px 0;
		display: inline-block;
	}
}

@media (max-width: 768px) {
	.hero {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.hero h1 {
		font-size: 2.2rem;
	}

	.auth-center {
		padding: 30px 20px;
	}

	.feature-card {
		padding: 20px;
	}
}


.radio-toolbar {
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 8px;
}
.radio-toolbar input[type="radio"] {
    display: none; /* Hides the default radio circles */
}
.radio-toolbar label {
    display: inline-block;
    background-color: #f8f9fa;
    border: 2px solid #dee2e6;
    padding: 12px 10px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    flex: 1;
    text-align: center;
    transition: all 0.2s ease-in-out;
    color: #495057;
}
.radio-toolbar label:hover {
    background-color: #e2e6ea;
    border-color: #c8cbcf;
}
/* Style when the user clicks/selects an option */
.radio-toolbar input[type="radio"]:checked + label {
    background-color: #eef2ff;
    border-color: #0d6efd;
    color: #0d6efd;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(13, 110, 253, 0.15);
}

/* Mobile Offcanvas Menu Styles: Adjusts background, padding, and centers full-width navigation links and buttons for a clean mobile drawer UI */
@media (max-width: 991.98px) {
    #mainNav {
        background-color: #1a1d20 !important;
        max-width: 300px;
    }
    .offcanvas-body {
        padding: 1.5rem;
    }
    .offcanvas-body .nav-item,
    .offcanvas-body .nav-link {
        display: block;
        width: 100%;
        text-align: center;
    }
    .offcanvas-body .btn {
        width: 100%;
        text-align: center;
    }
}