/*******************************/
/********* General CSS *********/
/*******************************/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    color: #666666; /* Text color */
    background: #ffffff; /* Background color */
    font-family: 'Montserrat', sans-serif; /* Font family */
    font-weight: 400; /* Font weight */
    padding-top: 70px; /* Added top padding to accommodate fixed header */
    margin-top: 0; /* Ensures no additional space above the body */
    scroll-behavior: smooth;

}



h1,
h2, 
h3, 
h4,
h5, 
h6 {
    font-weight: 100;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #333333;
    outline: none;
    text-decoration: none;
}

.btn:focus {
    box-shadow: none;
}

.wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #FFD662;
    color: #000000;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    border-radius: 5px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top:hover {
    color: #ffffff;
    background: #00539C;
}

.back-to-top i {
    padding-top: 10px;
}


/*******************************/
/********** Header CSS *********/
/*******************************/
.header.scrolled {
    padding-top: 0px; /* Smaller padding */
    background: rgba(23, 18, 38, 0.8); /* Transparency */
    transition: padding 0.3s ease-in-out, background 0.3s ease-in-out; /* Smooth transition */
}

.header .brand img.scrolled {
    height: 120px; /* Smaller logo */
    width: 90px;
    transition: height 0.3s ease-in-out; /* Smooth transition for the logo */
}
.header {


    position: fixed; /* Changed from relative to fixed */
    width: 100%;
    background: #00539C;
    top: 0; /* Added to fix at the top */
    left: 0; /* Added to align left */
    right: 0; /* Added to align right */
    z-index: 1000; /* Ensure it's above other content */
    padding-top: 0px; /* Smaller padding */
}




.header .header-top {
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.header .brand {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0px;
}

.header .brand img {
    width: auto;
    height: 130px;
    width: 100px;
    transition: height 0.3s ease-in-out; /* Adjust this value to fit your logo's height */
}

.header .topbar {
    position: relative;
    text-align: right;
}

.header .topbar .topbar-col {
    display: inline-block;
    padding: 0 10px;
    margin-bottom: 15px;
}

.header .topbar-col a {
    color: #ffffff;
    font-size: 18px;
}

.header .topbar-col a i {
    margin-left: 10px;
    margin-right: 5px;
    color: #FFD662;
}

.header .topbar-social {
    position: relative;
}

.header .topbar-social a {
    display: inline-block;
}

.header .topbar-social a i {
    margin-right: 10px;
    font-size: 18px;
    color: #ffffff;
}

.header .topbar-social a:last-child i {
    margin: 0;
}

.header .topbar-social a:hover i {
    color: #FFD662;
}

.header .dropdown-menu {
    margin-top: 0;
    border: 0;
    border-radius: 5px;
    background: #eeeeee;
}

.header .dropdown-menu a.active {
    color: #FFD662;
}

@media (min-width: 992px) {
    .header .navbar {
        background: transparent !important;
    }
    
    .header .navbar-brand {
        display: none;
    }
    
    .header .navbar-light a.nav-link,
    .header .navbar-light .show > .nav-link {
        position: relative;
        padding: 8px 10px;
        color: #ffffff;
        font-size: 16px;
        z-index: 1;
    }
    
    .header .navbar-light a.nav-link:hover,
    .header .navbar-light a.nav-link.active {
        color: #FFD662;
    }
}



.header .navbar .btn {
    position: relative;
    margin-left: 15px;
    padding: 12px 20px 10px 20px;
    font-size: 13px;
    text-transform: uppercase;
    color: #171226;
    border: none;
    border-radius: 5px;
    background: #ffffff;
    transition: .3s;
}

.header .navbar .btn:hover {
    color: #000000;
    background: #FFD662;
}

.header .navbar .btn i {
    font-size: 16px;
    margin-right: 8px;
}
.hero-section {
    background: url('https://insights.workwave.com/wp-content/uploads/2020/05/happy-cleaners-stacking-hands-picture-id611175238.jpg') no-repeat center center;
    background-size: cover;
    padding: 350px 0;
    color: #fff;
    position: relative;
    text-align: left;
}

/* Overlay for text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 1;
}

/* Content container positioning */
.hero-section .container {
    position: relative;
    z-index: 2;
}

/* Styling for headings, paragraphs, and buttons */
.hero-section h1 {
    font-size: 2.5rem;
    font-weight: bold;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s 0.5s forwards;
}

.hero-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s 0.7s forwards;
}

.btn-modern {
    background-color: #28a745;
    border: none;
    padding: 0.75rem 1.5rem;
    color: #fff;
    border-radius: 0.3rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 1s 0.9s forwards;
}

/* Animation keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-form {
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-top: 0; /* Remove top margin as it will be on top */
}

.quote-form h2 {
    color: #333;
    margin-bottom: 15px;
}

.form-control {
    background: rgba(255, 255, 255, 0.9); /* Slightly more opaque than form background */
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 15px;
}

.form-control::placeholder {
    color: #666;
}

.btn-primary {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #28a745;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #218838; /* Darken button on hover */
    }
    @media (max-width: 992px) {
        .quote-form {
        margin-top: 20px;
        }
        }




