:root {
    --primary-color: #0ea5e9;
    /* SkyBlue */
    --secondary-color: #ffffff;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--light-bg);
    transition: 0.3s;
}

.dark-mode {
    background-color: var(--dark-bg);
    color: white;
}

.navbar {
    background: #0f172a !important;
}

.hero-section {
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    color: white;
    padding: 100px 20px;
}

.card {
    border-radius: 15px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.sidebar {
    min-height: 100vh;
    background: var(--primary-color);
    color: white;
}

.sidebar a {
    color: white;
    display: block;
    padding: 10px;
    text-decoration: none;
}

.sidebar a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer {
    background: #111;
    color: white;
    padding: 40px 0;
}

/* ===== HERO SLIDER ===== */
.swiper {
    width: 100%;
    height: 520px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.hero-content {
    background: rgba(0, 0, 0, 0.45);
    padding: 30px;
    border-radius: 15px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
}

/* ===== NOTIFICATION BAR ===== */
.notification-bar {
    background: #ff5722;
    color: white;
    padding: 8px 0;
    overflow: hidden;
}

.notification-bar marquee {
    font-weight: bold;
}

/* ===== CLIENT LOGOS ===== */
.client-logo {
    filter: grayscale(100%);
    transition: 0.3s;
    max-height: 70px;
}

.client-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.table td, .table th {
    vertical-align: middle;
}
.btn {
    border-radius: 20px;
}
/* ===== TESTIMONIAL ===== */
.testimonial-card {
    border-radius: 15px;
    padding: 20px;
    background: #f1f5f9;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* ===== FLOATING LOGIN BUTTON ===== */

@keyframes floatUp {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-6px);
    }
}

.float-login {
    position: fixed;
    bottom: 80px;
    right: 25px;
    background: #0d6efd;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
    z-index: 9999;
    /* 🔥 IMPORTANT FIX */
    transition: 0.3s;
}

.float-login:hover {
    transform: scale(1.05);
}