/* General Service Card Styles */
body {
    font-family: 'Poppins', sans-serif;
}
.service-card {
    border: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Hover effect for the service cards */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Carousel image styles */
.carousel-inner .carousel-item img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Styling the card body */
.card-body {
    background-color: #f8f9fa;
    padding: 20px;
}

/* Service Title Styles */
.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 10px;
}

/* Service Text (Description) */
.card-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(to right, #b8860b, #333);
    border: none;
    transition: all 0.3s ease-in-out;
    padding: 12px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
}

.btn-primary:hover {
    background: linear-gradient(to right, #333, #b8860b);
    transform: scale(1.1);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .service-card {
        margin-bottom: 15px;
    }
}

/* Add Shadows and Responsive Layout */
@media (min-width: 992px) {
    .service-card {
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
}

/* Styling for carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}

/* Custom Transparent Navbar with Containers */
.custom-navbar {
    background: transparent; /* Darker transparent background */
    padding: 10px 0; /* Add some padding to make it stand out */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-logo {
    height: 80px;
    margin-right: 20px;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler {
    padding: 0.5rem 1rem; /* Adjust padding as needed */
}

/* Footer Styling */
footer {
    background-color: #343a40;
    color: #ffffff;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo {
    flex: 1;
}

.footer-logo-img {
    max-width: 150px; /* Adjust size as needed */
    height: auto;
}

.footer-text {
    flex: 2;
}

footer a {
    color: #ffffff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.social-media-icons {
    flex: 1;
    font-size: 1.5rem;
}

.social-media-icons a {
    transition: color 0.3s ease;
}

.social-media-icons a:hover {
    color: #007bff;
}