
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* backface-visibility:hidden; */
}

html, body{
    height: 100%;
    scroll-behavior:smooth;
overflow-x: hidden;
}



img{
    user-select:none;
    -webkit-user-drag:none;
}

/* ===== NAVBAR ===== */
.navbar{
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    font-family: 'Courier New', Courier, monospace;
}


/* default visible */
.navbar{
    transition: transform .45s ease, opacity .45s ease;
}

/* hide state */
.navbar.hide-nav{
    transform: translateY(-120%);
    opacity: 0;
}



/* 
.logo {
    position: relative;
    display: flex;
    font-family: "Momo Signature", cursive;
  font-weight: 400;
  font-style: normal;
} */
/* 
.logo h3{
    color: #ffffff;
    font-size: 24px;
    margin-top: 15px;
 background: linear-gradient(to right, rgb(255, 255, 255) 50%, rgb(124, 122, 122) 50%);
    background-size: 200% 100%;
    background-position: right bottom;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    transition: background-position 0.8s ease;
    cursor: pointer;
}

.logo:hover h3{
    background-position: left bottom;
} */

.logo img{
    width: 150px;
}

.nav-links{
    display: flex;
    gap: 40px;
     font-family: "poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}

.nav-links a{
    color:  rgb(255, 255, 255);
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}
.logo,
.nav-links a {
    opacity: 0;
}
.nav-links a:hover{
    color: #8b8a8a;
    transform: translateY(-5px);
}

/* ===== HERO ===== */
.hero{
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;

}

/* VIDEO */
.bg-video{
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
     object-fit: cover;
    z-index: -2;
     width: 100%;
    height: 100%;
}

/* DARK OVERLAY */
.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: -1;
}

/* HERO CONTENT */
.hero-content{
    z-index: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    
    align-items: center;
    font-weight: 600;
    
}

.hero-content h1{
    font-size: 80px;
    margin-bottom: 10px;
        white-space: nowrap;
     font-family:"Playfair Display", sans-serif;
    font-weight: 1000;

}
.hero-content h1 span{
    color: #efff14;
}
.hero-content p{
    font-size: 1.2rem;
    margin-bottom: 30px;
     font-family: "Hind", sans-serif;
  font-weight: 500;
  font-style: normal;

}




.hero-image{
    position: absolute;
    top: 150px;
    margin-bottom: 120px;
   
}

.hero-image img{
    width: 350px;   /* adjust size */
    height: auto;
    border-radius: 20px;
    filter: brightness(0.65);
}



.btn{
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 28px;
}
.btn1{
    
    padding: 20px 30px;
    background: #ffe600;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    font-family: "Clash Grotesk", sans-serif;
    font-weight: 600;
    font-size: 20px;
    font-style: normal;
    overflow: hidden;
    z-index: 1;
        background: rgb(255, 251, 0);
        position: relative;
}

/* wrapper for sliding */
.btn-text{
    display:inline-block;
    transition:transform .35s cubic-bezier(.4,0,.2,1);
}

/* when changing */
.btn-text.slide-up{
    transform:translateY(-80%);
}

/* .btn1::before{
    content: "";
    position: absolute;
   left: 0;
    top: 0;
    width: 0;
    height: 100%;
    color: rgb(255, 255, 255);
    background: rgb(10, 83, 192);
    border-radius: 5px;
    transition: 0.5s;
    z-index: -1;
}

.btn1:hover::before{
    width: 100%;
    color: rgb(255, 255, 255);
} */
.mic-icon{
    margin-bottom: -2px;
    width: 20px;
    height: 20px;
}
.guest-icon{
    margin-bottom: -6px;
    width: 30px;
    height: 30px;
}
.btn2{
    padding: 17px 30px;
    background: #ffffff;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
 font-family: "Clash Grotesk", sans-serif;
    font-weight: 600;
    font-size: 20px;
    font-style: normal;
    overflow: hidden;
    z-index: 1;
        background: rgb(255, 255, 255);
        position: relative;
}
/* wrapper for sliding */
.btn-text2{
    display:inline-block;
    transition:transform .35s cubic-bezier(.4,0,.2,1);
}

/* when changing */
.btn-text2.slide-up{
    transform:translateY(-80%);
}
/* 
.btn2::before{
    content: "";
    position: absolute;
   left: 0;
    top: 0;
    width: 100%;
    height: 0;
    background: rgb(0, 238, 255);
    border-radius: 5px;
    transition: 0.5s;
    z-index: -1;
}

.btn2:hover::before{
    height: 100%;
} */
.btn1:hover{
    transform: translateY(-5px);
}

.btn2:hover{
    transform: translateY(-5px);
}

.scroll-text{
    position: absolute;
    bottom: 50px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    z-index: 0;
    font-family: "Clash Grotesk", sans-serif;
}

.scroll-wrapper{
    display: flex;
    width: max-content;
    animation: scrollRight 30s linear infinite;
    position: relative;
    margin-bottom: -12px;;
}


.scroll-wrapper h2{
    font-size: 6rem;
    font-weight: 900;
    /* color: transparent; */
    color : transparent;
    -webkit-text-stroke: 2.5px rgba(252, 251, 251, 0.4);
    margin-right: 50px;

}

/* Animation */
@keyframes scrollRight{
    from{
        transform: translateX(-50%);
    }
    to{
        transform: translateX(0);
    }
}