/* Responsive adjustments for the hero section */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 20px; /* Adjust padding and add horizontal padding */
    }
    .hero-section h1 {
        font-size: 30px; /* Adjust font size for medium devices */
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px; /* Adjust padding for smaller devices */
    }
    .hero-section h1 {
        font-size: 28px; /* Adjust font size for small devices */
    }
    .hero-section p {
        font-size: 16px; /* Adjust paragraph font size for small devices */
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 10px; /* Adjust padding for extra small devices */
    }
    .hero-section h1 {
        font-size: 24px; /* Further adjust font size for extra small devices */
    }
    .hero-section p {
        font-size: 14px; /* Further adjust paragraph font size for extra small devices */
    }
}

@media (max-width: 768px) {
    /* Adjust this value to match the height of your mobile header */
    body {
        padding-top: 250px; /* For example, if the mobile header is 120px high */
    }

    .hero-section {
        /* Add more top padding to the hero section to ensure it starts below the header */
        padding-top: 250px;
    }
}


.fixed-review-summary {
    position: fixed; /* Keeps the review summary fixed on the screen */
    bottom: 10px; /* Distance from the bottom of the screen */
    left: 10px; /* Distance from the right of the screen for a more modern look */
    background-color: #2C3E50; /* Dark background for contrast */
    color: #FFFFFF; /* White text for readability */
    padding: 10px 15px;
    border-radius: 5px; /* Rounded corners for a modern look */
    font-family: 'Arial', sans-serif;
    z-index: 1000;
    transition: transform 0.3s ease; /* Smooth transition for hover effect */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Subtle shadow for depth */
}

.fixed-review-summary a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center; /* Aligns items horizontally */
}

.fixed-review-summary .stars {
    color: #FFD700; /* Gold color for stars */
    margin-right: 8px; /* Spacing between stars and score */
}

.fixed-review-summary .score {
    font-weight: bold;
    margin-right: 4px; /* Spacing between score and review-count */
}

.fixed-review-summary .review-count {
    text-transform: uppercase; /* Capitalized label for a modern look */
    font-size: 0.9em; /* Slightly smaller font size for the label */
}

/* Hover effect */
.fixed-review-summary:hover {
    transform: scale(1.05); /* Slightly enlarges the button on hover */
}







@media (max-width: 480px) {
    .header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header.home {
        padding-top: 10px; /* Adjusted padding for the home header on phones */
    }

    .header .brand img {
        max-width: 80px; /* Even smaller logo for very small devices */
    }


}
@media (max-width: 480px) {
    .container-fluid {
        padding: 0 10px; /* Add some padding to the sides for better spacing */
    }
}



@media (max-width: 768px) {
    /* Adjust the header padding for mobile devices */
    .header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header .container-fluid {
        padding-left: 10px;
        padding-right: 10px;
    }

    .header .topbar-col {
        display: block; /* Adjust layout for topbar columns on phones */
        padding: 5px 0; /* Adjust padding for topbar columns on phones */
        margin-bottom: 5px; /* Add space between topbar columns on phones */
    }
    

    /* Adjust the logo size for mobile devices */
    .header .brand img {
        max-width: 100px; /* Smaller logo for mobile devices */
    }

    /* Adjust the menu button size if you have one */
    .header .navbar-toggler {
        font-size: 24px; /* Larger icon for better touch */
    }

    /* Adjust the dropdown menu styling for mobile */
 
    /* Style adjustments for the navigation links */
    .header .navbar-light a.nav-link {
        font-size: 14px; /* Smaller font size for nav links */
        padding: 8px 5px; /* Adjust padding for nav links */
    }

    /* Style adjustments for the contact info */
    .header .topbar-col a {
        font-size: 16px; /* Smaller font size for contact links */
    }
}
/*******************************/
/******* Page Header CSS *******/
/*******************************/
.page-header {
    position: relative;
    margin-bottom: 20px;
    padding: 90px;
    text-align: center;
    background: #FFD662;
    
}

.page-header h2 {
    color: #000000;
    font-size: 60px;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.page-header a {
    position: absolute;
    padding: 0 12px;
    font-size: 22px;
    font-weight: 300;
    color: #171226;
    transform: translate(-50%, 50%);
    top: 50%;
    left: 50%;
}

.page-header a:hover {
    color: #000000;
}

.page-header a::after {
    position: absolute;
    content: "/";
    width: 8px;
    height: 8px;
    top: -2px;
    right: -7px;
    text-align: center;
    color: #666666;
}

.page-header a:last-child::after {
    display: none;
}

@media (max-width: 80px) {
    .page-header {
        padding: 0px; /* Adjusted padding for tablet screens */
    }
    .page-header h2 {
        font-size: 48px; /* Smaller font size for tablet screens */
    }
    .page-header a {
        font-size: 20px; /* Slightly smaller font size for links */
        transform: none;
        position: relative;
    }
}

/* Responsive styles for mobile devices */
@media (max-width: 80px) {
    .page-header {
        padding-top: 0px; /* Reduced padding for mobile screens */
    }
    .page-header h2 {
        font-size: 36px; /* Smaller font size for mobile screens */
        line-height: 1.2; /* Adjust line height for better readability */
        margin-bottom: 20px; /* Adjust spacing */
    }
    .page-header a {
        font-size: 18px; /* Smaller font size for links */
        transform: none;
        position: relative;
        text-align: center;
    }
}

/* Even smaller devices */
@media (max-width: 280px) {
    .page-header {
        padding: 0px; /* Further reduced padding for small mobile screens */
        max-height: 50px;
    }
    .page-header h2 {
        font-size: 30px; /* Reduced font size for h2 on very small screens */
        margin-bottom: 10px; /* Reduced bottom margin for h2 */
    }
    .page-header a {
        font-size: 16px; /* Further reduce the font size for links */
        transform: none;
        position: relative;
        text-align: center;
    }
    .page-header a::after {
        right: -10px; /* Adjusted right position of slash for smaller font size */
    }
}

@media (max-width: 768px) {
.page-header {
    padding-top: 70px;
    margin-bottom: 40px;
    }

}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    width: 100%;
    max-width: 550px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 60px;
    padding-bottom: 15px;
}

