 body h1, h2, h3, h4, h5,h6{
            font-family: 'AtacamaVF, AtacamaVF';
        }

        /* ===========================
  /* ===================================
   MAIN WRAPPER
=================================== */

.scroll-animation-wrapper{
    position:relative;
    height:220vh;
    background:#f5f5f5;
}

/* ===================================
   FIXED VIDEO
=================================== */
/* =========================
   FIXED VIDEO BOX
========================= */

/* ====================================
   FIXED VIDEO BANNER
==================================== */

.fixed-video-box{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    z-index:20;
    overflow:hidden;
    padding:80px;

    transition:
    all 1.2s cubic-bezier(0.22,1,0.36,1);

}

/* video */

.fixed-video-box video{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:
    transform 1.4s cubic-bezier(0.22,1,0.36,1);

}

/* ====================================
   AFTER SCROLL
==================================== */

.fixed-video-box.active{

    padding:0px;

    /* move video to middle column */
    width:33.33%;
    height:88vh;

    top:40px;
    left:50%;

    transform:translateX(-50%);

}

/* zoom animation */

.fixed-video-box.active video{

    transform:scale(1.08);

}

/* ====================================
   BANNER SECTION
==================================== */

.banner-section{
    position:relative;
    z-index:5;
    padding-top:120vh;
    padding-left:40px;
    padding-right:40px;
    padding-bottom:100px;
}

.banner-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:25px;
}

/* cards */

.banner-card{
    height:88vh;
    overflow:hidden;
    position:relative;
    background:#000;
}

.banner-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* mobile */

@media(max-width:991px){

.banner-grid{
    grid-template-columns:1fr;
}

.fixed-video-box.active{

    width:92%;
    height:60vh;
    top:15px;

}

.banner-card{
    height:60vh;
}

.banner-section{
    padding-left:15px;
    padding-right:15px;
}

}

/* overlay content */

.video-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#fff;
    z-index:2;
    width:90%;
    transition:.5s;
}

.video-content p{
    font-size:18px;
    margin-bottom:15px;
}

.video-content h1{
    font-size:70px;
    line-height:1.1;
    font-weight:500;
    margin-bottom:20px;
}

.video-content a{
    color:#fff;
    text-decoration:none;
    border-bottom:1px solid #fff;
}

/* ===================================
   BANNER SECTION
=================================== */



/* cards */

.banner-card{
    position:relative;
    height:88vh;
    overflow:hidden;
    background:url('../img/fgfdgfdgf.png') center center/cover no-repeat;
}

/* images */

.banner-card img{
    width:100%;
    height:100%;  
    object-fit:cover;
    display:block;
}

/* center card */

.center-video-target{
    position:relative;
    overflow:hidden;
}

/* card content */

.card-content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:30px 25px;
    color:#fff;
    background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    z-index:2;
}

.card-content h2{
    font-size:22px;
    margin-bottom:10px;
    font-weight:500;
}

.card-content a{
    color:#fff;
    text-decoration:none;
    border-bottom:1px solid #fff;
}

/* ===================================
   VIDEO ANIMATION
=================================== */

.fixed-video-box.animate{

    width:32%;
    height:88vh;

    top:40px;
    left:50%;
    transform:translateX(-50%);

}

/* hide overlay text */

.fixed-video-box.animate .video-content{
    opacity:0;
}

/* final hide */

.fixed-video-box.hide-video{
    opacity:0;
    visibility:hidden;
}

/* ===================================
   EXTRA CONTENT
=================================== */

.extra-content{
    background:#fff;
    padding:120px 10%;
}

.extra-content h2{
    font-size:60px;
    margin-bottom:25px;
}

.extra-content p{
    font-size:18px;
    line-height:1.9;
}

/* ===================================
   TABLET
=================================== */

@media(max-width:991px){

.banner-grid{
    grid-template-columns:1fr;
}

.banner-card{
    height:70vh;
}

.fixed-video-box.animate{

    width:92%;
    height:70vh;
    top:15px;

}

.video-content h1{
    font-size:45px;
}

.banner-section{
    padding-left:15px;
    padding-right:15px;
}

}

/* ===================================
   MOBILE
=================================== */

/* ===============================
   MOBILE FIX VERSION
================================ */

