body{font-family:'Inter',sans-serif}.lang-ar{font-family:'Cairo',sans-serif}.lang-content{display:none}.lang-content.active{display:block}header{transition:top 0.3s ease-in-out}.faq-answer{transition:max-height 0.5s ease-in-out,padding 0.5s ease-in-out,opacity 0.3s ease-in-out;max-height:0;overflow:hidden;padding-top:0;padding-bottom:0;opacity:0}.faq-question.active+.faq-answer{max-height:500px;padding-top:1rem;padding-bottom:1rem;opacity:1}.faq-question .arrow{transition:transform 0.3s ease-out}.faq-question.active .arrow{transform:rotate(180deg)}.cta-button-gradient{background-image:linear-gradient(to right,#4f46e5,#7c3aed)}.modal-overlay{transition:opacity 0.3s ease-in-out,visibility 0.3s ease-in-out}.modal-hidden{opacity:0;visibility:hidden;pointer-events:none}.modal-content{transition:transform 0.3s ease-in-out,opacity 0.3s ease-in-out}.modal-overlay.modal-hidden .modal-content{transform:scale(.95);opacity:0}.before-after-card{background-color:#fff;border-radius:1.5rem;box-shadow:0 10px 15px -3px rgb(0 0 0 / .1),0 4px 6px -2px rgb(0 0 0 / .05);overflow:hidden}.before-after-image-container{position:relative;height:250px;overflow:hidden}.before-after-image{width:100%;height:100%;object-fit:cover}.before-after-label{position:absolute;top:1rem;left:1rem;padding:.5rem 1rem;border-radius:9999px;font-weight:700;font-size:.875rem}.before-label{background-color:#B91C1C}.after-label{background-color:#15803D;color:#fff}.ltr{direction:ltr}.rtl{direction:rtl}#confirm-delivery-note{overflow-wrap:break-word;word-break:break-word}.interactive-hover:hover{transform:translateY(-4px) scale(1.02);box-shadow:0 15px 25px -5px rgb(0 0 0 / .1),0 8px 10px -6px rgb(0 0 0 / .1)}.interactive-hover{transition:transform 0.3s ease,box-shadow 0.3s ease}




.cta-button-gradient {
    background-image: linear-gradient(to right, #4f46e5, #7c3aed, #db2777);
    background-size: 200% auto;
}
.cta-button-gradient:hover {
    background-position: right center;
}

#scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(to bottom, #0c142c, #1f2a4a);
}
.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.asset-image {
    position: absolute !important;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: float 12s ease-in-out infinite;
    will-change: transform;
}
#img-valerian { bottom: 20% !important; right: 10% !important; width: 120px; animation-delay: -2s; }
#img-chamomile { top: 25% !important; right: 8% !important; width: 180px; animation-delay: 0s; }
#img-passion-flower { bottom: 10% !important; left: 25% !important; width: 160px; animation-delay: -5s; }
#img-moon { top: 15% !important; left: 15% !important; width: 100px; box-shadow: 0 0 50px rgba(240, 240, 255, 0.5); animation-delay: -8s; }

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white;
    animation: twinkle 4s ease-in-out infinite;
}

.content-container {
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.cta-button-gradient {
    background-image: linear-gradient(to right, #4f46e5, #7c3aed);
    transition: all 0.3s ease;
}
.cta-button-gradient:hover {
    box-shadow: 0 10px 20px rgba(96, 73, 237, 0.4);
    transform: translateY(-3px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

 /* Custom styles for the new hero section */
 #hero-scene {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    background: linear-gradient(to bottom, #0c142c, #1f2a4a);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-asset {
    position: absolute !important;
    animation: hero-float 15s ease-in-out infinite;
    will-change: transform;
}
#hero-product-img {
    width: 320px; /* Adjust size as needed */
    top: 50% !important;
    left: 60% !important;
    transform: translate(-50%, -50%);
    animation-delay: -2s;
}
.hero-content-container {
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.cta-button-gradient:hover {
    box-shadow: 0 10px 20px rgba(96, 73, 237, 0.4);
    transform: translateY(-3px);
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0px) rotate(-3deg); }
    50% { transform: translateY(-30px) rotate(3deg); }
}