body {
    padding-top: 76px; /* Standard Bootstrap Navbar height is roughly 76px */
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #050505;
    scroll-behavior: smooth;
}

/* Enhanced Glass Navbar */
.glass-nav {
    backdrop-filter: blur(20px);
    background-color: rgb(49 47 47 / 80%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
}

/* 1. Add padding to the top of the body or the hero section */
.hero-section {
    min-height: calc(100vh - 76px); /* Takes full screen MINUS navbar height */
    background: radial-gradient(circle at 50% 50%, #001d3d 0%, #050505 100%);
    display: flex;
    align-items: center;
}


@media (max-width: 991px) {
    body {
        padding-top: 66px;
    }
}

.service-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: #007aff !important;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.2);
}

.portfolio-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.portfolio-card:hover {
    transform: scale(1.05);
    border-color: #007aff !important;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.15);
}

.text-primary { color: #007aff !important; }
.btn-primary { background-color: #007aff; border: none; padding: 12px 30px; }
.btn-primary:hover { background-color: #005bbd; }