:root {
	--primary: #0F172A;
	--accent: #2563EB;
	--light: #F8FAFC;
}

body {
	font-family: 'Segoe UI', sans-serif;
	background: linear-gradient(135deg, #eef2f7 0%, #e2e8f0 100%);
}

.navbar {
	background: #0F172A;
}

.navbar .nav-link,
.navbar-brand span {
	color: #fff !important;
}

.brand-logo {
	height: 55px;
	width: auto;
	object-fit: contain;
}

.banner-section {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.banner-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-section + .banner-section{
    margin-top: 10px;
}
.carousel-item {
	height: 100%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	background-color: rgba(0, 0, 0, 0.6);
	padding: 20px;
	border-radius: 50%;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.3));
}

.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #fff;
	z-index: 2;
}

.footer {
	background: var(--primary);
	color: #fff;
	padding: 60px 0;
}

.footer a {
	color: #94A3B8;
	text-decoration: none;
}

.footer a:hover {
	color: #fff;
}

.navbar .btn-outline-light {
	border-width: 1.5px;
}

.navbar .btn-outline-light:hover {
	background: #ffffff;
	color: #0F172A;
}

/* ===== HERO ANIMATION ===== */
.hero-title,
.hero-subtitle,
.hero-btn {
	opacity: 0;
	transform: translateY(30px);
}

/* Title Animation */
.hero-title {
	animation: fadeUp 0.8s ease forwards;
	animation-delay: 0.3s;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Subtitle Animation */
.hero-subtitle {
	animation: fadeUp 0.8s ease forwards;
	animation-delay: 0.6s;
}

/* Button Animation */
.hero-btn {
	animation: fadeUp 0.8s ease forwards;
	animation-delay: 0.9s;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.auth-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 55px 45px;
    width: 100%;
    max-width: 480px;
    box-shadow:
        0 10px 25px rgba(0,0,0,0.05),
        0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
}

.auth-card h2 {
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -0.5px;
    margin-bottom: 35px;
}

.form-control {
    height: 54px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 15px;
    transition: 0.25s ease;
}

.form-control:focus {
    background: #ffffff;
    border-color: #3B82F6;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.12);
}

.input-group-text{
    background:#fff;
    border-radius:12px;
    cursor:pointer;
}

.strength-meter{
    height:6px;
    border-radius:5px;
    margin-top:8px;
    background:#e2e8f0;
    overflow:hidden;
}

.strength-meter div{
    height:100%;
    width:0%;
    transition:0.3s;
}
/* Navbar CTA Button Fix */
.navbar .btn-accent{
    height: 42px;
    padding: 0 22px;
    border-radius: 10px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: none; /* remove heavy shadow from auth button */
}

.navbar .btn-accent:hover{
    transform: none;
    box-shadow: none;
}
.btn-accent {
    background: linear-gradient(135deg,#3B82F6,#2563EB);
    color:#fff;
    border: none;
    height: 54px;
    border-radius: 14px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(37,99,235,0.25);
    transition: 0.25s ease;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(37,99,235,0.35);
}

.btn-accent:disabled{
    opacity:0.6;
    cursor:not-allowed;
}

.small-link{
    font-size:14px;
}
.valid-feedback-custom{
    font-size:13px;
    color:#22c55e;
}
.invalid-feedback-custom{
    font-size:13px;
    color:#ef4444;
}

.verify-screen{
    display:none;
    text-align:center;
}
.verify-screen i{
    font-size:60px;
    color:#22c55e;
}
/* Center Auth Page Layout */

.auth-wrapper {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 15px;
}

.auth-card{
    width:100%;
    max-width:480px;
}
.btn-cta{
    background: linear-gradient(135deg,#3B82F6,#1E40AF);
    color:#fff;
    border:none;
    padding:14px 34px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    box-shadow:0 15px 35px rgba(37,99,235,0.35);
    transition:all 0.3s ease;
    display:inline-block;
}

.btn-cta:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 45px rgba(37,99,235,0.45);
    color:#fff;
}
.hero-btn{
    font-size:18px;
    padding:16px 42px;
}
.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.4);
}

.navbar-toggler-icon {
    filter: invert(1);
}
@media (max-width: 991px){

    .navbar-collapse{
        background:#0F172A;
        padding:20px;
        border-radius:12px;
        margin-top:15px;
    }

    .navbar-nav .nav-link{
        padding:10px 0;
    }

    .navbar .btn-outline-light,
    .navbar .btn-accent{
        width:100%;
        margin-top:10px;
    }
}