body {
    background-color: #f8f9fa;
    color: #212529;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar {
    background-color: #000;
    padding: 1rem 0;
}

.navbar .nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ff4b4b;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.75rem;
    color: #fff;
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.services-section h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #212529;
    margin-bottom: 40px;
}

.services-section h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #212529;
    margin-top: 40px;
    margin-bottom: 20px;
}

.services-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Service Box */
.service-box {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    margin-bottom: 40px;
}

.service-box:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px); /* Subtle lift effect */
}

.service-icon {
    font-size: 3.5rem;
    color: #ff4b4b;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-box:hover .service-icon {
    color: #e64545; /* Change icon color on hover */
}

.services-section p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

/* Responsive Service Boxes */
@media (max-width: 768px) {
    .service-box {
        padding: 30px;
    }

    .services-section h1 {
        font-size: 2.5rem;
    }

    .services-section h3 {
        font-size: 1.75rem;
    }
}

/* Footer Styling */
footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ff4b4b;
}
