


/*-----------------------------------------------------------------------------*/
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero {
    background-color: #007bff; /* Blue color used in service categories */
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero i {
    margin: 0 10px;
}

.section {
    padding: 50px 20px;
    text-align: center;
    background-color: #ffffff;
    background: linear-gradient(135deg, #f3f3f3 0%, #007bff 100%);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the grid */
    gap: 20px;
}

.category-item {
    background-color: #007bff;
    color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.category-item h3 {
    margin-top: 20px;
    font-size: 24px;
}

.category-item p {
    font-size: 16px;
}

.category-item .icon {
    font-size: 60px;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    display: block;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.category-item .icon:hover {
    transform: scale(1.2);
}

.cta-button2 {
    background-color: #ffffff;
    color: #007bff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button2:hover {
    background-color: #0056b3;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 128, 0, 0.7); /* Green shadow hover */
}

.cta-button2 i {
    margin-right: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.section .icon {
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .category-grid {
        flex-direction: column;
        gap: 20px;
    }
    .category-item {
        max-width: 100%;
    }
    .container {
        padding: 10px;
    }
}

/* Premium Styles for Why Choose Us Section */
.why-choose-us {
    padding: 60px 20px;
    background: linear-gradient(135deg, #007bff 0%, #f3f3f3 100%);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.why-choose-us h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.grid-container {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.grid-item {
    background: linear-gradient(135deg, #f3f3f3 0%, #007bff 100%);
    color: #333;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 23%; /* Ensure the items fit in a row */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.grid-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.grid-item h3 {
    margin-top: 25px;
    font-size: 28px;
}

.grid-item p {
    font-size: 18px;
    margin: 20px 0;
}

.grid-item .icon {
    font-size: 70px;
    color: #007bff;
    padding: 15px;
    border-radius: 15px;
    display: block;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #e2e2e2 0%, #c9c9c9 100%);
}

.grid-item .icon:hover {
    transform: scale(1.2);
}

.grid-item .icon {
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .grid-container {
        flex-direction: column;
        align-items: center;
    }
    .grid-item {
        width: 100%;
    }
}

/* Styles for Testimonials Section */
.testimonials {
    padding: 60px 20px;
    background: linear-gradient(135deg, #007bff 0%, #f3f3f3 100%);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.testimonial-item {
    background: #ffffff;
    color: #333;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 45%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.testimonial-item p {
    font-size: 18px;
    margin: 20px 0;
    font-style: italic;
}

.testimonial-item h4 {
    font-size: 20px;
    margin-top: 15px;
    color: #007bff;
}

@media (max-width: 768px) {
    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-item {
        width: 100%;
    }
}

/* Styles for Top Rated Services Section */
.multi-column-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-item-multi {
    background-color: #007bff;
    color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-item-multi:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.service-item-multi h3 {
    margin-top: 20px;
    font-size: 24px;
}

.service-item-multi p {
    font-size: 16px;
}

.service-item-multi .icon {
    font-size: 60px;
    color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    display: block;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.service-item-multi .icon:hover {
    transform: scale(1.2);
}

.cta-button2 {
    background-color: #ffffff;
    color: #007bff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button2:hover {
    background-color: #0056b3;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 128, 0, 0.7); /* Green shadow hover */
}

.cta-button2 i {
    margin-right: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.section .icon {
    animation: pulse 2s infinite;
}

@media (max-width: 768px) {
    .multi-column-services {
        flex-direction: column;
        gap: 20px;
    }
    .service-item-multi {
        max-width: 100%;
    }
    .container {
        padding: 10px;
    }
}

/* Add the following keyframes for animations */

@keyframes button-hover {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes icon-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Apply animations to the links */
.cta-button2:hover {
    animation: button-hover 0.5s ease-in-out;
}

/* Apply animations to the icons in Why Choose Us section */
.grid-item .icon:hover {
    animation: icon-bounce 1s ease-in-out;
}