/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

navbar-custom {
    background-color: #007BFF; /* You can change this hex code to any blue you like */
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.25rem;
}

/* Cards Hover Effect */
.card:hover {
    transform: translateY(-10px);
    transition: 0.3s;
}

/* Navbar Smooth Scrolling Offset */
.navbar-nav .nav-link {
    cursor: pointer;
}

/* Responsive Adjustments */
@media(max-width:768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}