
        body {
            font-family: 'Inter', sans-serif;
            background-color: #111827; /* Dark blue-gray */
            color: #E5E7EB; /* Light gray */
        }
        .hero-bg {
            background: linear-gradient(135deg, #111827 0%, #1F2937 50%, #374151 100%);
        }
        .section-title {
            background: -webkit-linear-gradient(45deg, #38bdf8, #818cf8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .card {
            background-color: #1F2937;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .skill-bar-fill {
            transition: width 1.5s ease-in-out;
        }
        .nav-link {
            position: relative;
            transition: color 0.3s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #818cf8;
            transition: width 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hero-bg {
            background-image: url('assets/images/background.jpeg'); /* Adjust path to your image */
            background-size: cover; /* Ensures the image covers the entire element */
            background-position: center; /* Centers the image within the element */
            background-repeat: no-repeat; /* Prevents the image from repeating */
            background-attachment: fixed; /* (Optional) Makes the background fixed while scrolling */
            position: relative; /* Needed for overlay if you want to darken the image */
        }
        
        /* Optional: Add an overlay to make text more readable */
        .hero-bg::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
            z-index: 1; /* Ensures the overlay is above the background image */
        }
        
        /* Ensure your text content is above the overlay */
        .hero-bg > .container {
            position: relative;
            z-index: 2;
        }