/* Base Styling */
body {
    background-color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
}

/* Navigation Enhancements */
.navbar-nav .nav-link {
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover {
    color: #000;
}

/* Ensure Hamburger Menu Visibility */
.navbar-toggler:focus, .navbar-toggler:active {
    outline: none;
    box-shadow: none;
}

/* Responsive Image Handling */
img {
    max-width: 100%;
    height: auto;
}

/* Hero Section Layout */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.hero-text {
    flex: 1;
}

.hero-image img {
    max-width: 90%;
}

/* Slideshow Section */
.slide {
    display: none;
}

/* Call to Action */
.btn-custom {
    margin: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-image img {
        height: 40px;
    width: auto;
    max-width: 100%;
    }

    .section {
        padding: 20px;
    }

    .section h2, .section h3 {
        font-size: 22px;
    }
}

/* Footer */
footer {
    background-color: #eee;
    padding: 20px;
}
footer p {
    font-size: 12px;
}