.stats-ticker{
    position: absolute;   /* or relative if below hero */
    bottom: 0;
    width: 100%;
    overflow: hidden;
    padding: 170px 0;
}

.stats-track{
    display: flex;
    width: max-content;
    animation: scrollLeft 25s linear infinite;
    gap: 100px;
}

.stats-track h2{
    font-size: 2rem;
    font-weight: 800;
    white-space: nowrap;
    font-family: Agrandir, Arial, sans-serif;
    color: white;
    margin-right: 80px;
}

@keyframes scrollLeft{
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-50%);
    }
}

.stats-track:hover{
    animation-play-state : paused;
}


#menut1{
    display: none;
    position: fixed;      /* fixed so it stays on all page */
    top: 0;
    left: 0;
    width: 100%;
    height: 0;            /* no height when closed */
    z-index: 99999; 
}

/* Menu icon */
#menut1 .bart1{
    position: fixed;   /* always fixed */
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    z-index: 100000;
    cursor: pointer;
    pointer-events: auto; /* clickable */
}
#menut1 .bart1 i{
    position: relative;
    top: 5px;
    right: 5px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* Hidden menu panel */
.bart2{
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 60%;
    background: rgba(0, 0, 0, 0.664);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    z-index: 99998;
}

/* Links */
.bart2 a{
    text-decoration: none;
    color: #ffffff;
        display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
      font-family: "Funnel Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 2rem;
  line-height: 1.5rem;
}

.bart2 i{
    position: absolute;
    padding: 5px 5px;
    font-size: 20px;
    top: 5%;
    right: 5%;
    cursor: pointer;
    border-radius: 50%;
    background-color: #fffbfb8e;
    z-index: 99999;
}


/* for laptop 1366 */
@media (max-width:1366px){

/* NAVBAR */
.navbar{
    padding:16px 5%;
}

.logo img{
    width:100px;
}

.logo h3{
    font-size:20px;
    margin-top:12px;
}

.nav-links{
    gap:26px;
    font-size:17px;
}

.nav-links a{
    font-size:17px;
}

/* HERO TEXT */
.hero-content{
    margin-top:70px;
    max-width:650px;
}

.hero-content h1{
    font-size:68px;
}

.hero-content p{
    font-size:1.25rem;
}

/* HERO IMAGE */
.hero-image{
    top:130px;
}

.hero-image img{
    width:280px;
}

/* BUTTONS */
.btn1,
.btn2{
    font-size:17px;
    padding:16px 24px;
}

.mic-icon{ width:17px; }
.guest-icon{ width:24px; }

/* SCROLL TEXT */
.scroll-wrapper h2{
    font-size:4.5rem;
}

/* STATS */
.stats-ticker{
    padding:120px 0;
}

.stats-track h2{
    font-size:1.6rem;
}

}



@media (max-width:1280px){

.hero-content h1{
    font-size:60px;
}

.hero-image img{
    width:250px;
}

.scroll-wrapper h2{
    font-size:3.8rem;
}

}




/* Responsive hero */
/* ================= MOBILE ================= */
@media (max-width:768px){

    #menut1{
        display: block;
    }

/* NAVBAR */
.navbar{
    padding:15px 5%;
}

.logo img{
    width:90px;
}

.logo h3{
    font-size:18px;
    margin-top:10px;
}

/* hide menu -> later hamburger */
.nav-links{
    display: none;
}

/* HERO */
.hero{
    height:100svh;
    
}

/* remove floating host image */
.hero-image{
    
}

.hero-image img{
    width:180px;
    border-radius:16px;
}

/* TEXT */
.hero-content{
    margin-top:0;
    max-width:100%;
}

.hero-content h1{
    font-size:42px;
    white-space:normal;
    line-height:1.1;
}

.hero-content p{
    font-size:1rem;
    padding:0 10px;
}

/* BUTTONS STACK */
.btn{
    flex-direction:column;
    gap:14px;
    width:100%;
}

.btn1, .btn2{
    width:100%;
    font-size:16px;
    padding:14px 18px;
    justify-content:center;
}

/* SCROLL BIG TEXT */
.scroll-text{
    bottom:90px;
}

.scroll-wrapper h2{
    font-size:3rem;
    -webkit-text-stroke:1px rgba(255,255,255,0.35);
}

/* STATS */
.stats-ticker{
    padding:70px 0 20px;
}

.stats-track{
    gap:40px;
}

.stats-track h2{
    font-size:1rem;
    margin-right:30px;
}
}

@media (max-width:480px){


.hero-image img{
    width:180px;
    border-radius:16px;
}

/* TEXT */
.hero-content{
    max-width:100%;
}

.hero-content h1{
    margin-top: 100px;
    font-size:34px;
    white-space:normal;
    line-height:1.1;
}

.hero-content p{
    font-size:0.9rem;
    padding:0 10px;
}

/* BUTTONS STACK */
.btn{
    flex-direction:column;
    gap:14px;
    width:100%;
}

.btn1, .btn2{
    width:100%;
    font-size:16px;
    padding:14px 18px;
    justify-content:center;
}
}








/* About-host */
#about {
  will-change: transform;
  transform: translateZ(0);
}