.section-header::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 3px;
    left: calc(50% - 50px);
    bottom: 0;
    background: linear-gradient(to left, #FFD662, #00539C, #FFD662);
    border-radius: 100%;
}

.section-header::after {
    position: absolute;
    content: "";
    width: 20px;
    height: 9px;
    left: calc(50% - 10px);
    bottom: -3px;
    background: #171226;
    border-radius: 5px;
}

.section-header p {
    margin-bottom: 10px;
    font-size: 20px;
}

.section-header h2 {
    color: #171226;
    font-size: 50px;
    font-weight: 100;
}

.section-header.left {
    text-align: left;
}

.section-header.left::before {
    width: 60px;
    left: 0;
    background: linear-gradient(to left, #FFD662, #00539C, #00539C);
    border-radius: 0 100% 100% 0;
}

.section-header.left::after {
    left: 0;
    border-radius: 5px;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.about .about-img img {
    width: 100%;
    border-radius: 5px;
}

.about .about-text h2 {
    position: relative;
    color: #171226;
    font-size: 50px;
    margin-bottom: 15px;
}

.about .about-text h2 span {
    font-size: 120px;
}

.about .about-text p {
    font-size: 16px;
    margin-bottom: 30px;
}

.about .about-text a.btn {
    padding: 15px 35px;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    border: none;
    border-radius: 5px;
    background: #FFD662;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #ffffff;
    background: #00539C;
}

@media (max-width: 767.98px) {
    .about .about-img img {
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .page-header {
        padding-top: 70px;
        margin-bottom: 10px;
    }
    .page-header h2 {
        padding-top: 20px;
        padding-bottom: 30px;
        font-size: 25px;
        margin-bottom: 0px; /* Adjust the font size for better readability on mobile */
    }
    .about {
        padding-top: 0px;
    }

}



/*******************************/
/********* Service CSS *********/
/*******************************/
.services-section {
    text-align: center;
    margin-bottom: 30px;
}

.section-header p {
    font-size: 20px;
    color: #171226;
    margin-bottom: 5px;
    flex-grow: 1;

}

.service-item img {
    width: 100%; /* makes the image width the same as its container */
    height: 200px; /* set a fixed height, adjust as needed */
    object-fit: cover; /* ensures the image covers the set area, cropping if necessary */
}

.section-header h2 {
    font-size: 36px;
    color: #171226;
    margin-bottom: 20px;
}

.service-wrapper {
    overflow-x: auto;
    white-space: nowrap;
    padding: 20px 0;
    padding-bottom: 80px;
}

.service-container {
    display: flex; /* changed to flex for better alignment and spacing */
    
}

.service-item {
    position: relative;
    flex: 0 0 calc(25% - 15px); /* Adjusted to account for margin-right */
    max-width: calc(25% - 15px); /* Ensure the item doesn't grow larger */
    text-align: center;
    background: #ffffff;
    border-radius: 5px;
    margin-right: 15px; /* Keep the margin to space out items */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    padding: 15px;
    padding-bottom: 60px;
    white-space: normal;
    display: inline-block;
    vertical-align: top;
}

@media (max-width: 768px) {
    .service-item {
        flex: 0 0 calc(50% - 15px); /* 2 items per row */
        max-width: calc(50% - 15px);
    }
}

/* Media query for even smaller screens */
@media (max-width: 480px) {
    .service-item {
        flex: 0 0 100%; /* 1 item per row */
        max-width: 100%;
        margin-right: 0; /* Remove the margin since it's full width now */
    }
}

/* Hide scrollbar for IE, Edge, and Firefox */




/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.feature .section-header {
    margin-bottom: 30px;
}

.feature a.btn {
    margin-top: 10px;
    padding: 15px 35px;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    border: none;
    border-radius: 5px;
    background: #FFD662;
    transition: .3s;
}

.feature a.btn:hover {
    color: #ffffff;
    background: #00539C;
}

.feature .feature-item {
    margin-bottom: 30px;
}

.feature .feature-item img {
    width: 100%;
    border-radius: 5px;
}

.feature .feature-item h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 300;
    color: #171226;
}

.feature .feature-item p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .feature a.btn {
        margin-bottom: 45px;
    }
}




/*******************************/
/*********** FAQs CSS **********/
/*******************************/
/*******************************/
/*********** FAQs CSS **********/
/*******************************/
.faqs {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.faqs .section-header {
    margin-bottom: 30px;
}

.faqs img {
    width: 100%;
    border-radius: 5px;
}

@media(max-width: 767.98px) {
    .faqs img {
        margin-bottom: 30px;
    }
}

.faqs .card {
    margin-bottom: 15px;
    padding-top: 15px;
    border: none;
    border-radius: 0;
    border-top: 1px solid #eeeeee;
}

.faqs .card:last-child {
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
}

.faqs .card-header {
    padding: 0;
    border: none;
    background: #ffffff;
}

.faqs .card-header a {
    display: block;
    width: 100%;
    color: #00539C;
    font-size: 18px;
    font-weight: 300;
    line-height: 40px;
}

.faqs .card-header a span {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center;
    background: #FFD662;
    color: #000000;
    border-radius: 5px;
}

.faqs .card-header [data-toggle="collapse"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f067";
    float: right;
    color: #00539C;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-header [data-toggle="collapse"][aria-expanded="true"]:after {
    font-family: 'font Awesome 5 Free';
    content: "\f068";
    float: right;
    color: #00539C;
    font-size: 12px;
    font-weight: 900;
    transition: .3s;
}

.faqs .card-body {
    padding: 15px 0 0 0;
    font-size: 16px;
    border: none;
    background: #ffffff;
}

.faqs a.btn {
    margin-top: 30px;
    padding: 15px 35px;
    font-size: 16px;
    text-transform: uppercase;
    color: #000000;
    border: none;
    border-radius: 5px;
    background: #FFD662;
    transition: .3s;
}

.faqs a.btn:hover {
    color: #ffffff;
    background: #00539C;
}

.faqs .card-header a span {
    display: flex;             /* Use flexbox for centering */
    align-items: center;       /* Center vertically */
    justify-content: center;   /* Center horizontally */
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background: #FFD662;
    color: #000000;
    border-radius: 5px;
    font-size: 18px;           /* Adjust font-size as needed */
    font-weight: bold;         /* Optional: makes the number bold */
}


/*******************************/
/****** Pricing Plan CSS *******/
/*******************************/
.price {
    position: relative;
    padding: 45px 0 15px 0;
}

.price .price-item {
    text-align: center;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    margin-bottom: 30px;
}

.price .price-header {
    padding: 30px 0 50px 0;
    color: #000000;
    background: #FFD662;
    border-radius: 5px 5px 0 0;
}

.price .featured-item .price-header {
    color: #ffffff;
    background: #00539C;
}

.price .price-icon {
    margin-bottom: 15px;
}

.price .price-icon i {
    display: inline-block;
    font-size: 45px;
}

.price .price-title h2 {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
}

.price .price-pricing h2 {
    font-size: 60px;
    font-weight: 100;
    margin-left: 15px;
    margin-bottom: 0;
}

.price .price-pricing h2 small {
    position: absolute;
    font-size: 18px;
    font-weight: 300;
    margin-top: 16px;
    margin-left: -15px;
}

.price .price-body {
    padding: 20px 0;
    background: #ffffff;
    border-radius: 25px 30px 0 0;
    margin-top: -30px;
}

.price .price-des ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.price .price-des ul li {
    color: #2A293E;
    font-size: 14px;
    font-weight: 300;
    padding: 5px;
    border-bottom: 1px solid #eeeeee;
}

.price .price-des ul li:last-child {
    border: none;
}

.price .price-footer {
    padding-bottom: 30px;
    background: #ffffff;
    border-radius: 0 0 5px 5px;
}


.price .price-action a {
    display: inline-block;
    padding: 10px 25px;
    color: #000000;
    font-size: 14px;
    letter-spacing: 2px;
    background: #FFD662;
    border-radius: 5px;
    transition:  .3s;
}

.price .price-action a i {
    margin-right: 5px;
}

.price .price-action a:hover {
    color: #ffffff;
    background: #00539C;
}

.price .featured-item .price-action a {
    color: #ffffff;
    background: #00539C;
}

.price .featured-item .price-action a:hover {
    color: #000000;
    background: #FFD662;
}


/*******************************/
/********** Newsletter *********/
/*******************************/
.newsletter {
    position: relative;
    margin: 45px 0;
    padding: 60px 0;
    background: #00539C;
}

.newsletter h2 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 100;
    text-transform: uppercase;
}

.newsletter p {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
}

.newsletter .form {
    position: relative;
}

.newsletter input {
    height: 60px;
    border: none;
    border-radius: 5px;
}

.newsletter .btn {
    position: absolute;
    top: 5px;
    right: 5px;
    height: 50px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight:400;
    text-transform: uppercase;
    color: #000000;
    background: #FFD662;
    border-radius: 5px;
    transition: .3s;
}

.newsletter .btn:hover {
    color: #ffffff;
    background: #00539C;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    padding-top: 45px;
    padding-bottom: 0px;
}

.testimonial .testimonial-item {
    position: relative;
    margin: 0 15px;
    text-align: center;
}

.testimonial .testimonial-img {
    position: relative;
    margin-bottom: 15px;
    z-index: 1;
}

.testimonial .testimonial-item img {
    margin: 0 auto;
    width: 150px;
    border: 15px solid #ffffff;
    border-radius: 100px;
}

.testimonial .testimonial-content {
    position: relative;
    margin-top: -90px;
    padding: 100px 25px 25px 25px;
    text-align: center;
    background: #FFD662;
    border-radius: 5px;
}

.testimonial .testimonial-item p {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.testimonial .testimonial-content h3 {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.testimonial .testimonial-content h4 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0;
}

.testimonial .owl-nav,
.testimonial .owl-dots {
    margin-top: 15px;
    text-align: center;
}

.testimonial .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFD662;
}

.testimonial .owl-dot.active {
    background: #00539C;
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.blog .blog-item {
    position: relative;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.blog .blog-item img {
    width: 100%;
    border-radius: 5px 5px 0 0;
}

.blog .blog-item h3 {
    margin: 0;
    padding: 25px 30px 5px 30px;
    font-size: 22px;
    font-weight: 300;
    color: #00539C;
}

.blog .blog-item .meta {
    padding: 0 30px 15px 30px;
}

.blog .blog-item .meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    color: #999999;
}

.blog .blog-item .meta i {
    margin: 0 2px 0 10px;
}

.blog .blog-item .meta i:first-child {
    margin-left: 0;
}

.blog .blog-item p {
    padding: 0 30px;
    font-size: 16px;
}

.blog .blog-item a.btn {
    position: relative;
    margin: 5px 30px 30px 30px;
    padding: 10px 20px;
    font-size: 14px;
    text-transform: uppercase;
    color: #000000;
    border: none;
    border-radius: 5px;
    background: #FFD662;
    transition: .3s;
}

.blog .blog-item:hover a.btn {
    color: #ffffff;
    background: #00539C;
}

.blog .blog-item a.btn:hover {
    color: #000000;
    background: #FFD662;
}


/*******************************/
/******* Call to Action ********/
/*******************************/
.call-to-action {
    position: relative;
    margin-bottom: 0px;
    padding: 60px 0;
    background: #00539C;
}

.call-to-action h2 {
    color: #ffffff;
    font-size: 45px;
    font-weight: 100;
    text-transform: uppercase;
}

.call-to-action p {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 300;
}

.call-to-action a {
    float: right;
    height: 60px;
    padding: 16px 35px 14px 35px;
    font-size: 18px;
    font-weight:400;
    text-transform: uppercase;
    color: #000000;
    background: #FFD662;
    border-radius: 5px;
}

.call-to-action a:hover {
    color: #FFD662;
    background: #ffffff;
}

@media (max-width: 768px) {
    .call-to-action a {
        float: left;
        margin-top: 30px;
    }
}






/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.contact .faqs {
    padding: 0;
}

@media(max-width: 767.98px) {
    .contact .faqs {
        margin-bottom: 30px;
    }
}

.contact .contact-form input {
    height: 60px;
    border-radius: 5px;
}

.contact .contact-form .btn {
    height: 60px;
    padding: 0 20px;
    color: #000000;
    font-size: 18px;
    text-transform: uppercase;
    background: #FFD662;
    border-radius: 5px;
    transition: .3s;
}

.contact .contact-form .btn:hover {
    color: #ffffff;
    background: #00539C;
}




/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 10px;
    padding-top: 90px;
    margin-bottom: 0px;
    background: #00539C;
    color: #ffffff;
    font-weight: 300;
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-form {
    position: relative;
    margin-bottom: 45px;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-form h2{
    position: relative;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 400;
    color: #FFD662;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer .footer-contact p {
    font-size: 14px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 25px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 25px;
    color: #ffffff;
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #FFD662;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ffffff;
    
}

.footer .footer-link a::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #FFD662;
}

.footer .footer-form input {
    height: 45px;
    font-size: 14px;
    border: none;
    border-radius: 5px;
}

.footer .footer-form .btn {
    position: absolute;
    right: 5px;
    bottom: 5px;
    font-size: 14px;
    font-weight:400;
    text-transform: uppercase;
    color: #000000;
    background: #FFD662;
    border-radius: 5px;
    transition: .3s;
}

.footer .footer-form .btn:hover {
    color: #ffffff;
    background: #00539C;
}

.footer .footer-menu {
    position: relative;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu .f-menu {
    font-size: 0;
    text-align: center;
}

.footer .footer-menu .f-menu a {
    color: #ffffff;
    font-size: 14px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #ffffff;
}

.footer .footer-menu .f-menu a:hover {
    color: #FFD662;
}

.footer .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


.footer .copyright {
    padding: 30px 15px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright p {
    margin: 0;
    font-size: 14px;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #FFD662;
    font-weight: 400;
}

.footer .copyright p a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

.trusted {
    padding: 50px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.trusted .container {
    overflow: hidden;
}

.trusted-logos-wrapper {
    display: flex;
    width: fit-content;
    animation: scrollLogo 30s linear infinite;
}

.trusted-logo {
    flex: 0 0 120px; /* Set a fixed width for all logos */
    margin-right: 30px; /* Adjust the space between logos */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px; /* Set a fixed height for all logos */
}

.trusted-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    -webkit-user-drag:auto;
     /* This will ensure the image is contained within the dimensions and is not stretched */
}

@keyframes scrollLogo {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}



.section-header {
    margin-bottom: 40px;
}

.sevice-item {
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.sevice-item:hover {
    transform: translateY(-10px);
}

.sevice-item i {
    color: #171226; /* Adjust color as needed */
}

.sevice-item h4 {
    margin-top: 20px;
    font-weight: 600;
}
.awards {
    text-align: left; /* Align text to the left for a cleaner look */
    padding: 40px 10%; /* Responsive horizontal padding */
    background-color: #ffffff; /* White background for a clean look */
    border-radius: 10px; /* Rounded corners */
    margin: 40px auto; /* Center the section with vertical margin */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Softer shadow for depth */
    font-family: 'Open Sans', sans-serif; /* Consistent modern font with the accreditations section */
    max-width: 960px; /* Maximum width for content readability */
}

.awards h2 {
    color: #333; /* Darker color for contrast */
    margin-bottom: 30px; /* More space below the heading */
    font-weight: 700; /* Bold font weight for the heading */
    font-size: 2em; /* Larger font size for the heading */
    padding: 30px;
    text-align: center;
    
}

.awards ul {
    list-style: none;
    padding: 0;
    margin: 0; /* Removes default margin */
}

.awards li {
    background-color: #f9f9f9; /* Light grey background for each item */
    border-radius: 5px; /* Rounded corners for each item */
    margin-bottom: 20px; /* More space between items */
    padding: 20px; /* Padding inside each item */
    display: block; /* Block display for full-width cards */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow for cards */
}

.awards img {
    width: 100px; /* Fixed width for logos */
    height: auto; /* Auto height to maintain aspect ratio */
    margin-right: 20px; /* Space between the image and the text */
    border-radius: 5px; /* Rounded corners for images */
}

/* Hover effects for interactive elements */
.awards li:hover {
    background-color: #eef2f7; /* Light blue background on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Larger shadow on hover */
    transform: translateY(-3px); /* Slight move upwards on hover */
}

.awards img:hover {
    transform: none; /* Remove rotation for a cleaner look */
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .awards {
        padding: 20px 5%; /* Smaller padding on smaller screens */
    }
}


.accreditations {
    text-align: center; /* Aligns text to the left for a cleaner look */
    background-color: #ffffff; /* White background for a clean, modern look */
    border-radius: 10px; /* Rounded corners */
    font-family: 'Open Sans', sans-serif; /* Modern font */
    max-width: 960px; /* Restricts the maximum width for readability */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); /* Adds a shadow for depth */
    margin: 20px auto; /* Centers the section with margin on all sides */
    padding: 40px; 
    
}

.accreditations h2 {
    color: #333; /* Darker color for contrast */
    margin-bottom: 30px; /* More space below the heading */
    font-weight: 700; /* Bold font weight for the heading */
    font-size: 2em; /* Larger font size for the heading */
}

.accreditations ul {
    list-style: none;
    padding: 0;
    margin: 0; /* Removes default margin */
}

.accreditations li {
    background-color: #f9f9f9; /* Light grey background for each item */
    border-radius: 5px; /* Rounded corners for each item */
    margin-bottom: 20px; /* More space between items */
    padding: 20px; /* Padding inside each item */
    display: block; /* Block display for full-width cards */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); /* Subtle shadow for cards */
}

.accreditations img {
    width: 100px; /* Fixed width for logos */
    height: auto; /* Auto height to maintain aspect ratio */
    margin-right: 20px; /* Space between the image and the text */
    border-radius: 5px; /* Rounded corners for images */
}

.accreditations p {
    color: #555; /* Dark grey color for the paragraph text */
    text-align: left; /* Align text to the left */
    max-width: none; /* Allows text to take up available space */
    margin-bottom: 0; /* Removes bottom margin from paragraph */
    line-height: 1.8; /* More line height for readability */
}

/* Hover effects for interactive elements */
.accreditations li:hover {
    background-color: #eef2f7; /* Light blue background on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Larger shadow on hover */
    transform: translateY(-3px); /* Slight move upwards on hover */
}

/* Responsive design adjustments */
@media (max-width: 768px) {
    .accreditations {
        padding: 20px; /* Less padding on smaller screens */
        margin: 20px auto; /* Less margin on smaller screens */
    }

    .accreditations img {
        margin-bottom: 10px; /* Space below image on smaller screens */
    }

    .accreditations li {
        display: block; /* Stack vertically on smaller screens */
    }
}


.service-item .btn {
    position: absolute;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    border: none;
    border-radius: 25px; /* Gives a pill-like shape */
    background-image: linear-gradient(to right, #171226, #171226); /* Gradient background */
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for hover effects */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    cursor: pointer;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%); 
    
}

.service-item .btn:hover, .service-item .btn:focus {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Larger shadow for hover/focus */
    outline: none; /* Remove outline on focus for a clean look */
    background-image: linear-gradient(to right, #2193b0, #6dd5ed); /* Change gradient direction */
}

/* Make sure to include focus styles for accessibility */
.service-item .btn:focus {
    border: 2px solid #fff; /* Add a border to highlight focus */
}

@media(max-width: 767.98px) { 
.awards h2 {
    padding-top: 150px; /* Larger font size for the heading */
}
}




.smarter-clean-section {
    background-color: #007bff; /* Bootstrap primary color */
    color: white;
  }
  
  .smarter-clean-section h2,
  .smarter-clean-section h3 {
    color: white;
  }
  
  .smarter-clean-section p {
    color: white;
  }
  
  .bi {
    font-size: 2rem; /* Adjust icon size as needed */
    display: block;
    margin: 0 auto;
  }
  
  .carpetcleaning2section {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align to the left */
    background-image: url('https://img.choice.com.au/-/media/74fe12e385064f56baa7164473f2ca20.ashx');
    background-size: cover;
    background-position: center;
    color: white; /* Or another color that contrasts well with the background */
    padding: 40px;
    position: relative; /* Needed for pseudo-element */
  }
  
  .carpetcleaning2section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5); /* Adjust color and opacity as needed */
    z-index: -1; /* Ensures the image stays in the background */
  }
  
  .carpetcleaning2section .content {
    z-index: 1; /* Make sure content is above the pseudo-element */
    padding-left: 20px; /* Adjust as needed */
  }
  
  .carpetcleaning2section h2 {
    font-size: 2.5rem;
    font-weight: bold; /* Makes text bolder */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
  }
  
  .carpetcleaning2section p,
  .carpetcleaning2section ul {
    background: rgba(255, 255, 255, 0.5); /* Semi-transparent background for readability */
    padding: 10px; /* Padding inside the text background */
    border-radius: 5px; /* Optional: rounds corners of the text background */
  }
  
  .carpetcleaning2section li {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
  }
  
  
  
  
  
  
  
  
  
  .windowcleaning1-window {
    text-align: center;
    margin: 20px 0;
  }
  
  .windowcleaning1-window .window-header-window h1 {
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .windowcleaning1-window .window-header-window p {
    color: #34495e;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
  }
  
  .windowcleaning1-window .window-services-grid-window {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Adjust the minmax values based on your design requirements */
    gap: 20px; /* Adjust the gap between items as needed */
    align-items: start; /* Aligns items to the start of the container */
  }
  
  .windowcleaning1-window .window-service-window {
    position: relative;
    overflow: hidden; /* Ensures images don't overflow their container */
    display: flex; /* Use flex layout to better control the position of the caption */
    flex-direction: column; /* Stack image and caption vertically */
    align-items: center; /* Center items horizontally */
  }
  
  
  .windowcleaning1-window .window-service-window img {
    width: 100%; /* Full width of the container */
    max-height: 200px; /* Adjust based on your design, ensures all images are the same height */
    object-fit: cover; /* Ensures the image covers the area, may crop some parts of the image */
    margin-bottom: 10px; /* Space between image and caption */
  }
  
  .windowcleaning1-window .window-service-window:hover img {
    transform: scale(1.05);
  }
  
  .windowcleaning1-window .window-service-window h2 {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    margin: 0;
    padding: 10px;
    position: absolute;
    bottom: 0;
    width: 100%;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
  }
  
  .windowcleaning1-window .window-service-window:hover h2 {
    transform: translateY(0);
  }
  
  /* Optional: Adding a box-shadow for a 'lifted card' effect */
  .windowcleaning1-window .window-service-window {
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
  }
  
  .windowcleaning1-window .window-service-window:hover {
    box-shadow: 0px 12px 24px 0px rgba(0,0,0,0.25);
    transform: translateY(-5px);
  }
  

  .windowcleaning2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #00539C; /* Adjust the background color as per your design */
    color: #fff; /* Text color */
  }
  
  .windowcleaning2-content {
    flex-basis: 50%; /* Adjust the width as necessary */
    padding-right: 20px; /* Spacing between text and image */
  }
  
  .windowcleaning2-content h1 {
    font-size: 2rem; /* Large font size for the heading */
    margin-bottom: 20px; /* Spacing after the heading */
  }
  
  .windowcleaning2-content p {
    font-size: 1rem; /* Adjust the font size as needed */
    margin-bottom: 20px; /* Spacing after the paragraph */
  }
  
 
  
  .windowcleaning2-image {
    flex-basis: 50%; /* Adjust the width as necessary */
  }
  
  .windowcleaning2-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .windowcleaning2 {
      flex-direction: column;
      text-align: center;
    }
  
    .windowcleaning2-content,
    .windowcleaning2-image {
      flex-basis: 100%;
    }
  
    .windowcleaning2-content {
      padding-right: 0; /* Remove spacing between text and image on small screens */
    }
  }
  
  .contact-us-btn {
    padding: 10px 20px;
    background-color: #0f0; /* A bright color for visibility */
    border: none;
    color: #000; /* Text color */
    cursor: pointer;
    font-size: 1rem; /* Adjust the font size as needed */
    border-radius: 5px; /* Optional: rounded corners for the button */
    text-transform: uppercase; /* Optional: uppercase text */
  }

  


  .officecleaning {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    font-family: 'Segoe UI', Arial, sans-serif;
  }
  
  .officecleaning-text {
    flex: 1; /* Takes up half the space of the container */
    max-width: 50%; /* Ensures text doesn't get too wide on larger screens */
  }
  
  .officecleaning-text h2 {
    color: #2c3e50; /* Dark color for the heading */
    margin-bottom: 15px;
  }
  
  .officecleaning-text p {
    color: #34495e; /* Slightly lighter color for the paragraph */
    margin-bottom: 20px;
  }
  
  .officecleaning-text ul {
    list-style: none; /* Removes default list styling */
    padding-left: 0; /* Aligns with the rest of the content */
  }
  
  .officecleaning-text ul li {
    margin-bottom: 10px; /* Space between list items */
    color: #34495e; /* Text color */
    position: relative; /* For custom checkmark */
    padding-left: 30px; /* Space for checkmark */
  }
  
  .officecleaning-text ul li:before {
    content: '✔'; /* Custom checkmark */
    color: #27ae60; /* Checkmark color */
    position: absolute;
    left: 0; /* Position checkmark at the start of the item */
  }
  
  .officecleaning-image {
    flex: 1; /* Takes up half the space of the container */
    max-width: 50%; /* Ensures image doesn't get too wide on larger screens */
  }
  
  .officecleaning-image img {
    width: 100%; /* Makes the image responsive */
    height: auto; /* Maintains aspect ratio */
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    .officecleaning {
      flex-direction: column;
      text-align: center;
    }
  
    .officecleaning-text, .officecleaning-image {
      max-width: 100%; /* Full width on smaller screens */
    }
  
    .officecleaning-text {
      margin-bottom: 20px; /* Space between text and image on smaller screens */
    }
  }
/* Base styles for the officecleaning2 section */
.officecleaning2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 40px;
    gap: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Arial, sans-serif;
    overflow: hidden; /* Hide the overflow for animation purposes */
}

