:root {
    --primary-color: #39aab4;
    /* Main Teal */
    --secondary-color: #39aab7;
    /* Light Teal (User updated) */
    --tertiary-color: #444444;
    /* Dark Gray (User updated) */
    --text-color: #333333;
    --text-light: #6d6d6d;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Logo fade-in animation */
@keyframes fadeInLogo {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   MODERN HEADER DESIGN
   ======================================== */

.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(57, 170, 180, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 6px 40px rgba(0, 0, 0, 0.12);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    padding: 0 40px;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.site-logo {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: filter 0.3s ease;
}

.site-logo:hover {
    filter: drop-shadow(0 4px 8px rgba(57, 170, 180, 0.3));
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: visible;
    /* Prevent cart badge from being cut off */
}

.nav-list>li {
    position: relative;
}

.nav-list>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-color);
    text-transform: capitalize;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Gradient hover effect */
.nav-list>li>a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.nav-list>li>a:hover::before,
.nav-list>li>a.active::before {
    opacity: 0.1;
}

.nav-list>li>a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(57, 170, 180, 0.2);
}

.nav-list>li>a.active {
    color: var(--primary-color);
    background: rgba(57, 170, 180, 0.08);
}

/* Dropdown chevron animation */
.nav-list .dropdown>a i.fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 0.75rem;
    opacity: 0.7;
}

.nav-list .dropdown:hover>a i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    min-width: 220px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(57, 170, 180, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    border-radius: 10px;
    transition: all 0.2s ease;
    text-transform: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(57, 170, 180, 0.1), rgba(57, 170, 183, 0.15));
    color: var(--primary-color);
    transform: translateX(4px);
}

/* Header Social Icons */
.header-social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 2px solid rgba(57, 170, 180, 0.2);
}

.header-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(57, 170, 180, 0.08);
    color: var(--primary-color);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.header-social-icons a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(57, 170, 180, 0.4);
    border-color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-header .container {
        padding: 0 20px;
        height: 70px;
    }

    .site-logo {
        max-height: 45px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 20px;
        gap: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        display: none;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list>li {
        width: 100%;
    }

    .nav-list>li>a {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
    }

    .header-social-icons {
        width: 100%;
        justify-content: center;
        margin: 15px 0 0 0;
        padding: 15px 0 0 0;
        border-left: none;
        border-top: 2px solid rgba(57, 170, 180, 0.2);
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(57, 170, 180, 0.05);
        margin-top: 8px;
        border: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }


    .dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        transform: none;
    }
}


/* Hero Section */
.hero {
    background: var(--white);
    /* Clean white background */
    padding: 100px 0;
    text-align: center;
}

/* Main Banner (Image) */
/* Main Banner (Carousel) */
.hero.main-banner {
    padding: 0;
    background: none;
    position: relative;
}

.carousel-container {
    position: relative;
    height: 400px;
    /* Adjust height as needed based on image aspect ratio or requirements */
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track-container {
    background: #000;
    /* Fallback */
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 500ms ease-in-out;
}

.carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures image covers the area, might crop */
    display: block;
}

/* Carousel Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.6);
}

.prev-button {
    left: 20px;
}

.next-button {
    right: 20px;
}

/* Carousel Nav (Dots) */
.carousel-nav {
    display: flex;
    justify-content: center;
    padding: 10px 0;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.carousel-indicator {
    border: none;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicator.current-slide {
    background: rgba(255, 255, 255, 1);
}

/* Responsiveness for Carousel */
@media (max-width: 768px) {
    .carousel-container {
        height: 300px;
        /* Smaller height for mobile */
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h2 {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--secondary-text);
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Services Intro */
.services-intro {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.service-box h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
    color: var(--secondary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--tertiary-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.process-step {
    padding: 20px;
}

.step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--tertiary-color);
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--secondary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.process-step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.stars {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
}

.author {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-weight: 500;
    background: var(--white);
    color: var(--secondary-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Footer */
.main-footer {
    background-color: var(--secondary-color);
    /* Dark Teal */
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    display: block;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary-color);
    /* Teal accent */
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #ccc;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-col a {
    transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
    color: #666666 !important;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--tertiary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* InfinitePay Badge Hover */
.main-footer a[href*="infinitepay"]:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(0, 212, 255, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.2);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    /* Official WhatsApp Green */
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsiveness */
@media (max-width: 768px) {
    .main-header .container {
        height: 60px;
    }

    .site-logo {
        max-height: 50px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-list {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 15px;
        text-align: center;
    }

    .nav-list.active {
        display: flex;
    }

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

    .cta-group {
        flex-direction: column;
        padding: 0 20px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* Services Grid Section */
.services-section {
    padding: 80px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: background-color 0.3s, color 0.3s;
}

.service-card:hover .card-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    min-height: 3rem;
    /* Align titles if they break lines */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
    /* Pushes the button down if exists */
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.card-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* ============================
   Auth Pages (Login/Register)
   ============================ */
.auth-body {
    background-color: var(--bg-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.auth-container {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.auth-logo {
    max-height: 80px;
    margin-bottom: 20px;
}

.auth-title {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.auth-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"],
.auth-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.auth-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.auth-form .btn {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}

.auth-links {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.auth-links a {
    color: var(--primary-color);
    font-weight: 700;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* ============================
   Dashboard Layouts
   ============================ */
.dashboard-body {
    background-color: #f4f7f6;
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 260px;
    background-color: var(--secondary-color);
    color: var(--white);
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 100;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    max-height: 60px;
    /* filter removed - logo now shows original colors */
}

.sidebar-nav {
    padding: 20px 0;
    flex-grow: 1;
}

.sidebar-nav ul li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: all 0.3s;
}

.sidebar-nav ul li a:hover,
.sidebar-nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-right: 4px solid var(--primary-color);
}

.sidebar-nav ul li a i {
    width: 30px;
    font-size: 1.1rem;
}

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

.main-content {
    margin-left: 260px;
    flex-grow: 1;
    width: calc(100% - 260px);
    transition: margin-left 0.3s ease, width 0.3s ease;
}

.topbar {
    background-color: var(--white);
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    font-weight: 600;
    color: var(--secondary-color);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

.dashboard-container {
    padding: 30px;
}

.dashboard-title {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(57, 170, 180, 0.1);
    /* Primary color low opacity */
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
}

.stat-info h4 {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

.stat-info p {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.content-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.content-card h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-family: var(--font-heading);
}

/* Responsive Dashboard */
@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .main-content {
        margin-left: 0;
        width: 100%;
    }

    .sidebar.active {
        transform: translateX(0);
    }
}