.about-host{
    background: #000;
    color: white;
    padding: 120px 10%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.host-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.host-left{
    flex: 1;
    margin-left: 100px;
}

.host-left h3{
    font-size: 2rem;
    font-family:"Playfair Display", sans-serif;
    font-weight: 700;

}

.host-left h2{
    font-size: 3.5rem;
    font-style: italic;
    color: #ffeb00;
    margin-bottom: 20px;
    font-family:"Playfair Display", sans-serif;
    font-weight: 700;
}

.divider{
    width: 40px;
    height: 3px;
    background: white;
    margin: 20px 0;
}

.host-left p{
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
  font-weight: 600;
  font-style: normal;
}

.host-link{
    display: inline-block;
    color: #ffeb00;
    text-decoration: none;
     font-size: 18px;
    border-bottom: 2px solid #ffeb00;
    padding-bottom: 3px;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
     font-family: "Clash Grotesk", sans-serif;
  font-weight: 600;
  font-style: normal;

    
}

.host-link:hover{
    transform: translateY(10px);
}

.host-right{
    flex: 1;
        position: relative;
        display: flex;
        overflow: hidden;
         perspective: 900px;
}

.host-right img{
    width: 500px;
    border-radius: 10px;
     display: block;
  transition: transform 0.15s ease-out;
    will-change: transform;

}



/* Dark overlay */
.card-overlay{
     position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.90), transparent 90%);

    display: flex;
    align-items: flex-end;
    justify-content: flex-start;   /* 👈 move to left */
    padding: 20px;
    
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Text */
.card-overlay h3{
    font-size: 3rem;
    font-weight: 600;
     font-family: "Clash Grotesk", sans-serif;
     color: white;
    letter-spacing: 1px;
    transform: translateY(30px);
    transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.host-right:hover img{
    transform: scale(1.08);
}

.host-right:hover .card-overlay{
    opacity: 1;
}

.host-right:hover .card-overlay h3{
    transform: translateY(0);
}


/* responsive about host */

@media (max-width:1366px){

.about-host{
    padding:90px 6%;
    min-height:100vh;
}

/* container spacing */
.host-container{
    gap:50px;
}

/* LEFT TEXT SIDE */
.host-left{
    margin-left:40px;
}

.host-left h3{
    font-size:1.6rem;
}

.host-left h2{
    font-size:2.8rem;
    margin-bottom:14px;
}

.host-left p{
    font-size:1.05rem;
    line-height:1.7;
}

/* link */
.host-link{
    font-size:16px;
}

/* RIGHT IMAGE */
.host-right img{
    width:380px;
    border-radius:10px;
}

/* overlay text */
.card-overlay h3{
    font-size:2.3rem;
}

/* divider */
.divider{
    margin:14px 0;
}

}




@media (max-width: 992px){

    .host-container{
        gap: 40px;
    }

    .host-left{
        margin-left: 0;
    }

    .host-left h2{
        font-size: 2.8rem;
    }

    .host-left p{
        font-size: 1.1rem;
    }

    .host-right img{
        width: 380px;
    }
}

@media (max-width: 768px){

    .about-host{
        padding: 80px 6%;
        min-height: auto;
    }

    .host-container{
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .host-left{
        margin-left: 0;
        order: 2; /* text below image */
    }

    .host-right{
        order: 1;
        justify-content: center;
    }

    .host-left h3{
        font-size: 1.5rem;
    }

    .host-left h2{
        font-size: 2.3rem;
    }

    .host-left p{
        font-size: 1rem;
        line-height: 1.7;
    }

    .divider{
        margin: 15px auto;
    }

    .host-link{
        font-size: 16px;
    }

    .host-right img{
        width: 280px;
    }

    .card-overlay h3{
        font-size: 2rem;
    }
}
@media (max-width: 480px){

    .about-host{
        padding: 70px 5%;
    }

    .host-left h2{
        font-size: 1.9rem;
    }

    .host-left p{
        font-size: 0.95rem;
    }

    .host-right img{
        width: 230px;
    }

    .card-overlay h3{
        font-size: 1.6rem;
    }
}


/* ===== SCROLL REVEAL ===== */

.reveal-left,
.reveal-right{
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* text slides from left */
.reveal-left{
    transform: translateX(-120px);
}

/* image pops up */
.reveal-right{
    transform: translateY(120px) scale(0.85);
}

/* when visible */
.show{
    opacity: 1;
    transform: translate(0,0) scale(1);
}


.banner{
    position: relative;
    width: 100%;
    height: 70vh;
        display: flex;
    justify-content: center;
    align-items: center;
     overflow: hidden;
     background: #ffffff;
}

/* .banner video{
    position: absolute;
    top: 0;
    left: 0;
        width: 100%;
    height: 100%;
    object-fit: cover;
} */

/* ===== background slider ===== */

.banner-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    z-index:0;
}

.bg-track{
    display:flex;
    height:100%;
    width:max-content;
    animation:bannerMove 35s linear infinite;
}

.bg-track img{
    height:100%;
    object-fit:cover;
    flex-shrink:0;
    filter:brightness(0.55);
}

/* REAL infinite loop */
@keyframes bannerMove{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}


.banner-logo{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
        margin-top: -550px;
    width: 80px;
    height: auto;
    z-index: 2;
    opacity: 0.9;
}

.banner h1{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e0dede;
    font-size: 15rem;
    color: #000000;
    mix-blend-mode: screen;
      font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;

     line-height: 1;
     display: flex;
     text-align:center;
    justify-content:center;
    align-items:center;
     z-index: 1;

}

.banner h3{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #414040;
    font-size: 3rem;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 250px;
        z-index: 1;
}




/* responsive for banner */


@media (max-width:1366px){

/* background track visible properly */
.bg-track{
    margin-top:0px;
}

/* LOGO POSITION */
.banner-logo{
    width:60px;
    margin-top:-420px;
}

/* MAIN NAME */
.banner h1{
    font-size:11rem;
    letter-spacing:2px;
}

/* PODCAST TEXT */
.banner h3{
    font-size:2.2rem;
    margin-top:200px;
}

/* reduce section height feel */
.banner{
    height:65vh;
}

}




@media (max-width:1024px){

.banner{
    height:60vh;
    text-align:center;
}

/* background visibility */
.bg-track{
    margin-top:0;
}

/* logo centered above text */
.banner-logo{
    width:55px;
    margin-top:-390px;
}

/* main title */
.banner h1{
    font-size:10rem;
    line-height:0.95;
    text-align:center;
    justify-content:center;
    align-items:center;
    
}

/* subtitle */
.banner h3{
    font-size:1.8rem;
    margin-top:180px;
    text-align:center;
}

}




@media (max-width: 768px){

    .banner{
        height: 55vh;
    }

    .banner h1{
        font-size: 8rem;   /* reduce big text */
        line-height: 0.9;
        text-align: center;
        padding: 0 10px;
    }
    .banner-logo{
        margin-top: -330px;
    }
    .banner h3{
        font-size: 2.2rem;
        margin-top: 170px;   /* adjust subtitle position */
        text-align: center;
        padding: 0 15px;
    }

}

@media (max-width: 480px){

    .banner{
        height: 50vh;
    }
    .banner-logo{
        margin-top: -250px;
    }
    .banner h1{
        font-size: 6.5rem;
    }

    .banner h3{
        font-size: 2rem;
        margin-top: 130px;
    }

}

@media (max-width: 400px){
      .banner{
        height: 50vh;
    }
    .banner-logo{
        margin-bottom: 20px;
    }
    .banner h1{
        font-size: 5rem;
    }

    .banner h3{
        font-size: 2rem;
        margin-top: 140px;
    }

}



.channel-slider{
    position: relative;
   height: 100vh;         
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 8%;
    overflow: hidden;
}

.channel-slider .titleleft{
    position: absolute;
    top: 180px;
    left: 8%;
    font-size: 7rem;
    color: #000000;
    font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.1;

}
/* LEFT */
.slider-left{
    width: 40%;
      white-space: nowrap;
}


/* text starts from RIGHT */
.text-enter{
    transform: translateX(80px);
    opacity: 0;
}

/* visible position */
.text-enter.active{
    transform: translateX(0);
    opacity: 1;
    transition: all 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}

/* leaving to LEFT */
.text-exit{
    transform: translateX(-80px);
    opacity: 0;
    transition: all 0.55s cubic-bezier(0.77, 0, 0.175, 1);
}



.slider-left h2{
    font-size: 7rem;
    margin-top: 600px;
      font-family: "Staatliches";
  font-weight: 500;
  font-style: normal;

}

.slider-left a{
    font-size: 1.4rem;
    display: inline-block;
    margin-top: 20px;
    padding: 10px 40px;
    color: #000000;
     font-family: "Funnel Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  
}

.slider-left p{
    font-size: 1.5rem;
    font-family: "Funnel Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.slider-left .slider-buttons{
    display: inline-flex;
    gap: 20px;
    margin-top: 30px;
}
.slider-left button{
    font-size: 1.2rem;
    margin-top: 20px;
    padding: 10px 40px;
    color: #000000;
    background: transparent;
    border: 1.5px solid #000000;
    cursor: pointer;
     font-family: "Funnel Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
 
}


.slider-left button:hover{
    background: #000000;
    color: #fff;
    transition: 0.3s;
  
}

#channelName{
    margin-bottom: 20px;
}
#channelDesc2{
    margin-top: 15px;
}