/* Adding a hover animation to the content */
.officecleaning2-content {
    transition: transform 0.3s ease;
}

.officecleaning2-content:hover {
    transform: translateY(-5px);
}

/* Subtle fade-in animation for the content */
.officecleaning2-content {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* Styles for the image with a scale-up hover effect */
.officecleaning2-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.officecleaning2-image:hover img {
    transform: scale(1.05);
}

/* Styles for the certification logos with a hover effect */
.certification-logos img {
    height: 50px; /* Adjust based on your needs */
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.certification-logos img:hover {
    transform: scale(1.1);
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .officecleaning2 {
        flex-direction: column;
        text-align: center;
    }

    .officecleaning2-content,
    .officecleaning2-image {
        width: 100%;
    }

    .certification-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.officecleaning3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff; /* or any color that fits your design */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* subtle shadow for depth */
    font-family: 'Segoe UI', Arial, sans-serif;
}

.officecleaning3-image {
    flex: 0 0 auto; /* don't grow or shrink but allow flex-basis */
    margin-right: 20px; /* space between image and text */
}

.officecleaning3-image img {
    display: block; /* removes bottom space under image */
    width: auto; /* maintain original image width */
    max-height: 300px; /* adjust as needed */
}

.officecleaning3-content {
    flex: 1; /* take the remaining space */
}

.officecleaning3-content h2 {
    color: #333; /* dark color for heading */
    margin-bottom: 0.5em;
}

.officecleaning3-content ul {
    list-style: none; /* remove default list styling */
    padding: 0;
    margin: 0;
}

.officecleaning3-content ul li {
    padding-left: 1em;
    text-indent: -1em; /* align bullets with the content */
    margin-bottom: 0.5em;
}

.officecleaning3-content ul li::before {
    content: '•'; /* custom bullet point */
    color: #27ae60; /* color of bullet points */
    font-weight: bold; /* make bullet points bold */
    display: inline-block; /* needed for custom bullets */
    width: 1em; /* space for bullet */
    margin-left: -1em; /* position bullet outside the margin */
}

@media (max-width: 768px) {
    .officecleaning3 {
        flex-direction: column;
        text-align: center;
    }

    .officecleaning3-image,
    .officecleaning3-content {
        width: 100%;
    }

    .officecleaning3-image {
        margin-bottom: 20px; /* space between image and text on small screens */
    }
}



.bandbcleaning {
    background-image: url('https://cstriad.com/wp-content/uploads/2022/02/House-cleaning-bg-1080x675.jpg'); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    color: #ffffff; /* Text color */
    padding: 40px; /* Adjust padding as needed */
    position: relative; /* For content positioning */
  }
  
  .bandbcleaning::after {
    content: '';
    background: rgba(0, 0, 0, 0.5); /* Overlay color */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .bandbcleaning-content {
    position: relative; /* Position content above the overlay */
    z-index: 1; /* Ensure the content is above the pseudo-element */
    max-width: 600px; /* Adjust as needed */
    margin: auto; /* Center the text block */
  }
  
  .bandbcleaning h2 {
    font-size: 2.5rem; /* Adjust size as needed */
    margin-bottom: 20px; /* Adjust spacing as needed */
  }
  
  .bandbcleaning p {
    font-size: 1rem; /* Adjust size as needed */
    line-height: 1.6; /* For better readability */
  }
  

  .bandbcleaning2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    padding: 40px;
    gap: 20px;
}

.bandbcleaning2-text {
    flex: 1;
    max-width: 600px;
}

.bandbcleaning2-text h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 20px;
}

.bandbcleaning2-text p {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-buttonprem {
    background-color: #ffa500; /* Orange color, you can choose whatever color fits your design */
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-buttonprem:hover {
    background-color: #cc8400; /* Darker orange on hover */
}

.bandbcleaning2-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.bandbcleaning2-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px; /* Optional: for rounded corners */
}

@media (max-width: 768px) {
    .bandbcleaning2 {
        flex-direction: column;
        text-align: center;
    }

    .bandbcleaning2-text, .bandbcleaning2-image {
        max-width: 100%;
    }

    .bandbcleaning2-image {
        margin-top: 20px;
    }
}
.bandbcleaning3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f8f8; /* Adjust the background color as per your design */
    padding: 40px;
}

.bandbcleaning3-content {
    max-width: 50%;
}

.bandbcleaning3-content h2 {
    color: #333; /* Dark color for the heading */
    margin-bottom: 20px;
}

.bandbcleaning3-content p {
    color: #666; /* Gray color for the paragraph */
    margin-bottom: 20px;
}


.bandbcleaning3-image {
    max-width: 50%;
}

.bandbcleaning3-image img {
    width: 100%;
    height: auto;
    border-radius: 4px; /* Optional: rounds the corners of the image */
}

@media (max-width: 768px) {
    .bandbcleaning3 {
        flex-direction: column;
        text-align: center;
    }

    .bandbcleaning3-content,
    .bandbcleaning3-image {
        max-width: 100%;
    }

    .bandbcleaning3-contact-button {
        margin-top: 20px; /* Adds space above the button */
    }

    .bandbcleaning3-image {
        margin-top: 20px; /* Adds space above the image */
    }
}


