/* Custom Styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Style for the navigation link */
.nav-link {
    color: #4B5563; /* Corresponds to Tailwind's text-gray-600 */
    text-decoration: none;
    transition: color 0.2s;
}
.nav-link:hover {
    color: #111827; /* Corresponds to Tailwind's text-gray-900 */
}

/* Style for the active navigation link */
.nav-link.active {
    color: #111827; /* Corresponds to Tailwind's text-gray-900 */
    font-weight: 600; /* Corresponds to Tailwind's font-semibold */
}

/* Hero section overlay */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Scroll to top button */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #2d3748; /* gray-800 */
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
#scrollToTopBtn:hover {
    background-color: #1a202c; /* gray-900 */
}

        /* Custom transition for smooth accordion effect */
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

/* Add this to css/style.css */

/* Style for the active navigation link */
.nav-link.active {
    color: #f97316; /* Tailwind's orange-500 */
    font-weight: 600; /* semi-bold */
}