/* RIGHT IMAGE */
.slider-right{
    position: relative;
    width: 30%;
    display: flex;
    justify-content: center;
}

.slider-right img{
    position: absolute;
    display: flex;
    margin-top: -400px;
    width: 700px;
    object-fit: cover;
     transition: filter 0.4s ease, transform 0.4s ease;
         transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.6s;

}

.slider-right img:hover{
    filter: brightness(0.75);  
}



/* entering from right */
.slide-in{
    transform: translateX(100%);
    opacity: 0;
}

.slide-in.active{
    transform: translateX(0);
    opacity: 1;
    transition: all 0.6s ease;
}

.slide-out{
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.6s ease;
}



/* responsive Our channel */

@media (max-width:1366px){

.channel-slider{
    padding:60px 6%;
}

/* big title left */
.channel-slider .titleleft{
    font-size:5rem;
    top:140px;
}

/* LEFT SIDE */
.slider-left{
    width:45%;
}

/* main channel name */
.slider-left h2{
    font-size:5rem;
    margin-top:420px;
}

/* description */
.slider-left p{
    font-size:1.2rem;
}

.slider-left a{
    font-size:1.1rem;
}

.slider-left button{
    font-size:1rem;
    padding:8px 30px;
}

/* RIGHT IMAGE */
.slider-right{
    width:40%;
}

.slider-right img{
    width:650px;
    height: auto;
    margin-top:-385px;
}

/* animation text distance slightly reduced */
.text-enter{
    transform:translateX(60px);
}

.text-exit{
    transform:translateX(-60px);
}

}



