/* Blobs background */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.blob {
    position: absolute;
    background: #0e9294;
    border-radius: 50%;
    filter: blur(100px);
    animation: move 6s infinite;
}

.blobadhere {
    position: absolute;
    background: #00b8e8;
    border-radius: 50%;
    filter: blur(100px);
    animation: move 6s infinite;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 2em;
    overflow: hidden;
    color: #ffffff;
    box-sizing: border-box;
}

/* Animated Background Container */
#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Hero Inner Wrapper */
.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Hero Content (Left Side) */
.hero-content {
    max-width: 400px;
    text-align: left;
    margin-right: 2em;
}

.hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 1.5em;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 2em;
}

.hero-content .btn {
    background-color: #0E9294;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    width: 15rem;
    padding: 1em;
    border-radius: 25px;
    font-size: 1em;
    text-align: center;
    transition: background-color 0.3s ease;
}

.hero-content .btn:hover {
    background-color: hsla(181, 83%, 32%, 0.555);
}

/* Hero Container (Right Side) */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    position: relative;
    max-width: 80%;
    margin-bottom: 1em;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.hero-image .overlay-image {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    object-fit: cover;
    display: none;
    /* Hide initially; show when needed */
}

/* Play Button Container */
.play-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.play-button {
    background: transparent;
    border: none;
    cursor: pointer;
}

.play-icon {
    /* Add your play icon styles here */
}

/* Scroll Indicator Styles */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator svg {
    width: 35px;
    height: 35px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.scroll-indicator:hover svg {
    color: hsla(181, 83%, 32%, 0.555);
}

/* Bounce Animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Responsive Layout: Stack content on smaller screens */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
    }

    .hero-content {
        text-align: center;
        margin-right: 0;
        margin-bottom: 0;
    }
}

@keyframes rotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}