/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    max-width: 100%;
    overflow-x: hidden;
}


/* Hero Section */
.hero-section {
    padding: 0;
    z-index: 10;
    /* ✅ Add this */
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(1.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 50px;
    background: rgba(0, 0, 0, 0.3);
}

/* Social icons in a vertical column */
.hero-icons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    margin-right: 50px;
    height: 100%;
}

.hero-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-icons a {
    color: #fff;
    background-color: #000;
    font-size: 24px;
    transition: color 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    /* ✅ Important for consistent alignment */
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 50%;
}




/* Hero content styling */
.hero-content {
    color: #fff;
    max-width: 600px;
    margin-left: -30px;
}

.hero-content h1 {
    font-family: 'Georgia', serif;
    font-size: 55px;
    color: #1d1345;
    margin-bottom: 20px;
    margin-top: -240px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero-button {
    background-color: #4facfe;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

/* New text content below the image */
.hero-text-below-lips {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-family: 'Georgia', serif;
}

.hero-text-below-lips h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-text-below-lips p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #000;
}

.scroll-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 999;
}

.scroll-icons.show {
    opacity: 1;
    visibility: visible;
}

.scroll-icons .icon {
    background-color: #25d366;
    /* WhatsApp green */
    color: white;
    font-size: 30px;
    padding: 14px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.scroll-icons .support-icon {
    background-color: #007bff;
    /* Blue for support */
}

.scroll-icons .icon:hover {
    transform: scale(1.1);
}



@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 45px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-text-below-lips {
        top: 55%;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* For tablets */
@media (max-width: 882px) {
    .hero-content h1 {
        font-size: 35px;
        margin-top: -150px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-text-below-lips {
        top: 60%;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px;
    }

    .hero-text-below-lips h2 {
        font-size: 28px;
    }

    .hero-text-below-lips p {
        font-size: 16px;
    }
}

/* For smaller tablets and large mobile devices */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 30px;
        margin-top: -100px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-text-below-lips {
        top: 65%;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px;
    }

    .hero-text-below-lips h2 {
        font-size: 24px;
    }

    .hero-text-below-lips p {
        font-size: 14px;
    }

    .hero-icons {
        margin-right: 60px;
        margin-top: -90px;
    }
}

/* For mobile devices */
@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 24px;
        margin-top: -120px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .hero-text-below-lips {
        top: 70%;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px;
    }

    .hero-text-below-lips h2 {
        font-size: 20px;
    }

    .hero-text-below-lips p {
        font-size: 12px;
    }

    .hero-icons {
        margin-top: -140px;
        margin-right: 50px;
    }

    .hero-icons ul {
        gap: 10px;
    }

    .hero-icons a {
        font-size: 18px;
    }
}