@media (max-width:1024px){

.channel-slider{
    flex-direction:row;
    justify-content:flex-start;
    height:70vh;
    min-height:100vh;
    padding:20px 6% 80px;
    text-align:center;
}

/* top title */
.channel-slider .titleleft{
    position:static;
    font-size:4rem;
    margin-bottom:40px;
}

/* LEFT TEXT AREA */
.slider-left{
    width:100%;
    white-space:normal;
    order:1;
}

/* main name */
.slider-left h2{
    font-size:4rem;
    margin-top:0;
}

/* desc */
.slider-left p{
    margin-top: 50px;
    font-size:1.5rem;
}

.slider-left a{
    margin-top: 60px;
    font-size:1.2rem;
    display: block;
    white-space: nowrap;
}

.slider-left button{
    font-size:1rem;
    padding:8px 30px;
}

/* buttons center */
.slider-left .slider-buttons{
    justify-content:center;
}

/* IMAGE */
.slider-right{
    order:2;
    width:100%;
    margin-top:60px;
    height:550px;
}

.slider-right img{
    position:relative;
    margin:0;
    width:420px;
}

/* smoother animation distance */
.text-enter{ transform:translateY(30px); }
.text-exit{ transform:translateY(-30px); }

}


@media (max-width:768px){

.channel-slider{
    flex-direction:column;
    padding:20px 20px 60px;
}

/* heading */
.channel-slider .titleleft{
    font-size:2.8rem;
    line-height:1.2;
}

/* channel name */
.slider-left h2{
    font-size:2.6rem;
}

/* text */
.slider-left p{
     margin-top: 10px;
    font-size:1.2rem;
}

/* links */
.slider-left a{
    margin-top: 10px;
    font-size:1rem;
}

/* buttons */
.slider-left button{
    margin-top: -10px;
    font-size:0.95rem;
 
}

/* image container */
.slider-right{
    height:350px;
}

/* image */
.slider-right img{
    width:250px;
    object-fit: cover;
}

/* animations vertical feel more natural on mobile */
.slide-in{
    transform:translateY(60px);
}
.slide-in.active{
    transform:translateY(0);
}
.slide-out{
    transform:translateY(-60px);
}

}

@media (max-width:480px){
    .channel-slider{
    flex-direction:column;
    padding:20px 20px 60px;
}

/* heading */
.channel-slider .titleleft{
    font-size:2.4rem;
    line-height:1.2;
}

/* channel name */
.slider-left h2{
    margin-top: -25px;
    font-size:2.3rem;
}

/* text */
.slider-left p{
     margin-top: 10px;
    font-size:1rem;
}

/* links */
.slider-left a{
    margin-top: 10px;
    font-size:0.95rem;

}

/* buttons */
.slider-left button{
    margin-top: -10px;
    font-size:0.7rem;
 
}

/* image container */
.slider-right{
    margin-top: 100px;
}

/* image */
.slider-right img{
    width:350px;
    height: fit-content;
    object-fit: cover;
}

}


@media (max-width:400px){

/* image container */
.slider-right{
    margin-top: 10px;
}

/* image */
.slider-right img{
    width:250px;
    height: fit-content;
    object-fit: cover;
}

}



/* Find me */
.find-us{
    background:#000;
    color:#fff;
    text-align:center;
    padding:120px 8%;
}



/* Title */
.find-title{
    font-size:4rem;
    font-weight:600;
    font-family:"Clash Grotesk", sans-serif;
    margin-bottom:15px;
}

/* Yellow name highlight */
.find-title span{
    color:#ffeb00;
    font-style:italic;
    position:relative;
    font-family:"Clash Grotesk", sans-serif;
}

/* underline stroke */
.find-title span::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:90%;
    height:4px;
    background:#ffeb00;
    transform:scaleX(0);
    transform-origin:left;
    transition:0.5s ease;
}

.find-title:hover span::after{
    transform:scaleX(1);
}

/* subtitle */
.find-sub{
    color:#aaa;
    font-size:1.2rem;
    max-width:600px;
    margin:0 auto 50px auto;
        font-family:"Clash Grotesk", sans-serif;
        font-weight: 500;
        white-space: nowrap;

}

/* buttons layout */
.social-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}


.social-btn{
    display:flex;
    align-items:center;
    gap:12px;

    padding:14px 30px;
    border:1.5px solid #fff;
    color:#fff;
    text-decoration:none;
    border-radius:8px;

    background:transparent;
    position:relative;
    overflow:hidden;

    transition:0.35s ease;
    font-family:"Clash Grotesk", sans-serif;
        font-weight:500;
        font-size: 1.1rem;

}




.social-btn::before{
    content:"";
    position:absolute;
    inset:0;
    background:#fff;

    transform:translateX(-100%);
    transition:transform 0.35s cubic-bezier(.77,0,.18,1);
    z-index:0;
}

.social-btn:hover::before{
    transform:translateX(0);
}
.social-btn span{
    position:relative;
    z-index:1;
}

.social-btn:hover{
    color:#000;

}
.social-btn img{
    width:20px;
    height:20px;
    filter:invert(1);
    position:relative;
    z-index:1;
    transition:0.35s ease;
}

/* on hover icon becomes black */
.social-btn:hover img{
    filter:invert(0);
}

/* icon size */
.social-btn img{
    width:20px;
    height:20px;
    filter:invert(1);
    transition:0.4s;
}

