/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
}

.logo-img {
    height: 80px; /* Adjust as needed */
    width: auto;
}

/* Navigation Bar */
.navbar {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-link.active {
    font-weight: bold;
    color: #0d6efd !important; /* Adjust based on your primary color */
}

/* Hero Section */
.hero-section {
    background-color: #f8f9fa; /* Light gray background */
    color: #333;
    padding: 100px 0;
}

/* Services and Other Sections */
.services-overview-section, .services-page-section, .about-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Cards */
.card {
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action Section */
.cta-section {
    background-color: #0d6efd; /* Bootstrap primary blue */
}

.cta-section .btn-light {
    color: #0d6efd;
}

/* Footer */
footer {
    background-color: #212529; /* Dark gray */
}

footer .list-unstyled li {
    margin-bottom: 0.5rem;
}

footer .list-unstyled a {
    transition: color 0.2s;
}

footer .list-unstyled a:hover {
    color: #0d6efd !important;
}

footer hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}