@media(max-width:768px){

/* remove merge animation */

.fixed-video-box{

    position:relative;
    width:100%;
    height:65vh;
    top:0;
    left:0;
    transform:none !important;

    opacity:1 !important;
    visibility:visible !important;
    padding:0px !important;

}

/* stop animation */

.fixed-video-box.animate{

    width:100%;
    height:65vh;
    top:0;
    left:0;
    transform:none !important;

}

/* video normal */

.fixed-video-box video{

    width:100%;
    height:100%;
    object-fit:cover;

}

/* remove fixed effect */

.scroll-animation-wrapper{

    height:auto;

}

/* banner spacing */

.banner-section{

    padding-top:20px;
    padding-left:15px;
    padding-right:15px;
    padding-bottom:50px;

}

/* one column */

.banner-grid{

    grid-template-columns:1fr;
    gap:15px;

}

/* cards */

.banner-card{

    height:60vh;

}

/* hide center empty section */

.center-video-target{

    display:none;

}

/* text */

.video-content{

    width:90%;

}

.video-content h1{

    font-size:34px;
    line-height:1.2;

}

.video-content p{

    font-size:14px;

}

.card-content{

    padding:20px;

}

.card-content h2{

    font-size:18px;

}

/* remove hide effect */

.fixed-video-box.hide-video{

    opacity:1 !important;
    visibility:visible !important;

}

}
        /* RESPONSIVE */
.logo img{
  width:101px;
  height:auto;
  display:block;
  object-fit:contain;
}
@media(max-width:768px){

  .logo img{
    width:82px;
  }
}
        .lux-touch-wrap {
  padding: 80px 5%;
  background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
  background-color: #f7f6f4;
  font-family: 'AtacamaVF, AtacamaVF';
}

.lux-touch-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT */
.lux-touch-left {
  width: 35%;
}

.lux-touch-left h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.lux-touch-left p {
  color: #666;
  line-height: 1.6;
}

/* RIGHT */
.lux-touch-slider {
  width: 65%;
  overflow: hidden;
  position: relative;
}

.lux-slider-track {
  display: flex;
  gap: 20px;
  transition: 0.5s;
}

/* CARD */
.lux-card {
 min-width: 400px;
    height: 569px;
  position: relative;
  overflow: hidden;
}

.lux-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.lux-card:hover img {
  transform: scale(1.08);
}

/* OVERLAY */
.lux-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.lux-overlay h4 {
  margin-bottom: 5px;
}

.lux-overlay span {
  font-size: 13px;
  border-bottom: 1px solid #fff;
}

/* ARROWS */
.lux-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.lux-arrow.left { left: 0; }
.lux-arrow.right { right: 0; }

/* MOBILE */
@media(max-width:768px){

  .lux-touch-container {
    flex-direction: column;
  }

  .lux-touch-left,
  .lux-touch-slider {
    width: 100%;
  }

  .lux-card {
    min-width: 80%;
  }

}

.df-footer {
  background: #f6f3ef;
  padding: 40px 5%;
  color: #333;
}

/* TOP BAR */
.df-topbar {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.df-top-item p {
  color: #777;
  font-size: 14px;
}

/* DIVIDER */
.df-divider {
  height: 1px;
  background: #ddd;
  margin: 25px 0;
}

/* MAIN */
.df-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* NEWSLETTER */
.df-newsletter {
  width: 35%;
}

.df-newsletter h4 {
  margin-bottom: 15px;
}

.df-input-wrap {
  display: flex;
  gap: 10px;
}

.df-input-wrap input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
}

.df-input-wrap button {
  background: #333;
  color: #fff;
  padding: 12px 18px;
  border: none;
}

/* TOGGLE */
.df-toggle {
  margin-top: 20px;
  font-size: 14px;
}

.df-switch {
  display: inline-block;
  width: 40px;
  height: 20px;
  background: #ccc;
  border-radius: 20px;
  margin-left: 10px;
}

/* LINKS */
.df-links {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  width: 65%;
}

.df-col h5 {
  margin-bottom: 10px;
}

.df-col a {
  display: block;
  margin-bottom: 6px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
}

/* BOTTOM */
.df-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}

.df-logo {
  font-size: 28px;
}

.df-social span {
  margin-left: 10px;
  font-size: 14px;
}

.df-lang {
  font-size: 13px;
}

/* MOBILE */
@media(max-width:768px){

  .df-topbar {
    grid-template-columns: 1fr;
  }

  .df-main {
    flex-direction: column;
  }

  .df-newsletter,
  .df-links {
    width: 100%;
  }

  .df-links {
    grid-template-columns: repeat(2,1fr);
  }

  .df-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

}
/* SECTION */
.luxury-section{
    width:100%;
    min-height:100vh;
    display:flex;
    background:#f4f4f4;
}