.social-btn:hover img{
    filter:invert(0);
}

@media(max-width:768px){

.find-title{
    font-size:2.3rem;
}

.find-sub{
    font-size:1rem;
}

.social-btn{
    width:100%;
    justify-content:center;
}

.social-buttons{
    gap:12px;
}

}




/* ================= TEAM SECTION ================= */

.team{
    position: relative;
    height: 100vh;
    width: 100%;
    background: #ffffff;
    overflow: hidden;
    display: flex;
}

.team-header{
    position: absolute;
    top: 60px;
    left: 120px;
    color: rgb(255, 255, 255);
    
    font-size: 70px;
    line-height: 1;
    z-index: 5;
    font-family: Poppins, sans-serif;
      font-weight: 500;

}
/* slider wrapper */
.team-slider{
    width: 100%;
    height: 100%;
    position: relative;
}

/* each slide */
.team-slide{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.team-slide.active{
    opacity: 1;
    z-index: 2;
}


/* ================= GRID LAYOUT ================= */

.team-grid{
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 18px;
    padding: 18px;
}

.card{
      position: relative;
    overflow: hidden;
    background: #000;
    isolation: isolate;
    cursor: pointer;   /* ⭐ fixes stacking issues */
}

/* image */
.card img{
       position: absolute;      /* not relative */
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;              /* ALWAYS bottom */
    transition: transform 0.6s ease, filter 0.4s ease;
object-position: top;   
}



/* big card (left)
.card.big{
    grid-row: span 1;
} */



/* hover zoom */
.card:hover img{
    transform: scale(1.06);
    filter: brightness(0.75);
}

/* ================= TEXT OVER IMAGE ================= */

/* dark gradient bottom */
/* ---------- OVERLAY GRADIENT ---------- */
.card::before{
     content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.85), transparent 65%);
    opacity:0;
    transition:opacity 0.45s ease;
    z-index:1;
    pointer-events:none;
}


/* ---------- TEXT ---------- */
.info{
     position:absolute;
    bottom:30px;
    left:50%;
    transform:translate(-50%, 50px);   /* center + hidden down */

    text-align:center;
    color:white;
    z-index:3;
    opacity:0;

    transition:all 0.45s cubic-bezier(0.77,0,0.175,1);
    pointer-events:none;
}
/* title */
.info h3{
    font-size:70px;
         font-family: "Funnel Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
    width: min-content;     /* text jitna space lega utna hi box */
    margin: 0 auto; 
}

/* role */
.info p{
    font-size:25px;
    opacity:0.85;
        font-family: "Funnel Sans", sans-serif;
        font-weight: 400;
}

/* ---------- HOVER EFFECT ---------- */
.card:hover::before{
    opacity:1;
}

.card:hover img{
    transform:scale(1.07);
    filter:brightness(0.7);
}


   .card:hover .info{
    transform:translate(-50%, 0);
    opacity:1;
}



/* ================= TITLE ================= */

.team-title{
    position: absolute;
    top: 60px;
    left: 60px;
    color: white;
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    z-index: 5;
}

/* wrapper should not control layout */
.team-arrows{
    position: static;
}

/* both buttons common style */
#teamPrev,
#teamNext{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 80px;
    height: 80px;
   
    border: none;

    background: rgba(255,255,255);
    color: black;
    font-size: 50px;
    cursor: pointer;

    z-index: 20;
    transition: all 0.25s ease;
}

/* LEFT SIDE */
#teamPrev{
    left: 5px;
}

/* RIGHT SIDE */
#teamNext{
    right: 5px;
}

/* hover effect */
#teamPrev:hover,
#teamNext:hover{
    background: #cfcfcc;
    transform: translateY(-50%) scale(1.1);
}

/* ================= RESPONSIVE ================= */




@media (max-width:1366px){

.team-header{
    font-size:52px;
    top:40px;
    left:60px;
}

.team-grid{
    grid-template-columns: 1fr 1fr;
    gap:14px;
    padding:14px;
}

.info h3{
    font-size:48px;
}

.info p{
    font-size:18px;
}

#teamPrev,
#teamNext{
    width:60px;
    height:60px;
    font-size:36px;
}

}


@media (max-width:1024px){

.team{
    height: 85vh; /* not auto, keep cinematic */
}

/* header smaller */
.team-header{
    font-size:44px;
    top:40px;
    left:40px;
}

/* KEEP SAME GRID */
.team-grid{
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap:12px;
    padding:12px;
}

/* text scale */
.info{
    bottom:20px;
}

.info h3{
    font-size:42px;
}

.info p{
    font-size:18px;
}

/* arrows proportionate */
#teamPrev,
#teamNext{
    width:40px;
    height:40px;
    font-size:25px;
}

/* image zoom less aggressive */
.card:hover img{
    transform:scale(1.05);
}

}

@media (max-width:768px){
    .team-header{
        font-size: 30px;
    }
    .info{
    bottom:20px;
}

.info h3{
    font-size:32px;
}

.info p{
    font-size:10px;
}
}






/* Thummnail */

.video-marquee{
    background:#000;
    padding:60px 0;
    overflow:hidden;
}

.marquee-title{
    color:#fff;
    font-size:2.5rem;
    margin-bottom:30px;
    text-align:center;
    font-weight:600;
    font-family: "Clash Grotesk", sans-serif;
}

