.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 4rem;
}

.hero-content {
    position: relative;
    color: #333;
    text-align: center;
    max-width: 800px;
}

.hero-icon {
    width: 40px;
    height: 40px;
}

.hero {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    margin-bottom: 20px;
    line-height: 1;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -4rem;
}

.responsive-img {
    max-width: 100%;
    /* Makes sure the image doesn't exceed the screen width */
    border-radius: 10px;
    /* Optional: Adds rounded corners */
}

/* Media Query for Small Screens */
@media (max-width: 768px) {
    .responsive-img {
        max-width: 100%;
        /* Adjusts the image size for smaller screens */
    }
}


@font-face {
    font-family: 'Champie';
    src: url('/temp/fonts/ChampieTrial-Regular.ttf') format('truetype'),
        url('/temp/fonts/ChampieTrial-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h4 {
    font-size: 18px;
    color: #27272766;
    font-family: 'Manrope', sans-serif;
    font-weight: bolder;
    padding: 0;
    margin: 0;

}

h1 {
    font-size: 48px;
    background: linear-gradient(90deg, #56B5E5, #356BC8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Champie', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    padding: 0;
    margin: 0;

}

.highlight {
    background: linear-gradient(90deg, #56B5E5, #356BC8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Champie', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    padding: 0;
    margin: 0;

}

/* Media Query for Mobile Screens */
@media (max-width: 768px) {


    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        margin-top: -3rem;
    }

    h1,
    .highlight {
        font-size: 7vw;
    }

    h4 {
        font-size: 1rem;
    }
}

.water-systems {
    font-family: 'Manrope', sans-serif;
    text-align: center;
    margin: 0;
    padding: 10px 20px;
    margin-bottom: 7rem;
}

.water-systems h2 {
    color: #4A9ADA;
    font-size: 2.6rem;
    font-weight: 700;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
    justify-content: center;
    max-width: 1000px;
    margin: 20px auto;
}

/* Ensure maximum 3 cards per row */
@media (min-width: 769px) {
    .grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Two cards per row on tablets */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* One card per row on smaller screens */


.card {
    background: white;
    border-radius: 5px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 350px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    padding-bottom: 2rem;
    /* Ensure space for the link */
}

.card a {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
    z-index: 3;
    /* Ensure it stays above the image */
    position: absolute;
    /* Fix it within the card */
    bottom: 20px;
    /* Position it at the bottom */
    left: 50%;
    transform: translateX(-50%);
    /* Center the link */
    background: rgba(255, 255, 255, 0.8);
    /* Optional: Add a slight background for visibility */
    padding: 8px 16px;
    border-radius: 20px;
}




.card h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 10px 0;
    gap: 5px;
    text-align: left;
    transition: color 0.3s ease-in-out;
    z-index: 2;
    position: relative;
    text-align: left;
    color: #272727;
}

.card .number {
    font-size: 1.5rem;
    font-weight: bold;
    color: gray;
    transition: color 0.3s ease-in-out;
    text-align: left;
    margin-bottom: auto;
}

.card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, border-radius 0.3s ease-in-out;
    transform-origin: center center; /* Ensures scaling from the center */
}

.card:hover img {
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
    transform: scale(1.5);
    margin-top: -1.4rem;
    z-index: 1;
    /* Keep it below the link */
}



.card:hover h3,
.card:hover .number,
.card:hover a {
    color: white;
}


/* Purpose section */
.container {
    font-family: 'Manrope', sans-serif;
    display: flex;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
    height: auto;
    margin: 0 auto;
    /* Centers the container */
    padding: 0;
}


.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    width: 100% !important;
    box-sizing: border-box;
    margin: 0 auto;
    /* Ensures horizontal centering */
}


/* Title Style */
.title {
    color: #4A9ADA;
    font-size: 2.5rem;
    font-weight: 800;
    flex: 1;
    text-align: left;
    min-width: 50%;
    margin-bottom: auto;
}

/* Content Style */
.content {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #272727;
    line-height: 1.5;
    min-width: 50%;
}

