body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #f9f9f9;
    color: #333; /* General text color */
}

.navbar {
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: bold;
    color: #0056b3 !important;
}

.navbar-nav .nav-link {
    color: #555 !important;
    margin: 0 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus {
    color: #0056b3 !important;
    background-color: #f0f8ff;
    border-radius: 5px;
}

.navbar-nav .nav-item.active .nav-link {
    color: #0056b3 !important;
    font-weight: bold;
}

.logo-container {
    text-align: center;
    margin: -20px 0;
}
.logo-container img {
    max-width: 100%;
    height: 90px; /* Adjust the height as needed */
}

.jumbotron {
    background: url('../images/water-background.jpg') no-repeat center center;
    background-size: cover;
    color: #0056b3;
    padding: 100px 25px;
    margin-bottom: 50px;
    border-radius: 8px;
}

.jumbotron h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #003366; /* Darker blue tone for the title */
}

.jumbotron p {
    font-size: 1.2rem;
}

.jumbotron2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #003366; /* Darker blue tone for the title */
}

.intro-paragraph {
    font-size: 1.1rem;
    color: #003366; /* Light blue color to match the site's graphic chart */
    max-width: 800px;
    margin: 20px auto 0;
}

.section {
    padding: 60px 15px;
    background-color: white;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0056b3; /* Blue tone for section titles */
    text-align: center; /* Center align section titles */
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify; /* Justify text for better alignment */
}

.feature {
    margin-bottom: 50px;
}

.feature-image {
    text-align: center;
}

.feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #0056b3;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
}

.section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.section img:hover {
    transform: scale(1.05);
}

.section .carousel-item blockquote {
    font-size: 1.2rem;
    color: #333;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin-bottom: 20px;
    border-radius: 10px;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #003366;
    transform: scale(1.05);
}
.feature-image img {
    border: 2px solid #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 1px solid #e9ecef;
}

footer p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

/* Particles Background */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Water Drop Animation */
@keyframes drop {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(600px);
        opacity: 0;
    }
}

.water-drop {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(0, 150, 255, 0.5);
    border-radius: 50%;
    animation: drop 3s infinite;
    opacity: 0;
}

.water-drop:nth-child(2) {
    left: 30%;
    animation-delay: 1s;
}

.water-drop:nth-child(3) {
    left: 70%;
    animation-delay: 2s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .jumbotron h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-text h3 {
        font-size: 1.5rem;
    }

    .btn-primary {
        width: 100%;
        margin-top: 20px;
    }
}


.circle {
    width: 150px;
    height: 150px;
    background: #ccc;
    border: 5px solid #fff;
    box-shadow: 0 0 0 5px #4973ff;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px; /* Center and add margin below */
}
.wave {
    position: relative;
    width: 100%;
    height: 100%;
    background: #4973ff;
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, .5);
}
.wave:before, .wave:after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: 0;
    left: 50%;
    transform: translate(-50%, -75%);
    background: #000;
}
.wave:before {
    border-radius: 45%;
    background: rgba(255, 255, 255, 1);
    animation: animate 5s linear infinite;
}
.wave:after {
    border-radius: 40%;
    background: rgba(255, 255, 255, .5);
    animation: animate 10s linear infinite;
}
@keyframes animate {
    0% {
        transform: translate(-50%, -75%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -75%) rotate(360deg);
    }
}


/* Footer */
.custom-footer {
    background-color: #f8f9fa;
    text-align: center;
    padding: 20px;
    color: #000;
}

/* RGPD Modal Overlay */
#rgpd-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9998; /* Just below the modal */
    display: none; /* Hidden by default */
}

#rgpd-overlay.show {
    display: block; /* Show overlay when modal is displayed */
}

/* RGPD Modal */
#rgpd-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the modal */
    z-index: 9999; /* On top of the overlay */
    background-color: #ffffff; /* White background */
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 90%; /* Responsive width */
    max-width: 500px; /* Max width for larger screens */
    display: none; /* Hidden by default */
    overflow: hidden; /* Ensure child elements don't overflow */
    font-family: 'Roboto', sans-serif; /* Match your website's font */
}

/* Show the modal when needed */
#rgpd-popup.show {
    display: block;
}

/* Modal Header */
#rgpd-popup .modal-header {
    background-color: #f8f9fa;
    padding: 15px;
    border-bottom: 1px solid #dee2e6;
}

#rgpd-popup .modal-header h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #000000; /* Black text */
    text-align: center;
}

/* Modal Body */
#rgpd-popup .modal-body {
    padding: 15px;
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

#rgpd-popup .modal-body a {
    color: #007bff; /* Match your primary color */
    text-decoration: none;
}

#rgpd-popup .modal-body a:hover {
    text-decoration: underline;
}

/* Modal Footer */
#rgpd-popup .modal-footer {
    display: flex;
    justify-content: center;
    padding: 15px;
    border-top: 1px solid #dee2e6;
    background-color: #f8f9fa;
}

/* Buttons */
#rgpd-popup .modal-footer button {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    min-width: 120px;
}

/* Accept Button */
#rgpd-popup #accept-cookies {
    background-color: #007bff; /* Primary button color */
    color: #ffffff;
}

#rgpd-popup #accept-cookies:hover {
    background-color: #0056b3;
}

/* Decline Button */
#rgpd-popup #decline-cookies {
    background-color: #6c757d; /* Secondary button color */
    color: #ffffff;
}

#rgpd-popup #decline-cookies:hover {
    background-color: #5a6268;
}

/* Responsive Design */
@media (max-width: 576px) {
    #rgpd-popup {
        width: 95%;
    }

    #rgpd-popup .modal-body {
        font-size: 14px;
    }

    #rgpd-popup .modal-footer button {
        font-size: 14px;
        padding: 8px 16px;
        min-width: 100px;
    }
}
