body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #333; /* Dark background for contrast */
    color: white;
    padding: 5rem 0;
}

.hero .carousel-item {
    height: 100vh; /* Full viewport height */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero .carousel-item h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero .carousel-item p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
}

.hero .carousel-item .btn {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    text-transform: uppercase;
    background-color: #f8f9fa;
    color: #333;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero .carousel-item .btn:hover {
    background-color: #007bff;
    color: white;
}

/* Optional: Add a subtle gradient to overlay the images */
.hero .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay */
    z-index: 1;
}

.hero .carousel-item .container {
    position: relative;
    z-index: 2;
}




section {
    padding: 60px 0;
}

h2 {
    margin-bottom: 20px;
}

.service-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.service-card h3 {
    color: #007bff;
}
/* Testimonials Section Styling */
.testimonials {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: red;
}

.testimonials h3 {
    font-size: 1.8rem;
    color: #555;
    margin-top: 30px;
}

.testimonials blockquote {
    background-color: #fff;
    border-left: 5px solid #6c757d;
    padding: 20px 30px;
    margin: 20px 0;
    font-style: italic;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonials blockquote:hover {
    transform: scale(1.03);
}

.testimonials blockquote p {
    font-size: 1.1rem;
    color: #555;
}

.testimonials blockquote p::before {
    content: "“";
    font-size: 2rem;
    color: #6c757d;
    position: absolute;
    left: 10px;
    top: 5px;
}

.testimonials .ratings {
    text-align: center;
    margin-top: 30px;
}

.testimonials .ratings p {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0;
}

.testimonials .ratings p strong {
    color: #007bff;
}

.testimonials .ratings p::before {
    content: "★";
    color: #f39c12;
    font-size: 1.2rem;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonials blockquote {
        font-size: 1rem;
    }

    .testimonials .ratings p {
        font-size: 1rem;
    }
}

/* About Us Section Styling */
.about {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.about h3 {
    font-size: 1.8rem;
    color: #555;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about ul {
    list-style-type: none;
    padding-left: 0;
    font-size: 1.1rem;
    color: #555;
}

.about ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.about ul li::before {
    content: "•";
    color: #007bff;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

.about blockquote {
    background-color: #fff;
    border-left: 5px solid #6c757d;
    padding: 20px 30px;
    margin: 20px 0;
    font-style: italic;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about blockquote:hover {
    transform: scale(1.03);
}

.about blockquote p {
    font-size: 1.1rem;
    color: #555;
}

.about blockquote p::before {
    content: "“";
    font-size: 2rem;
    color: #6c757d;
    position: absolute;
    left: 10px;
    top: 5px;
}

@media (max-width: 768px) {
    .about h2 {
        font-size: 2rem;
    }

    .about h3 {
        font-size: 1.5rem;
    }

    .about p {
        font-size: 1rem;
    }

    .about ul li {
        font-size: 1rem;
    }
}
