

/* ===== Section ===== */
.lux-marquee{
    width:100%;
    overflow:hidden;
    background:linear-gradient(90deg,#ffffff,#fff7f5,#ffffff);
    border-top:1px solid rgba(183,110,121,0.25);
    border-bottom:1px solid rgba(183,110,121,0.25);
    padding:10px 0;
    position:fixed;
    z-index: 999999;
}

/* soft shine overlay */
.lux-marquee::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.6),transparent);
    animation:shine 6s linear infinite;
}

@keyframes shine{
    0%{left:-100%;}
    100%{left:100%;}
}

/* ===== Track ===== */
.lux-track{

    display:flex;
    width:max-content;
    animation:marquee 22s linear infinite;
}

/* ===== Text ===== */
.lux-text{
    font-family:'Poppins',sans-serif;
    font-weight:600;
    letter-spacing:1px;
    white-space:nowrap;
    padding-right:70px;

    font-size:16px;

    /* rose gold gradient text */
    background:linear-gradient(90deg,#b76e79,#e8b4a7,#b76e79);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    text-shadow:0 0 6px rgba(183,110,121,0.25);
}

/* ===== Animation ===== */
@keyframes marquee{
    0%{transform:translateX(0);}
    100%{transform:translateX(-50%);}
}

/* hover pause */
.lux-marquee:hover .lux-track{
    animation-play-state:paused;
}

/* ===== Responsive ===== */
@media (max-width:768px){
    .lux-text{
        font-size:13px;
        padding-right:40px;
        letter-spacing:0.5px;
    }
    .lux-track{
        animation-duration:28s; /* slower for small screens */
    }
    .main{
        margin-top: 144px !important;
    }
    .navbar.fixed-top{
        margin-top: 0px !important;
    }
}


/* ===== Premium Luxury MVP Section ===== */
.mvp-section{
    background: linear-gradient(135deg,#ffffff,#fff3f1,#ffffff);
    position: relative;
    font-family: 'Poppins', sans-serif;
}

/* subtle glow background */
.mvp-section::before{
    content:"";
    position:absolute;
    top:-50px;
    left:-50px;
    width:200px;
    height:200px;
    background: radial-gradient(circle, rgba(184,80,90,0.15), transparent);
    filter: blur(60px);
}

.mvp-section::after{
    content:"";
    position:absolute;
    bottom:-50px;
    right:-50px;
    width:200px;
    height:200px;
    background: radial-gradient(circle, rgba(232,180,167,0.2), transparent);
    filter: blur(60px);
}

/* ===== Card ===== */
.mvp-card{
    position: relative;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border-radius:20px;
    padding:30px 25px;
    text-align:center;
    height:100%;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    border:1px solid rgba(184,80,90,0.15);
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    transition:all 0.4s ease;
    overflow:hidden;
}

/* gradient border glow */
.mvp-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    padding:1px;
    background:linear-gradient(120deg,#b76e79,#e8b4a7,#b76e79);
    -webkit-mask:linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity:0;
    transition:0.4s;
}

/* Icon */
.mvp-icon{
    width:70px;
    height:70px;
    margin:0 auto 18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;
    background: linear-gradient(135deg,#b76e79,#e8b4a7);
    color:#fff;
    font-size:26px;

    box-shadow:0 10px 25px rgba(184,80,90,0.35);
    transition:0.4s;
}

/* Title */
.mvp-card h3{
    font-size:20px;
    font-weight:600;
    margin-bottom:12px;

    background:linear-gradient(90deg,#b76e79,#e8b4a7);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Text */
.mvp-card p{
    font-size:13px;
    color:#666;
    line-height:1.8;
}

/* Hover Effects */
.mvp-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 25px 60px rgba(184,80,90,0.18);
}

.mvp-card:hover::before{
    opacity:1;
}

.mvp-card:hover .mvp-icon{
    transform:scale(1.1) rotate(5deg);
    box-shadow:0 15px 35px rgba(184,80,90,0.5);
}

/* ===== Responsive ===== */
@media (max-width:768px){
    .mvp-card{
        padding:25px 18px;
    }

    .mvp-icon{
        width:60px;
        height:60px;
        font-size:22px;
    }

    .mvp-card h3{
        font-size:17px;
    }

    .mvp-card p{
        font-size:12px;
    }
}
/* ===== Row Alignment Fix ===== */
.row[style*="background-color: white"]{
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

/* ===== Image Styling ===== */
.row[style*="background-color: white"] img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    padding: 10px;
}

/* ===== Content Side ===== */
.row[style*="background-color: white"] .col-lg-6:last-child{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* ===== Scrollable Text Box ===== */
.row[style*="background-color: white"] p{
    max-height: 260px; /* scroll limit */
    overflow-y: auto;
    padding-right: 10px;
    line-height: 1.7;
    font-size: 14px;
    color: #555;
}

/* custom scrollbar */
.row[style*="background-color: white"] p::-webkit-scrollbar{
    width: 6px;
}

.row[style*="background-color: white"] p::-webkit-scrollbar-thumb{
    background: #b76e79;
    border-radius: 10px;
}

/* ===== Heading ===== */
.row[style*="background-color: white"] h3{
    font-size: 22px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #b76e79 !important;
}

/* ===== Responsive ===== */
@media (max-width: 768px){

    .row[style*="background-color: white"]{
        padding: 10px 0;
    }

    .row[style*="background-color: white"] img{
        height: auto;
    }

    .row[style*="background-color: white"] p{
        max-height: 200px;
        font-size: 13px;
    }

    .row[style*="background-color: white"] h3{
        font-size: 18px;
    }
}
