body {
    padding-top: 57px; /* Height of your navbar */

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98) !important;
}
.hero-section {
    padding: 62px 0;
    background: linear-gradient(135deg, #000 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section img {
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
}

.hero-section img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
    }
    .hero-section img {
        transform: none;
        max-width: 80%;
        margin: 0 auto;
    }
}

.hero-section .btn-light:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nav-link {
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    border-radius: 5px;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
}

.stats-section .col-md-3 {
    padding: 20px;
    transition: transform 0.3s ease;
}

.stats-section .col-md-3:hover {
    transform: translateY(-5px);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Add to your style.css */
.category-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Pricing table styling */
.table {
    --bs-table-bg: transparent;
}
.table thead th {
    border-bottom-width: 1px;
    font-weight: 600;
}