/* viewport */
.marquee{
    width:100%;
    overflow:hidden;
}

/* moving track */
.marquee-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scroll 35s linear infinite;
}

/* thumbnails */
.marquee-track img{
    height:200px;
    border-radius:12px;
    cursor:pointer;
    transition:transform .35s ease, filter .35s ease;
}

/* hover pause + zoom */
.marquee-track img:hover{
    transform:scale(1.08);
    filter:brightness(1.2);
}
.marquee:hover .marquee-track{
    animation-play-state: paused;
}

/* animation */
@keyframes scroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}


@media(max-width:768px){
    .marquee-track img{
        height:110px;
    }
}





/* Contact SECTION */
.guest-contact{
    background:#000;
    padding:120px 8%;
    display:flex;
    justify-content:center;
}

/* CARD */
.guest-card{
    width:100%;
    max-width:1100px;
    background:#0c0c0c;
    border-radius:20px;
    padding:60px;
    display:flex;
    gap:60px;

    position:relative;
    z-index:1;
    overflow:hidden;
    
    font-family: "Clash Grotesk", sans-serif;
}


/* WRAPPER HOLDS GLOW */
.guest-card-wrap{
    position:relative;
    border-radius:26px;
}

/* OUTER GRADIENT GLOW */
.guest-card-wrap::before{
    content:"";
    position:absolute;
    inset:-8px;
    border-radius:30px;

    background:linear-gradient(
        120deg,
        #ffeb00,
        #ffffff,
        #ffeb00,
        #ffffff,
        #ffeb00
    );

    filter:blur(25px);
    opacity:0;
    transition:opacity .35s ease;
    z-index:0;
}

/* SHOW GLOW */
.guest-card-wrap:hover::before{
    opacity:0.2;
}



/* hover ON */
.guest-card:hover::before{
    opacity:0.8;
    filter:blur(18px);
}


/* moving light sweep */
.guest-card .shine{
    position:absolute;
    top:0;
    left:-150%;
    width:50%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.15),
        transparent
    );
    transform:skewX(-25deg);
}

/* animate on hover */
.guest-card:hover .shine{
    animation:shineMove 1.4s ease;
}

@keyframes shineMove{
    0%{ left:-150%; }
    100%{ left:150%; }
}




/* LEFT SIDE */
.guest-left{
    flex:1;
    color:white;
}

.guest-left h2{
    font-size:3rem;
    margin-bottom:20px;
}

.guest-left h2 span{
    color:#ffeb00;
    font-style:italic;
    
}


.guest-left p{
    color:#bfbfbf;
    line-height:1.7;
    margin-bottom:30px;
    font-family: "Clash Grotesk", sans-serif;
     font-weight: 400;
     font-size: 20px;
}

.guest-icons{
    display:flex;
    gap:25px;
    color:#aaa;
    font-size: 35px;
     font-family: "Hind", sans-serif;
  font-weight: 500;
  font-style: normal;

}

/* FORM */
.guest-form{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:18px;
    font-family: "Funnel Sans", sans-serif;
}

.guest-form input,
.guest-form textarea{
    background:transparent;
    border:none;
    border-bottom:1px solid #444;
    padding:14px 5px;
    color:white;
    font-size: 20px;
    outline:none;
    font-family: "Clash Grotesk", sans-serif;
     font-weight: 400;
}

.guest-form textarea{
    min-height:100px;
    resize:none;
    
}

/* MAIN BUTTON */
.guest-btn{
    background:#ffeb00;
    border:none;
    padding:14px;
    cursor:pointer;
    border-radius:6px;
    margin-top:10px;
    transition:0.25s;
            font-family: "Funnel Sans", sans-serif;
     font-weight: 500;
     font-size: 20px;
}

.guest-btn:hover{
    background:#fff200;
    transform:translateY(-2px);
}

/* WHATSAPP BUTTON */
.wa-btn{
    text-align:center;
    border:1px solid #25D366;
    color:#25D366;
    padding:12px;
    border-radius:6px;
    text-decoration:none;
    transition:0.25s;
    font-family: "Funnel Sans", sans-serif;
     font-weight: 500;
     font-size: 20px;
}

.wa-btn:hover{
    background:#25D366;
    color:black;
}

/* Contact Responsive */
@media (max-width:1366px){

.guest-contact{
    padding:100px 6%;
}

.guest-card{
    max-width:1000px;
    padding:50px;
    gap:40px;
}

.guest-left h2{
    font-size:2.6rem;
}

.guest-left p{
    font-size:18px;
}

.guest-icons{
    font-size:28px;
}

.guest-form input,
.guest-form textarea{
    font-size:18px;
}

.guest-btn,
.wa-btn{
    font-size:18px;
}

}

@media (max-width:1024px){

.guest-card{
    flex-direction:column;
    padding:50px 40px;
    gap:40px;
}

.guest-left{
    text-align:center;
}

.guest-left h2{
    font-size:2.4rem;
}

.guest-left p{
    font-size:17px;
}

.guest-icons{
    justify-content:center;
    font-size:26px;
}

.guest-form{
    width:100%;
}

.guest-form input,
.guest-form textarea{
    font-size:17px;
}

}

