* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    max-width: 2000px;
    width: 100%;
    margin: 0 auto;
}

.navbar-brand span {
    color: #8cc63f;
    font-weight: bold;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    height: 830px;
    width: 100%;
}

.get-started-btn {
    background-color: #d6eb4f;
    color: #1b381b;
    font-weight: 600;
    border-radius: 30px;
}

.section-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.card-service {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card-service:hover {
    transform: translateY(-8px);
}

/* .card_img {
    background-image: url('../images/card.png');
    background-size: cover;
    background-position: center;
    height: 300px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
} */

.card-service img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 300px;
    object-fit: cover;
}


/* personal care section starts */

.personal_icon {
    font-size: 3rem;
}

svg {
    fill: green;
}

svg:hover {
    fill: rgb(97, 97, 206);
}

/* personal care section ends */

/* testimonial section starts */

.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-author {
    font-weight: bold;
    margin-top: 1rem;
}

.testimonial-quote {
    font-style: italic;
    color: #555;
}

/* testimonial section ends */

/* why choose us section starts */

.why-choose-section {
    background: linear-gradient(to right, #0d6efd, #00b4d8);
    color: white;
    padding: 60px 0;
    border-radius: 1rem;
}

.why-choose-section h2 {
    font-weight: bold;
}

.why-choose-section ul {
    list-style: none;
    padding-left: 0;
}

.why-choose-section ul li::before {
    content: "✓";
    color: #fff;
    font-weight: bold;
    margin-right: 10px;
}

/* why choose us section ends */

.blockquote p {
    margin-top: 50px;

}

footer {
    background-color: #2d4c27;
    color: white;
    padding: 30px 0;
}


/* media qyary for mobile */
@media screen and (max-width: 767px) {
    .hero {
        height: 90vh;
    }
}