
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: rgba(237, 234, 230);
            overflow-x: hidden; /* Prevent horizontal scrolling */
        }

        /* Header */
        #header {
            background-color: rgba(237, 234, 230, 0.99);
            color: #006980;
            padding: 10px 20px;
            text-align: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transform: translateY(0);
            transition: transform 0.3s ease;
            height: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        #header.hidden {
            transform: translateY(-90px);
        }

        #header.show {
            transform: translateY(0);
        }

        #header img {
            height: 90px;
            max-height: 90px;
            height: auto;
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1450px;
            flex-wrap: wrap;
            padding: 0 10px;
        }

        .header-text {
            flex: 1;
            text-align: left;
            padding: 10px;
        }

        .header-nav {
            display: flex;
            text-align: right;
            gap: 15px;
            padding-right: 30px;
            color: black;
        }

        .header-nav a {
            color: black;
            text-decoration: none;
            padding: 5px 10px;
            border-radius: 5px;
        }

        .header-nav a:hover {
            text-decoration: underline;
        }
        
         .reviews-section {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    text-align: center;
    font-size: 25px;
}

.reviews-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: #006980;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 1.2rem;
    font-family: Arial, sans-serif;
    color: white;
    height: 300px; /* Adjust height to fit stars and review text */
}

.stars {
    width: 100px; /* Set the width of the star image */
    margin-bottom: 10px; /* Space between stars and review text */
}

.review p {
    font-style: italic;
    margin: 0;
}


.reviews-section::before, .reviews-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
}

.reviews-section::before {
    left: 0;
    
}

.reviews-section::after {
    right: 0;
    
}

        /* Section styling */
        .section {
            padding: 40px;
            max-width: 600px;
            margin: left;
            background: white;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            margin-top: 80px;
            max-height: 400px;
        }

        .section2{
            background-image: url('cleanpool.jpeg');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover; /* Ensure the background image covers the section */
            padding: 40px;
            max-width: 30%; /* Ensure it fits within the viewport */
            margin: left; /* Center align */
            margin-left: 20px;
            border-radius: 30px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            margin-top: 60px;
            min-height: 500px; /* Ensure a minimum height is set */
            flex: 1;
        }

        .section3{
            background-image: url('skimming.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Ensure the background image covers the section */
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin: 60px auto 20px; /* Center the section with auto margins */
    min-height: 500px; /* Ensure a minimum height is set */
    width: 30%; /* Use a percentage width to keep it responsive */
        }
        .section-separator {
    border-top: 1px solid #ccc; /* Light gray color for the line */
    margin: 20px 0; /* Spacing above and below the line */
    margin-top: 80px;
    width: 100%; /* Full width of the container */
}

        .about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* Align items to the start of the flex container */
    margin: 20px; /* Add margin for spacing */
    padding: 20px; /* Add padding inside the section */
}

.about-section2 {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start; /* Align items to the start of the flex container */
    margin: 20px; /* Add margin for spacing */
    padding: 20px; /* Add padding inside the section */
    
    align-items: center;
}
.about-text {
    flex: 2; /* Make this section take up more space compared to the image */
    max-width: 600px;
    margin: 20px;
    margin-top: 170px;
    margin-left: 50px;
    font-size: 1.2em;
    justify-content: center;
}

.about-text h2 {
    font-size: 2em;
    margin-bottom: 10px;
    text-align: center;
    
}

.about-text p {
    font-size: 1em;
    line-height: 1.6;
    text-align: center;
}


.about-text2 {
    flex: 2; /* Make this section take up more space compared to the image */
    max-width: 600px;
    margin: 20px;
    margin-top: 60px;
    margin-left: 50px;
    
    width:200%; 
}

.about-text2 h2 {
    color: #000;
font-feature-settings: 'liga' off, 'clig' off;
font-family: Newsreader;
font-size: 4em;
font-style: normal;
font-weight: 400;
line-height: 120%; /* 76.8px */
letter-spacing: -1.28px;
text-align: center;


    
}

.about-text2 p {
    font-size: 1em;
    line-height: 1.6;
    text-align: left;
    padding-top: 0em;
}
        .service-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
            margin: 0 auto;
        }

        /* Footer styling */
        #footer {
            background-color: #00bcd477;
            color: white;
            text-align: center;
            padding: 10px 0;
            position: fixed;
            width: 100%;
            bottom: 0;
        }

        .hero-text{
            justify-content: center;
            align-items: center;
            color: blue;
        }

        /* Image background styling */
        .image-background {
            display: flex;
            background-image: url('darkpool.jpeg');
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 680px;
            text-align: left;
            max-width: 100%;
            margin-top: 100px;
            position: relative;
            
            
        }

        .image-background2 {
            
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 680px;
            text-align: left;
            max-width: 100%;
            margin-top: 100px;
            position: relative;
        }

        .image-background h1 {
            color: white;
            font-size: 4em;
            margin-top: 0;
            margin-bottom: 0;
            width: 80%;
            justify-content: center;
            align-items: center;
            
            
        }

        .image-background h5 {
            color: white;
            font-size: 15px;
            margin-top: 20;
            margin-bottom: 0;
        }

        .image-background div {
            
            top: 0;
            left: 0;
            right: 0;
            padding: 40px;
        }

       /* Button */
       .cta-button {
            background-color: rgba(237, 234, 230);
            color: black;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
            margin-top: 60px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .cta-button:hover {
            background-color: #006980;
            color: white;
            transform: scale(1.05);
        }

        /* Pop-up modal styling */
        #popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }
        

        .popup-content {
    background-color: rgba(237, 234, 230);/* White background for the popup */
    margin: 15% auto; /* Center the popup */
    padding: 20px;
    border-radius: 5px;
    width: 80%; /* Adjust width as needed */
    max-width: 600px; /* Maximum width */
    height: 900px; /* Adjust height as needed */
    overflow-y: auto; /* Allow vertical scrolling if content overflows */
}
#wave-animation {
    width: 100%;
    height: 800px; /* Increased height */
    border: none;
}

        #popup-fade {
            opacity: 1;
            transition: opacity 2s ease-in-out;
        }

        #popup-fade.fade-out {
            opacity: 0;
        }

        #quote-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: rgba(237, 234, 230);
            padding: 20px;
            border-radius: 10px;
            width: 80%;
            max-width: 700px;
            text-align: center;
            position: relative;
        }

        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: transparent;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }

        .close-btn:hover {
            color: red;
        }

        