@media (max-width:768px){

.guest-contact{
    padding:80px 5%;
}

.guest-card{
    padding:35px 25px;
    border-radius:16px;
}

.guest-left h2{
    font-size:2rem;
}

.guest-left p{
    font-size:15px;
}

.guest-icons{
    font-size:22px;
    gap:18px;
}

.guest-form{
    gap:15px;
}

.guest-form input,
.guest-form textarea{
    font-size:15px;
    padding:12px 4px;
}

.guest-btn,
.wa-btn{
    font-size:16px;
    padding:12px;
}

}

@media (max-width:480px){

.guest-left h2{
    font-size:1.7rem;
}

.guest-left p{
    font-size:14px;
}

.guest-form input,
.guest-form textarea{
    font-size:14px;
}

.guest-btn,
.wa-btn{
    font-size:14px;
}

}



/* Footer Section */

.footer{
    background:#0a0a0a;
    color:#ddd;
    padding:90px 8% 40px;
          font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    gap:80px;
    flex-wrap:wrap;

}

/* BRAND */
.footer-brand h2{
    font-size:70px;
    color:#fff;
    margin-bottom:15px;
      font-weight: 700;

}

.footer-brand p{
    max-width:320px;
    color:#aaa;
    line-height:1.6;
    margin-bottom:20px;
      font-weight: 600;
      font-size: 20px;

}

.footer-mail{
    color:#ffeb00;
    text-decoration:none;
    border-bottom:1px solid transparent;
    transition:.25s;
      font-weight: 700;
      font-size: 25px;

}

.footer-mail:hover{
    border-bottom:1px solid #ffeb00;
}

/* LINKS */
.footer-links,
.footer-social{
    display:flex;
    flex-direction:column;
    gap:12px;
      font-weight: 700;
      font-size: 30px;;

}

.footer-links h4,
.footer-social h4{
    color:#fff;
    margin-bottom:10px;
    font-size:50px;
      font-weight: 800;

}

.footer a{
    color:#aaa;
    text-decoration:none;
    transition:.25s;
}

.footer a:hover{
    color:#fff;
    transform:translateX(4px);
}

/* bottom */
.footer-bottom{
    border-top:1px solid #222;
    margin-top:60px;
    padding-top:20px;
    text-align:center;
    font-size:.9rem;
    color:#666;
      font-weight: 700;
      font-size: 18px;

}

.gotop{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s ease, transform 0.3s ease;
}
.gotop:hover {
    transform: translateY(-5px);
}
.topgo{
    display: flex;
    margin-top: 30px;
        color: #494949;
        font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 50px;
  cursor: pointer;
}


/* Responsive footer */


@media (max-width:1366px){

.footer{
    padding:70px 6% 35px;
}

.footer-brand h2{
    font-size:55px;
}

.footer-brand p{
    font-size:18px;
}

.footer-mail{
    font-size:20px;
}

.footer-links h4,
.footer-social h4{
    font-size:36px;
}

.footer-links,
.footer-social{
    font-size:22px;
}

.footer-bottom{
    font-size:16px;
}

}

@media (max-width:1024px){

.footer-top{
    flex-direction:row;
    gap:50px;
}

.footer-brand h2{
    font-size:48px;
}

.footer-brand p{
    max-width:100%;
    font-size:17px;
}

.footer-links h4,
.footer-social h4{
    font-size:30px;
}

.footer-links,
.footer-social{
    font-size:20px;
}

.footer-mail{
    font-size:18px;
}

}

@media (max-width:768px){

.footer{
   
    padding:60px 5% 30px;
    text-align:center;
}

.footer-top{
     flex-direction: column;
    gap:40px;
}

.footer-brand h2{
    font-size:40px;
}
.topgo{
    font-size: 30px;
    justify-content: center;
    text-align: center;
}
.footer-brand p{
    font-size:15px;
}

.footer-mail{
    font-size:16px;
}

.footer-links h4,
.footer-social h4{
    font-size:25px;
    text-decoration: underline;
}

.footer-links,
.footer-social{
    align-items:center;
    font-size:18px;
}

.footer-bottom{
    font-size:14px;
}

}

@media (max-width:480px){

.footer-brand h2{
    font-size:28px;
}

.footer-brand p{
    font-size:14px;
}

.footer-links h4,
.footer-social h4{
    font-size:20px;
}

.footer-links,
.footer-social{
    font-size:16px;
}

.footer-mail{
    font-size:15px;
}

}

/* BACKDROP */
.form-status{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(6px);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    pointer-events:none;
    transition:0.35s ease;
    z-index:9999;
}

/* SHOW */
.form-status.show{
    opacity:1;
    pointer-events:auto;
}

/* BOX */
.status-box{
    background:#0e0e0e;
    border-radius:18px;
    padding:40px 50px;
    text-align:center;
    color:white;
    transform:translateY(40px) scale(.95);
    transition:0.45s cubic-bezier(.77,0,.175,1);
    box-shadow:0 25px 60px rgba(0,0,0,.6);
}

.form-status.show .status-box{
    transform:translateY(0) scale(1);
}

/* ICON */
.status-icon{
    width:70px;
    height:70px;
    background:#ffeb00;
    color:black;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin:0 auto 18px;
    font-weight:700;
}

/* TEXT */
.status-box h3{
    margin:10px 0 5px;
    font-size:24px;
}

.status-box p{
    color:#bfbfbf;
    font-size:15px;
}



/* Cursor */

.cursorv1{
    width: 20px;
    height: 20px;
    background: #ffeb00;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
}
@media(max-width:768px){
    .cursorv1{
        display: none;
    }
}   