/* =========================
LEFT SLIDER
========================= */

.left-slider{
    width:34%;
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slider-track{
    width:100%;
    height:100%;
    position:relative;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:1s ease;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transform:scale(1);
    transition:6s ease;
}

.slide.active img{
    transform:scale(1.08);
}

/* =========================
CENTER + RIGHT CONTENT
========================= */

.right-wrapper{
    width:66%;
    display:flex;
}

/* COLUMN */

.right-content{
    width:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:80px 40px;
    border-left:1px solid rgba(0,0,0,0.05);
}

/* CONTENT */

.content-box{
    max-width:620px;
    text-align:center;
}

.subtitle{
    font-size:15px;
    color:#9c9c9c;
    margin-bottom:18px;
    font-weight:500;
}

.main-title{
    font-size:2rem;
    line-height:1.1;
    font-weight:300;
    color:#2d2d2d;
    margin-bottom:60px;
    letter-spacing:-1px;
    font-family:'AtacamaVF, AtacamaVF';
}

/* PRODUCT GRID */

.product-grid{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-bottom:60px;
}

/* PRODUCT CARD */

.product-card{
    width:220px;
        justify-content: center;
}

.product-image{
    background:#f7f7f7;
    padding:35px;
    transition:0.4s ease;
    overflow:hidden;
}

.product-image img{
    width:100%;
    display:block;
    transition:0.4s ease;
}

.product-card:hover img{
    transform:scale(1.05);
}

.product-title{
    font-size:18px;
    line-height:1.3;
    color:#4b4b4b;
    font-weight:400;
    margin-top:15px;
    font-family:Hellix, Hellix-fallb;
}

/* BUTTON */

.discover-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:120px;
    height:58px;
    background:#fff;
    color:#444;
    text-decoration:none;
    border-radius:12px;
    font-size:20px;
    transition:0.4s ease;
    box-shadow:0 4px 20px rgba(0,0,0,0.04);
}

.discover-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
}

/* =========================
TABLET
========================= */

@media(max-width:1400px){

    .main-title{
        font-size:42px;
    }

    .product-card{
        width:180px;
    }

}

@media(max-width:1200px){

    .luxury-section{
        flex-direction:column;
    }

    .left-slider{
        width:100%;
        height:75vh;
    }

    .right-wrapper{
        width:100%;
    }

}

/* =========================
MOBILE
========================= */

@media(max-width:991px){

    .right-wrapper{
        flex-direction:column;
    }

    .right-content{
        width:100%;
        padding:70px 25px;
        border-left:none;
        border-top:1px solid rgba(0,0,0,0.05);
    }

    .main-title{
        font-size:38px;
        margin-bottom:40px;
    }

    .product-grid{
        flex-direction:column;
        align-items:center;
    }

    .product-card{
        width:100%;
        max-width:320px;
    }

}

/* SMALL MOBILE */

@media(max-width:576px){

    .left-slider{
        height:85vh;
    }

    .main-title{
        font-size:30px;
    }

    .product-image{
        padding:25px;
    }

    .product-title{
        font-size:18px;
    }

    .discover-btn{
        width:110px;
        height:52px;
        font-size:18px;
    }

}
/* =========================
STACK SECTION
========================= */

.sticky-wrapper{
    position:relative;
}

/* EACH PANEL */

.sticky-panel{
    position:sticky;
    top:0;
    width:100%;
    height:100vh;
    overflow:hidden;
}

/* BANNER */

.luxury-banner{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8%;
}

/* Background Image */
.luxury-banner .bg-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.banner-overlay{
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.45); */
    z-index: 2;
}

/* Content */
.banner-content{
    position: relative;
    z-index: 3;
    max-width: 550px;
    color: #fff;
    text-align: center;
}

/* Heading */
.banner-content h2{
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: capitalize;
        color: #ffb347;
}
.banner-content h4{
    padding: 14px;
}
.banner-content h6{
      color: #ffb347;
}
/* Paragraph */
.banner-content p{
        font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #f1f1f1;
    margin-top: 16px;
}

        
/* Button */
.banner-btn{
    display: inline-block;
    padding: 5px 34px;
    background: #462a01;
    color: #ffb347;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s ease;
}