/* Style for the image */
.in-container {
    width: 100%;
    /* Ensures image takes up full width */
    max-width: 1200px;
    /* Prevents it from getting too large */
    height: auto;
    border-radius: 8px;
    /* Optional: adds rounded corners */
    object-fit: cover;
    /* Ensures image fills its box without distortion */
    display: block;
    margin: 20px auto;
    /* Centers the image */
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
        width: 90%;
    }

    .title {
        text-align: left;
        margin-bottom: 10px;
        min-width: 100%;
        font-size: 1.8rem;
        /* Further reduce title size */
    }

    .content {
        min-width: 100%;
        font-size: 18px;
        
        /* Further reduce content size */
        text-align: left;
    }

    .in-container {
        max-width: 80%;
        /* Makes image full width on smaller screens */
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        flex-direction: column;
        text-align: center;
        width: 90%;
        padding: 1rem;
    }
    .title {
        font-size: 1.5rem;
        /* Smaller font for small screens */
    }

    .content {
        font-size: 16px;
        /* Smaller font for small screens */
    }
}



/* Annual Report Section */
.annual-report {
    text-align: center;
    padding: 150px 20px;
    font-family: 'Manrope', sans-serif;
    /* Font family from Figma */
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: auto;
    margin-bottom: -1.6rem;
}

.header h2 {
    color: #7452DE;
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-left: 9rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .header {
        width: 130%;
        margin-left: -3rem;

    }

    .view-all {
        margin-right: 3rem;
    }

    .header h2 {
        font-size: 1.5rem;
    }
}

.view-all {
    text-decoration: none;
    font-size: 15px;
    color: #272727;
    font-weight: 600;
    text-align: right;
    margin-left: 3rem;

}

.subtext {
    font-size: 15px;
    color: #272727;
    margin: 10px 0 30px;
    font-weight: 600;
}

/* Report Container */
.report-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Wrapper to Stack Card and Content Vertically */
.report-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 340px;
    /* Matches card width */
}

/* Report Card */
.report-card {
    background: white;
    border-radius: 8px;
    width: 108%;
    overflow: hidden;
    text-align: center;
    padding: 13px;
    display: flex;
    flex-direction: column;
    /* Ensures elements stack when needed */
    align-items: center;
}

/* Top Section: Text + Image */
.report-top {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    /* Aligns text and image */
}

/* Report Content (Text) */
.report-content {
    text-align: left;
    margin-bottom: -11rem;
}

.report-content h3 {
    font-size: 18.5px;
    color: #272727;
    font-weight: 600;
    text-align: left;
}

/* Image */
.report-card img {
    width: 65%;
    /* Adjust width as needed */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Year */
.report-y {
    width: 100%;
    /* Ensures it spans the full width */
    text-align: left;
    /* Aligns text to the left */
    margin-top: 6px;
}

.report-y h2 {
    font-size: 4.8rem;
    margin: 0;
    margin-bottom: -1rem;
    font-weight: 500;
    color: #272727;
}

.title-2 {
    color: #4A9ADA;
    font-size: 2.7rem;
    font-weight: 800;
    text-align: left;
    min-width: 100%;
    margin-left: 7rem;
    /* Moves it to the right */
    padding: 3rem;
    /* Keeps spacing consistent */
    margin-bottom: auto;
}


/* Tablet (Max Width: 768px) */
@media (max-width: 1728px) {
    .title-2 {
        font-size: 2.2rem;
        /* Reduce size on tablets */
        margin-left: 10rem;
        /* Adjust right shift */
        padding-left: 1rem;
        /* Adjust spacing */
    }
}

/* Tablet (Max Width: 768px) */
@media (max-width: 768px) {
    .title-2 {
        font-size: 2.2rem;
        /* Reduce size on tablets */
        margin-left: 3rem;
        /* Adjust right shift */
        padding-left: 1rem;
        /* Adjust spacing */
    }
}

/* Mobile (Max Width: 480px) */
@media (max-width: 480px) {
    .title-2 {
        font-size: 2rem;
        /* Reduce size for mobile */
        text-align: left;
        /* Keep text aligned to left */
        margin-left: 0rem;
        /* Prevent overflow issues */
        padding-left: 0rem;
        /* Reduce padding for better fit */
    }
}


/*Benefits section*/
.benefits-section {
    font-family: 'Manrope', sans-serif;
    margin: 0;
    padding: 0;
}

.benefits-section {
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.title-3 {
    color: #4A9ADA;
    font-size: 2.5rem;
    font-weight: 800 margin-bottom: 20px;
}

.benefits-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.benefits-container::-webkit-scrollbar {
    height: 6px;
}

.benefits-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.benefits-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.benefits-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.card-2 {
    flex: 0 0 auto;
    width: 260px;
    background: #FFFFFF;
    padding: 8px;
    border-radius: 10px;
    text-align: left;
}

.card-2 img {
    width: 50px;
    height: 50px;
    margin-bottom: 40px;
}



