body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: #e5e7eb;
}
.hero-bg-services {
    background-color: #0a0a0a;
    /* background-image: 
        linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 1)),
        url('https://placehold.co/1920x1080/1e293b/0a0a0a?text=Code'); */
    background-size: cover;
    background-position: center;
}
.accent-color {
    color: #0ea5e9;
}
.accent-bg {
    background-color: #0ea5e9;
}
.accent-border {
    border-color: #0ea5e9;
}
.glassmorphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
 .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #0ea5e9;
    transition: width 0.3s ease-in-out;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
/* Set fixed height for the navbar */
#header nav {
    height: 50px;
}
/* Custom styles for logos */
.navbar-logo {
    height: 90px; /* 90px as requested */
}
.footer-logo {
    height: 200px; /* 200px as requested */
}