body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

h2 {
    text-transform: uppercase;
}

.service-main-section {
    /* display: flex; */
    /* justify-content: center; */
}

.service-main-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-main-section .description {
    background-color: #6E8B74;
    color: #fff;
}

.service-section {
    /* display: flex; */
    margin-bottom: 10px;
    justify-content: center;
    padding: 20px;
}
.service-section:nth-child(odd) {
    flex-direction: row-reverse;
    background-color: #6E8B74;
}
.service-section img {
    width:100%;
    height: 100%;
    max-height: 300px;
}
.description {
    padding: 20px;
}

.service-section:nth-child(odd) .description {
    color: #f2f2f2;
}

.service-section:nth-child(odd) p {
    color: #f3f3f3;
}

h5 {
    margin: 0;
    font-size: 1.5rem;
}
p {
        margin: 10px 0;
        color: #333;
        font-size: 14px;
        line-height: 1.5;
    }
ul {
     padding: 0; list-style: none;
    }
li {
    margin: 5px 0;
    padding-left: 20px;
    position: relative;
    color: #fff;
    font-size: 14px;
}
li::before {
    content: '\2713';
    color: #ffffff;
    position: absolute;
    left: 0;
}

.carousel-item img {
    width: 100%;
    height: 300px;
}

#faqs .card {
    margin-bottom: 10px;
    border: none;
    border-radius: 0;
}
#faqs .card-header {
    background-color: #6E8B74;
    color: white;
    padding: 0;
}
#faqs .btn-link {
    color: white;
    text-decoration: none;
    width: 100%;
    text-align: left;
    padding: 15px;
    font-size: 14px;
    text-transform: uppercase;
}
#faqs .btn-link:hover, #faqs .btn-link:focus {
    text-decoration: none;
    color: white;
}
#faqs .card-body {
    background-color: white;
    color: black;
    padding: 15px;
    border: 1px solid #6E8B74;
    font-size: 14px;
}

#faqs ul {
    padding-left: 25px;
    list-style-type: circle;
}
#faqs ul li {
    color: #000;
    padding-left: 5px;
}

#faqs ul li::before {
    content: '';
}

#faqs .fas {
    margin-right: 10px;
}


html {
    scroll-behavior: smooth;
}
body {
    font-family: Arial, sans-serif;
    background-color: #F4F7F6;
    color: #333;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6E8B74;
    padding: 15px 20px;
    /* position: fixed; */
    width: 100%;
    /* top: 0; */
    /* left: 0; */
    z-index: 2;
}
.logo img {
    max-width: 150px;
}
.nav-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}
.nav-menu {
    display: flex;
    gap: 20px;
}
.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
}
.nav-menu a:hover {
    color: #FFD700;
}
.call-button {
    background-color: #FF4081;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    /* display: none; */
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.call-button:hover {
    background-color: #D81B60;
    transform: scale(1.1);
}

.call-button .link {
    color: white !important;
    text-decoration: none !important;
}
/* Mobile Menu */
.menu-icon {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background: #2C3E50;
    padding-top: 60px;
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 10px rgba(0,0,0,0.5);
    z-index: 3;
}
.mobile-menu a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.mobile-menu a:hover {
    background-color: #FFD700;
    color: #2C3E50;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
    transition: color 0.3s ease;
}
.close-btn:hover {
    color: #FFD700;
}
@media (max-width: 992px) {
    .nav-menu, .header .call-button {
        display: none;
    }
    .menu-icon {
        display: block;
    }
}
.banner {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('https://content.app-sources.com/s/545802911774021721/uploads/Downloaded/pfrm_expl_unsplsh-9j9b2L0qAYU-8600164.webp?format=webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
    /* margin-top: 70px; */
    z-index: 1;
}
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.banner-content {
    position: relative;
    z-index: 1;
}
.banner-content p {
    color: white;
}
.about-section {
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.about-text {
    flex: 1;
    padding: 20px;
}
.about-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}
.about-text p {
    font-size: 1.2rem;
}
.about-image img {
    max-width: 100%;
    border-radius: 10px 0px 0px 10px;
}
.back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #FF4081;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.back-to-top:hover {
    background: #D81B60;
}

#contact {
    background-color: #6E8B74;
    color: #fff;
}

.our-mission-section {
    background-color: #6E8B74;
    color: #fff;
}

.our-mission-section p {
    color: #fff;
}

.review-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #6E8B74;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-height: 300px;
}

.stars {
    color: #FFC107;
    margin-bottom: 10px;
}

.review-card p {
    flex-grow: 1;
}

.review-card .reviewer {
    font-weight: bold;
    color: #fff;
    margin-top: 15px;
    text-align: right;
}

#testimonials p {
    color: #fff;
}

@media (max-width: 768px) {
    .review-container {
        display: inline-block !important;
    }

    .review-container .review-card{
        margin: 20px 0px;
    }
}