.banner-btn:hover{
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width: 992px){

    .luxury-banner{
        height: 80vh;
        padding: 0 6%;
    }

    .banner-content{
        max-width: 500px;
    }

    .banner-content h2{
        font-size: 44px;
    }

    .banner-content p{
        font-size: 16px;
    }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width: 768px){

    .luxury-banner{
        height: 75vh;
        justify-content: center;
        padding: 0 20px;
    }

    .banner-content{
        text-align: left;
        max-width: 100%;
    }

    .banner-content h2 {
        font-size: 47px !important;
        margin-bottom: 11px;
    }


    .banner-content p {
        font-size: 18px;
        line-height: 23px;
        margin-bottom: 8px;
        padding-right: 291px;
    }

    .banner-btn{
                padding: 5px 28px;
        font-size: 10px;

    }
    .banner-content h4 {
    padding: 9px;
    font-size: 18px;
}
.banner-content h6 {
    color: #ffb347;
    font-size: 14px;
}

}
@media (max-width: 568px) {
    .sticky-panel, .luxury-banner {
        height: 54vh !important;
    }
    .banner-content h2 {
        font-size: 31px !important;
        margin-bottom: 4px;
    }
    .banner-content h4 {
        padding: 9px;
        font-size: 25px;
    }
        .banner-content p {
        font-size: 11px;
        line-height: 17px;
        margin-bottom: 17px;
        padding-right: 185px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width: 480px){
.sticky-panel,
    .luxury-banner{
                height: 52vh !important;
    }
   
    .luxury-banner{        height: 35vh !important;
        min-height: 41vh !important;    }

    .banner-content h2 {
        font-size: 24px !important;
        margin-bottom: 0px;
    }

    .banner-content p{
        font-size: 11px;
        padding-right: 177px;
    }
    p .mobile-hide{
display: none;
}
.banner-content h4 {
    padding: 9px;
    font-size: 16px;
}
.banner-content h6 {
    color: #ffb347;
    font-size: 11px;
}

}
@media (max-width: 368px) {
    .luxury-banner {
        height: 35vh !important;
        min-height: 50vh;
    }
}
@media (max-width: 368px) {
    .sticky-panel, .luxury-banner {
        height: 42vh !important;
    }
}
@media (max-width: 368px) {
    .main-bottle {
        max-width: 77px !important;
    }
}
@media (max-width: 368px) {
    .banner-content p {
        font-size: 9px !important;
    }
}
/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(50px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* DEMO CONTENT */

.demo-content{
    padding:120px 10%;
    background:#fff;
}

.demo-content h2{
    font-size:60px;
    margin-bottom:20px;
}

.demo-content p{
    font-size:20px;
    line-height:1.9;
    color:#555;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

    .banner-content h2{
        font-size:56px;
    }

}

@media(max-width:768px){

    .sticky-panel,
    .luxury-banner{
                height: 138vh;
    }

   
}


.mobile-video-section{
    display:none;
}
@media(max-width:768px){

.scroll-animation-wrapper{
    display: none;
}

    .mobile-video-section{
        position:relative;
        width:100%;
        overflow:hidden;
    }
    .mobile-video-section{
    display:block;
}


    /* =====================================
    VIDEO
    ===================================== */

    .fixed-video-boxs{
        position:relative;
        width:100%;
        height:85vh;
        overflow:hidden;
    }

    .fixed-video-boxs video{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    /* =====================================
    FIRST TEXT
    ===================================== */

    .video-contents{

        position:absolute;

        top:50%;
        left:50%;

        transform:translate(-50%,-50%);

        width:90%;

        text-align:center;

        z-index:10;

        transition:0.2s linear;

    }

    /* TEXT STYLE */

    .paragraph{
        color:#fff;
        font-size:12px;
        letter-spacing:2px;
        margin-bottom:12px;
    }

    .heading-tag{
        color:#fff;
        font-size:42px;
        line-height:1.2;
        margin-bottom:20px;
    }

    .a-tag{
        display:inline-block;
        padding:12px 28px;
        border:1px solid #fff;
        color:#fff;
        text-decoration:none;
    }

    /* HIDE FIRST TEXT */

    .video-contents.hide{

        opacity:0;

        visibility:hidden;

    }

    /* =====================================
    SECOND TEXT
    ===================================== */

    .after-banner-text{

        position:fixed;

        top:124px;

        left:50%;

        transform:translateX(-50%);

        width:90%;

        text-align:center;

        /* z-index:9999; */

        opacity:0;

        visibility:hidden;

        transition:0.3s ease;

    }

    /* SHOW SECOND TEXT */

    .after-banner-text.show{

        opacity:1;

        visibility:visible;
                

    }

    /* BLACK TEXT */

    .black{
        color:#000;
    }

    .black-btn{
        color:#000;
        border:1px solid #000;
    }

    /* =====================================
    NEXT SECTION
    ===================================== */

    .next-section{
        position:relative;
        background:#fff;
        padding:120px 15px 60px;
        z-index:5;
    }

    .dummy-box{
        height:420px;
        background:#f2f2f2;
        border-radius:20px;
        margin-bottom:20px;
    }

}

/* =====================================
DESKTOP
===================================== */

@media(min-width:769px){

    .after-banner-text{
        display:none;
    }

}
/* SECTION ONLY FOR MOBILE */

.mobile-banner-section{
    display:none;
}

/* MOBILE VIEW */

@media(max-width:768px){

    .mobile-banner-section{
        display:block;
        width:100%;
        padding:20px 15px;
        background:#fff;
        
    }
.mobile-banner-section{
    transition:0.4s ease;
}

/* ADD THIS CLASS WHEN PAGE SCROLL 50PX */

.mobile-banner-section.active-scroll{
    margin-top:341px;
}
    .mobile-banner-grid{
        display:flex;
        gap:12px;
    }

    .mobile-banner-card{
        width:50%;
        position:relative;
        overflow:hidden;
        border-radius:16px;
    }

    .mobile-banner-card img{
        width:100%;
        height:260px;
        object-fit:cover;
        display:block;
    }

    .mobile-card-content{
        position:absolute;
        bottom:20px;
        left:15px;
        z-index:2;
    }

    .mobile-card-content h2{
        font-size:18px;
        color:#fff;
        margin-bottom:8px;
        line-height:1.3;
    }

    .mobile-card-content a{
        color:#fff;
        text-decoration:none;
        font-size:14px;
        border-bottom:1px solid #fff;
        padding-bottom:2px;
    }

    /* DARK OVERLAY */

    .mobile-banner-card::after{
        content:"";
        position:absolute;
        inset:0;
        background:rgba(0,0,0,0.25);
    }

}
.ct-hero-section{
    width:100%;
    min-height:100vh;
    position:relative;
    overflow:hidden;
    background:#050505;
    display:flex;
    align-items:center;
    padding:80px 7%;
}

/* BACKGROUND */

.ct-bg-layer{
    position:absolute;
    inset:0;
    background:
    linear-gradient(rgba(0,0,0,0.72), rgba(0,0,0,0.82)),
    url('../img/casa-bg.jpg') center/cover no-repeat;
    z-index:1;
    transform:scale(1.1);
    animation:bgZoom 18s linear infinite alternate;
}

@keyframes bgZoom{

    from{
        transform:scale(1.05);
    }

    to{
        transform:scale(1.15);
    }

}

/* GLOW EFFECTS */

.ct-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    z-index:1;
    opacity:0.45;
}

.glow-one{
    width:350px;
    height:350px;
    background:#ff9800;
    top:-120px;
    left:-120px;
}

.glow-two{
    width:320px;
    height:320px;
    background:#ff3d00;
    bottom:-120px;
    right:-120px;
}

/* CONTAINER */

.ct-container{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    position:relative;
    z-index:2;
}

/* =========================
LEFT CONTENT
========================= */

.ct-content{
    width:50%;
    animation:fadeLeft 1s ease;
}

@keyframes fadeLeft{

    from{
        opacity:0;
        transform:translateX(-80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

.ct-subtitle{
    display:inline-block;
    color:#ffb347;
    font-size:14px;
    letter-spacing:3px;
    margin-bottom:22px;
}

.ct-content h1{
    font-size:82px;
    line-height:1.05;
    color:#fff;
    margin-bottom:24px;
    font-weight:800;
}

.ct-content h1 span{
    color:#ffb347;
    position:relative;
}

.ct-content p{
    font-size:18px;
    line-height:1.9;
    color:#d7d7d7;
    max-width:650px;
    margin-bottom:40px;
}

/* BUTTONS */

.ct-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.ct-btn{
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:0.4s ease;
}

.primary-btn{
    background:#ffb347;
    color:#000;
}

.primary-btn:hover{
    transform:translateY(-6px);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.2);
    color:#fff;
    backdrop-filter:blur(8px);
}

.secondary-btn:hover{
    background:rgba(255,255,255,0.08);
}

/* STATS */

.ct-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.ct-stat-box{
    min-width:170px;
    padding:22px;
    border-radius:24px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
}

.ct-stat-box h3{
    color:#ffb347;
    font-size:32px;
    margin-bottom:8px;
}

.ct-stat-box span{
    color:#dcdcdc;
    font-size:14px;
}

/* =========================
RIGHT SIDE
========================= */

/* =========================
RIGHT IMAGE AREA
========================= */

.ct-image-area{
    width:45%;
    min-height:760px;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    perspective:1200px;
}

/* =========================
BACKGROUND GLOW CIRCLE
========================= */

.ct-circle{
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(255,179,71,0.15),
    rgba(255,255,255,0.02));
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(12px);
    animation:rotateCircle 20s linear infinite;
}

/* MAIN BOTTLE */

.main-bottle{
     width:100%;
    max-width:360px;
    position:relative;
    z-index:5;
    transform-origin:center bottom;

    animation:
    bottleFloat 5s ease-in-out infinite,
    bottleSwing 12s ease-in-out infinite;

    filter:
    drop-shadow(0 35px 60px rgba(0,0,0,0.6))
    drop-shadow(0 0 30px rgba(255,179,71,0.25));
}

/* =========================
FLOATING IMAGES
========================= */

.floating-img{
    position:absolute;
    width:160px;
    height:200px;
    border-radius:28px;
    overflow:hidden;
    /* background:rgba(255,255,255,0.06);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,0.08); */
    /* box-shadow:
    0 20px 45px rgba(0,0,0,0.4),
    0 0 20px rgba(255,179,71,0.12); */
    transition:0.5s ease;
}

/* HOVER EFFECT */

.floating-img:hover{
    transform:scale(1.08) rotate(2deg);
    box-shadow:
    0 25px 55px rgba(0,0,0,0.5),
    0 0 35px rgba(255,179,71,0.35);
}

/* IMAGE */

.floating-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.6s ease;
}

.floating-img:hover img{
    transform:scale(1.08);
}

/* =========================
POSITIONS
========================= */

.img-one{
    top:20px;
    left:-40px;
    animation:floatOne 5s ease-in-out infinite;
}

.img-two{
    top:60px;
    right:-40px;
    animation:floatTwo 6s ease-in-out infinite;
}

.img-three{
    bottom:40px;
    left:-20px;
    animation:floatThree 5.5s ease-in-out infinite;
}

.img-four{
    bottom:60px;
    right:-20px;
    animation:floatFour 6s ease-in-out infinite;
}


/* ANIMATIONS */

@keyframes bottleFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}


/* ROTATE LEFT → CENTER → RIGHT */

@keyframes bottleSwing{

    /* START STRAIGHT */

    0%{
        rotate:0deg;
    }

    /* STAY STRAIGHT 5 SEC */

    40%{
        rotate:0deg;
    }

    /* LEFT SIDE */

    55%{
        rotate:-11deg;
    }

    /* BACK CENTER */

    70%{
        rotate:0deg;
    }

    /* RIGHT SIDE */

    85%{
        rotate:11deg;
    }

    /* BACK CENTER */

    100%{
        rotate:0deg;
    }

}

@keyframes bottleRotate{

    0%{
        rotate:-2deg;
    }

    50%{
        rotate:2deg;
    }

    100%{
        rotate:-2deg;
    }

}

@keyframes rotateCircle{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

@keyframes pulseCircle{

    0%{
        transform:scale(1);
        opacity:0.4;
    }

    50%{
        transform:scale(1.05);
        opacity:0.8;
    }

    100%{
        transform:scale(1);
        opacity:0.4;
    }

}

@keyframes floatOne{

    0%{
        transform:translateY(0px) rotate(-4deg);
    }

    50%{
        transform:translateY(-20px) rotate(4deg);
    }

    100%{
        transform:translateY(0px) rotate(-4deg);
    }

}

@keyframes floatTwo{

    0%{
        transform:translateY(0px) rotate(4deg);
    }

    50%{
        transform:translateY(20px) rotate(-4deg);
    }

    100%{
        transform:translateY(0px) rotate(4deg);
    }

}

@keyframes floatThree{

    0%{
        transform:translateY(0px) rotate(3deg);
    }

    50%{
        transform:translateY(-18px) rotate(-3deg);
    }

    100%{
        transform:translateY(0px) rotate(3deg);
    }

}

@keyframes floatFour{

    0%{
        transform:translateY(0px) rotate(-3deg);
    }

    50%{
        transform:translateY(18px) rotate(3deg);
    }

    100%{
        transform:translateY(0px) rotate(-3deg);
    }

}

/* =========================
TABLET
========================= */

@media(max-width:991px){

    .ct-image-area{
        width:100%;
        min-height:650px;
        margin-top:40px;
    }

    .ct-circle{
        width:420px;
        height:420px;
    }

    .main-bottle{
        max-width:300px;
    }


}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .ct-image-area{
        min-height:500px;
    }

    .ct-circle{
        width:280px;
        height:280px;
    }

    .main-bottle{
        max-width:131px;
    }

    .floating-img{
        width:90px;
        height:120px;
        border-radius:18px;
    }

    .img-one{
        top:10px;
        left:0;
    }

    .img-two{
        top:25px;
        right:0;
    }

    .img-three{
        bottom:30px;
        left:10px;
    }

    .img-four{
        bottom:45px;
        right:10px;
    }

}

@keyframes moveOne{

    50%{
        transform:translateY(-18px);
    }

}

@keyframes moveTwo{

    50%{
        transform:translateY(18px);
    }

}

@keyframes moveThree{

    50%{
        transform:translateY(-15px);
    }

}



/* =========================
TABLET
========================= */

@media(max-width:991px){

    .ct-container{
        flex-direction:column;
        text-align:center;
    }

    .ct-content{
        width:100%;
    }


    .ct-buttons,
    .ct-stats{
        justify-content:center;
    }

    .ct-content h1{
        font-size:58px;
    }



}

/* =========================
MOBILE
========================= */

@media(max-width:768px){

    .ct-hero-section{
        padding:80px 20px;
        min-height:auto;
    }

    .ct-content h1{
        font-size:42px;
    }

    .ct-content p{
        font-size:15px;
        line-height:1.8;
    }

    
    

    .ct-stat-box{
        width:100%;
    }

    .ct-btn{
        width:100%;
        text-align:center;
    }

}
/* =========================
   MAIN SECTION
========================= */

.neo-luxury-section{
    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
    background:
    linear-gradient(135deg,#000000 40%,#140800 100%);
    padding:80px 7%;
    display:flex;
    align-items:center;
}

/* =========================
   BACKGROUND LIGHTS
========================= */

.bg-light{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:0.4;
}

.light1{
    width:400px;
    height:400px;
    background:#ff9900;
    top:-120px;
    left:-120px;
    animation:moveLight 6s ease-in-out infinite alternate;
}

.light2{
    width:350px;
    height:350px;
    background:#ff5500;
    bottom:-120px;
    right:-100px;
    animation:moveLight2 8s ease-in-out infinite alternate;
}

/* =========================
   CONTAINER
========================= */

.neo-container{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    position:relative;
    z-index:5;
}

/* =========================
   LEFT CONTENT
========================= */

.neo-content{
    flex:1;
    max-width:620px;
}

.neo-subtitle{
    color:#ffb347;
    letter-spacing:3px;
    font-size:14px;
    display:block;
    margin-bottom:25px;
}

.neo-content h1{
    font-size:88px;
    line-height:0.95;
    color:#fff;
    font-family:'Playfair Display',serif;
    margin-bottom:30px;
    font-weight:700;
}

.neo-content h1 span{
    color:#ffb347;
    position:relative;
}

.neo-content h1 span::after{
    content:'';
    position:absolute;
    left:0;
    bottom:10px;
    width:100%;
    height:12px;
    background:rgba(255,179,71,0.18);
    z-index:-1;
}

.neo-content p{
    color:#d5d5d5;
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
}

/* =========================
   BUTTONS
========================= */

.neo-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.neo-btn{
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.neo-btn.primary{
    background:linear-gradient(135deg,#ffb347,#ff8800);
    color:#000;
    box-shadow:0 10px 30px rgba(255,136,0,0.35);
}

.neo-btn.primary:hover{
    transform:translateY(-6px);
}

.neo-btn.secondary{
    border:1px solid rgba(255,255,255,0.12);
    color:#fff;
    backdrop-filter:blur(10px);
}

.neo-btn.secondary:hover{
    background:#fff;
    color:#000;
}

/* =========================
   FEATURE CARDS
========================= */

.neo-features{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.feature-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    border-radius:24px;
    padding:28px;
    min-width:170px;
    transition:0.4s ease;
}

.feature-card:hover{
    transform:translateY(-8px) scale(1.02);
    border-color:#ffb347;
}

.feature-card h3{
    font-size:38px;
    color:#ffb347;
    margin-bottom:8px;
    font-family:'Playfair Display',serif;
}

.feature-card span{
    color:#d6d6d6;
    font-size:15px;
}

/* =========================
   RIGHT IMAGE AREA
========================= */

.neo-image-area{
    flex:1;
    min-height:720px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Glow */

.main-glow{
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(255,136,0,0.35),
    transparent 70%);
    animation:pulseGlow 4s ease-in-out infinite;
}

/* Rotating Ring */

.rotating-ring{
    position:absolute;
    width:580px;
    height:580px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.08);
    border-top:1px solid #ffb347;
    animation:rotateRing 18s linear infinite;
}

/* Main Product */

.main-product{
    position:relative;
    width:390px;
    z-index:5;
    animation:mainFloat 4s ease-in-out infinite;
    filter:drop-shadow(0 30px 40px rgba(255,136,0,0.35));
}

/* Floating Items */

.float-item{
    position:absolute;
    width:120px;
    z-index:6;
}

.item1{
    top:60px;
    left:50px;
    animation:float1 6s ease-in-out infinite;
}

.item2{
    top:120px;
    right:20px;
    animation:float2 7s ease-in-out infinite;
}

.item3{
    bottom:60px;
    left:80px;
    animation:float3 5s ease-in-out infinite;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes rotateRing{
    100%{
        transform:rotate(360deg);
    }
}

@keyframes mainFloat{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-20px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes pulseGlow{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

@keyframes float1{
    50%{
        transform:translateY(-20px) rotate(5deg);
    }
}

@keyframes float2{
    50%{
        transform:translateY(18px) rotate(-6deg);
    }
}

@keyframes float3{
    50%{
        transform:translateY(-16px);
    }
}

@keyframes moveLight{
    100%{
        transform:translate(60px,40px);
    }
}

@keyframes moveLight2{
    100%{
        transform:translate(-60px,-30px);
    }
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media(max-width:1100px){

    .neo-container{
        flex-direction:column;
        text-align:center;
    }

    .neo-content{
        max-width:100%;
    }

    .neo-buttons,
    .neo-features{
        justify-content:center;
    }

    .neo-content h1{
        font-size:70px;
    }

    .neo-content p{
        margin-left:auto;
        margin-right:auto;
    }

}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

    .neo-luxury-section{
        padding:60px 20px;
    }

    .neo-content h1{
        font-size:48px;
    }

    .neo-content p{
        font-size:15px;
        line-height:1.8;
    }

    .neo-image-area{
        min-height:500px;
    }

    .main-product{
        width:250px;
    }

    .rotating-ring{
        width:320px;
        height:320px;
    }

    .main-glow{
        width:280px;
        height:280px;
    }

    .float-item{
        width:70px;
    }

    .feature-card{
        width:100%;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .neo-content h1{
        font-size:40px;
    }

    .neo-subtitle{
        font-size:11px;
        letter-spacing:2px;
    }

    .neo-btn{
        width:100%;
        text-align:center;
    }
    .item1 {
    left: -38px !important;
}
.item2 {
    right: -75px !important;
}
.item3 {
    bottom: 29px;
    left: 80px !important;
}
.float-item{
        width:90px;
    }
}


/* DESKTOP */.luxury-banner img.bg-image{    width:100%;    height:100%;    object-fit:cover;    object-position:center center;    display:block;}/* LARGE SCREEN */@media(min-width:1600px){    .luxury-banner img.bg-image{        object-position:center center;    }}/* LAPTOP */@media(max-width:1200px){    .luxury-banner img.bg-image{        object-position:center;    }}/* TABLET */@media(max-width:768px){    .luxury-banner{        height:100vh;        min-height:100vh;    }    .luxury-banner img.bg-image{        width:100%;        height:100%;        object-fit:cover;        object-position:center center;    }}/* MOBILE */@media(max-width:568px){    .luxury-banner{        height:51vh !important;        min-height:50vh;    }    .luxury-banner img.bg-image{        width:100%;        height:100%;        object-fit:cover;        object-position:center center;        transform:scale(1.02);    }}/* SMALL MOBILE */@media(max-width:360px){    .luxury-banner img.bg-image{        object-position:center;    }}
   