/* Scroll to Top Button with SVG Wave */
.scrollToTop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 50;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}.dark .scrollToTop {
    background-color: #1f2937; /* dark:bg-gray-800 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}.scrollToTop.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}.scrollToTop .arrowUp {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: #141414; /* A nice blue */
    z-index: 10;
    transition: color 0.3s;
}.dark .scrollToTop .arrowUp {
    color: #fff; /* Lighter blue for dark mode */
}.scrollToTop:hover .arrowUp {
    color: #fff;
}.scrollToTop .water {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #3b82f6;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}.scrollToTop .water_wave {
    width: 200%;
    position: absolute;
    bottom: 100%;
}.scrollToTop .water_wave_back {
    right: 0;
    fill: #3b82f6;
    animation: wave-back 2.8s infinite linear;
}.scrollToTop .water_wave_front {
    left: 0;
    fill: #3b82f6;
    margin-bottom: -1px;
    animation: wave-front 1.4s infinite linear;
}.dark .scrollToTop .water,
.dark .scrollToTop .water_wave_back,
.dark .scrollToTop .water_wave_front {
    background: #60a5fa;
    fill: #60a5fa;
}@keyframes wave-front {
    100% {
        transform: translateX(-50%);
    }
}@keyframes wave-back {
    100% {
        transform: translateX(50%);
    }
}@media (max-width: 768px) {
    .hero-container {
        padding-top: 8rem !important;
    }
}