:root {
    --bg-gradient: linear-gradient(180deg, #ff9a8b 0%, #ffc2a1 100%);
    --primary-text: #000;
    --accent-white: #fff;
    --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.beauty-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background: var(--bg-gradient);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Background Large Text */
.bg-text-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22vw;
    font-weight: 900;
    color: var(--primary-text);
    z-index: 1;
    letter-spacing: -1vw;
    pointer-events: none;
    opacity: 0.9;
}

.bg-circle {
    position: absolute;
    width: 60vh;
    height: 60vh;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    z-index: 0;
}

.bg-number-outline {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    font-size: 30vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.3);
    z-index: 0;
}

/* Container & Layout */
.containers {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
}

.content-side {
    flex: 1;
    max-width: 250px;
    animation: fadeIn 1.2s ease forwards;
    opacity: 0;
}

.content-side.left { animation-delay: 0.5s; }
.content-side.right { animation-delay: 0.7s; text-align: left; }

.description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-text);
    font-weight: 500;
}

/* Product Image & Animation */
.product-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 11;
    animation: float 4s ease-in-out infinite;
}

.product-img {
    height: 70vh;
    width: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
    transition: var(--transition);
}

.product-img:hover {
    transform: scale(1.05);
}

/* Slider UI */
.slider-control {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 900;
    font-size: 24px;
}

.arrow {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 30px;
    transition: 0.3s;
}

.arrow:hover { transform: scale(1.2); }

/* CTA Button */
.cta-container {
    position: absolute;
    bottom: 40px;
    z-index: 20;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 14px;
}

.btn-buy {
    padding: 14px 26px;
    border: 1.5px solid rgba(0, 0, 0, 0.65);
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(10px);
    font-weight: 800;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    color: #0b0b0b;
}

.btn-buy:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

.btn-buy:active {
    transform: translateY(0);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.btn-buy:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.35);
    outline-offset: 3px;
}

.btn-buy.btn-demo {
    background: rgba(0, 0, 0, 0.86);
    border-color: rgba(0, 0, 0, 0.86);
    color: #ffffff;
}

.btn-buy.btn-demo:hover {
    background: rgba(0, 0, 0, 1);
}

.btn-buy.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #12B981);
    border-color: rgba(18, 185, 129, 0.9);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(18, 185, 129, 0.28);
    position: relative;
}

.btn-buy.btn-whatsapp::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 999px;
    background: rgba(37, 211, 102, 0.25);
    filter: blur(10px);
    opacity: 0.9;
    z-index: -1;
    animation: waGlow 1.8s ease-in-out infinite;
}

@keyframes waGlow {
    0%, 100% { opacity: 0.65; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
}

.btn-buy.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(18, 185, 129, 0.35);
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .bg-text-large { font-size: 30vw; }
    .containers { flex-direction: column; text-align: center; }
    .product-img { height: 40vh; margin: 20px 0; }
    .content-side { max-width: 100%; order: 2; }
    .content-side.right { display: none; }
    .cta-container { left: 0; right: 0; bottom: 22px; }
    .btn-buy { width: min(92vw, 420px); }
}


.ticker-crossing-section {
    position: relative;
    background-color: #000;
    height: 500px; /* Adjust height as needed */
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.ribbon-wrapper {
    position: absolute;
    width: 150%; /* Wider than screen to cover corners when rotated */
    left: -25%;
    height: 70px;
    background: #fff;
    display: flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 1;
}

/* Rotation for the X-Cross effect */
.top-ribbon {
    top: 35%;
    transform: rotate(10deg);
    z-index: 2;
}

.bottom-ribbon {
    top: 35%;
    transform: rotate(-10deg);
    z-index: 1;
}

/* Marquee Animation logic */
.marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation: scroll-left 25s linear infinite;
}

.marquee-content.reverse {
    animation: scroll-right 25s linear infinite;
}

.marquee-content span {
    font-size: 2.2rem;
    font-weight: 800;
    color: #b5b5b5; /* Muted gray text like the image */
    padding-right: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation Keyframes */
@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

/* Bottom Text Styling */
.footer-note {
    color: #fff;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    max-width: 500px;
    z-index: 10;
    opacity: 0.8;
}

/* Small screen adjustments */
@media (max-width: 768px) {
    .ribbon-wrapper { height: 50px; }
    .marquee-content span { font-size: 1.2rem; }
    .top-ribbon, .bottom-ribbon { top: 40%; transform: rotate(15deg); }
    .bottom-ribbon { transform: rotate(-15deg); }
}


.at-section-wrap {
    background-color: #0d0d0d;
    position: relative;
    padding: 100px 0;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Inter', sans-serif;
}

/* Background Outline Typography */
.at-large-outline {
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 20vw;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    transition: transform 0.5s ease-out;
}

.at-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 50px;
}

