/* Laundry Theme Overlay */
:root {
    --primary-blue: #0288d1;
    --fresh-teal: #00d2ff;
    --deep-ocean: #01579b;
    --bubble-white: rgba(255, 255, 255, 0.8);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-light: #f0faff;
    --text-dark: #002f6c;
}

body {
    background: linear-gradient(135deg, #0288d1 0%, #00d2ff 100%);
    color: var(--text-light);
    font-family: 'Josefin Sans', sans-serif;
}

/* Hero Section Enhancement */
.hero {
    position: relative;
    overflow: hidden;
    background: transparent !important;
    /* Override existing bg */
    z-index: 1;
}

/* Bubbles Animation */
.bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: var(--bubble-white);
    border-radius: 50%;
    opacity: 0.5;
    animation: rise 10s infinite ease-in;
}

.bubble:nth-child(1) {
    width: 40px;
    height: 40px;
    left: 10%;
    animation-duration: 8s;
}

.bubble:nth-child(2) {
    width: 20px;
    height: 20px;
    left: 20%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble:nth-child(3) {
    width: 50px;
    height: 50px;
    left: 35%;
    animation-duration: 7s;
    animation-delay: 2s;
}

.bubble:nth-child(4) {
    width: 80px;
    height: 80px;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 0s;
}

.bubble:nth-child(5) {
    width: 35px;
    height: 35px;
    left: 55%;
    animation-duration: 6s;
    animation-delay: 1s;
}

.bubble:nth-child(6) {
    width: 45px;
    height: 45px;
    left: 65%;
    animation-duration: 8s;
    animation-delay: 3s;
}

.bubble:nth-child(7) {
    width: 90px;
    height: 90px;
    left: 70%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.bubble:nth-child(8) {
    width: 25px;
    height: 25px;
    left: 80%;
    animation-duration: 6s;
    animation-delay: 2s;
}

.bubble:nth-child(9) {
    width: 15px;
    height: 15px;
    left: 70%;
    animation-duration: 5s;
    animation-delay: 1s;
}

.bubble:nth-child(10) {
    width: 90px;
    height: 90px;
    left: 25%;
    animation-duration: 10s;
    animation-delay: 4s;
}

@keyframes rise {
    0% {
        bottom: -100px;
        transform: translateX(0);
    }

    50% {
        transform: translateX(100px);
    }

    100% {
        bottom: 1080px;
        transform: translateX(-200px);
    }
}

/* Glassmorphism Cards */
.wallet-area__single,
.easy-area__content-single__inner,
.testimonial-content,
.start__single__item,
.overview-area__single {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wallet-area__single:hover,
.easy-area__content-single__inner:hover,
.start__single__item:hover,
.overview-area__single:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
}

.wallet-area__single h6,
.wallet-area__single p,
.easy-area__content-single__inner h6,
.easy-area__content-single__inner p,
.start__single__item h6,
.start__single__item p,
.overview-area__single h2,
.overview-area__single p {
    color: white !important;
}

/* Section Dividers (Waves) */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(137% + 1.3px);
    height: 100px;
}

.wave-divider .shape-fill {
    fill: #00d2ff;
    opacity: 0.3;
}

/* Button Upgrades */
.button,
.nav-link.download {
    background: linear-gradient(45deg, var(--deep-ocean), var(--primary-blue));
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button::before,
.nav-link.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--fresh-teal), var(--primary-blue));
    z-index: -1;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.button:hover::before,
.nav-link.download:hover::before {
    opacity: 1;
}

/* Feature Icons */
.wallet-area__single-inner__box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.wallet-area__single-inner__box i {
    color: white;
}

/* Text adjustments */
h1,
h2,
h3,
h4,
h5,
h6 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.easy-area__content-title p,
.wallet-area__header p {
    color: #e0f7fa !important;
}