/* Text Styling */
.at-text-content {
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
}

.at-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.at-description {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 450px;
    color: #cccccc;
}

/* Visual Arch & Image Pop-out */
.at-visual-frame {
    position: relative;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.at-arch-bg {
    width: 400px;
    height: 500px;
    background: radial-gradient(circle at center, #2e7d7d 0%, #0d0d0d 100%);
    border-radius: 200px 200px 0 0; /* Creates the Arch */
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.at-person-img {
    height: 110%; /* Makes the image taller than the arch for pop-out effect */
    width: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.at-person-img:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Divider Stars */
.at-divider-stars {
    text-align: center;
    margin-top: 80px;
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 15px;
    z-index: 2;
}

.at-divider-stars span {
    display: inline-block;
    animation: starPulse 3s infinite ease-in-out;
}

/* Animations */
@keyframes starPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: all 1s ease-out;
}

/* Responsive */
@media (max-width: 992px) {
    .at-container { grid-template-columns: 1fr; text-align: center; }
    .at-text-content { display: flex; flex-direction: column; align-items: center; }
    .at-arch-bg { width: 300px; height: 400px; }
    .at-large-outline { top: 5%; font-size: 30vw; }
}


.tm-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background: linear-gradient(180deg, #ff7e72 0%, #ffc4b5 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

/* Big Background Text */
.tm-bg-outline {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
}

.tm-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 90%;
    text-align: center;
}

.tm-header {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    display: inline-block;
    position: relative;
}

.tm-header::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15%;
    width: 70%;
    height: 4px;
    background: #000;
}

/* Avatar Styling */
.tm-avatar-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    padding: 5px;
    background: #000; /* Thin border effect */
    transition: transform 0.4s ease;
}

.tm-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.tm-avatar-wrapper:hover {
    transform: scale(1.1);
}

/* Text Elements */
.tm-author-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.tm-quote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Dots Navigation */
.tm-dots {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.tm-dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.tm-dot.active {
    background: #000;
    transform: scale(1.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .tm-header { font-size: 2.5rem; }
    .tm-quote { font-size: 1rem; }
    .tm-bg-outline { font-size: 25vw; }
}


:root {
    --purple-bg: #5a18c9; /* Deep Purple */
    --lime-green: #ccff00; /* Neon Lime */
    --shadow-deep: #a5cc00; /* Darker Lime for depth */
}

.rr-section {
    background-color: var(--purple-bg);
    width: 100%;
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 60px 20px;
    font-family: 'Fredoka One', cursive; /* Rounded chunky font */
}

.rr-container {
    text-align: center;
    perspective: 1000px;
}

.rr-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rr-line {
    margin: 0;
    line-height: 0.9;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
}

.rr-word {
    color: var(--lime-green);
    font-size: clamp(5rem, 15vw, 12rem); /* Responsive sizing */
    letter-spacing: -2px;
    display: inline-block;
    
    /* THE BALLOON EFFECT */
    text-shadow: 
        0 1px 0 var(--shadow-deep),
        0 2px 0 var(--shadow-deep),
        0 3px 0 var(--shadow-deep),
        0 4px 0 var(--shadow-deep),
        0 5px 0 var(--shadow-deep),
        0 6px 1px rgba(0,0,0,.1),
        0 0 5px rgba(0,0,0,.1),
        0 1px 3px rgba(0,0,0,.3),
        0 3px 5px rgba(0,0,0,.2),
        0 5px 10px rgba(0,0,0,.25),
        0 10px 10px rgba(0,0,0,.2),
        0 20px 20px rgba(0,0,0,.15),
        /* Highlight for glossy look */
        inset 2px 2px 5px rgba(255,255,255,0.5);

    /* Animation trigger */
    animation: floatBalloon 4s ease-in-out infinite;
}

/* Make the 'TO' smaller as per image */
.small-to {
    font-size: clamp(2rem, 6vw, 5rem);
    vertical-align: middle;
    animation-delay: 0.5s;
}

/* Animation for the floating/breathing balloon effect */
@keyframes floatBalloon {
    0%, 100% {
        transform: translateY(0) rotate(-1deg) scale(1);
    }
    50% {
        transform: translateY(-15px) rotate(1deg) scale(1.02);
    }
}

/* Staggered animation for different words */
.bottom .rr-word {
    animation-delay: 0.2s;
}

/* Responsive */
@media (max-width: 768px) {
    .rr-line { gap: 10px; }
    .rr-section { min-height: 400px; }
}


