
/* Developed By : Raushan Kumar 
  Starting Date : 2026-january-07
  Last updated : 2026-may-19
  version : 1.0.0
Description : This CSS file is used to style the Indyo.in website. */


:root {
    --gradient-1: linear-gradient(135deg, #ff0000 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #ff0000 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #ff0000 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #ff0000 0%, #38f9d7 100%);
    --gradient-5: linear-gradient(135deg, #ff0000 0%, #fee140 100%);
    --neon-glow: rgb(255, 0, 0);
    --card-glow: rgb(255, 0, 0);
} 


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: 'Poppins', sans-serif;
    background: black;
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}
/*  Floating Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
        /* radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 0, 0.25) 1px, transparent 1px),
        radial-gradient(circle at 40% 90%, rgba(79,172,254,0.2) 1px, transparent 1px),
        radial-gradient(circle at 90% 20%, rgba(255,149,0,0.2) 1px, transparent 1px); */
    background-repeat: repeat;
    background-size: 120px 120px, 160px 160px, 200px 200px, 180px 180px;
    animation: floatParticles 20s linear infinite;
    z-index: -1;
    opacity: 0.6;
}

/* @keyframes floatParticles {
    0% { transform: translateY(0px) rotate(0deg) scale(1); }
    33% { transform: translateY(-15px) rotate(120deg) scale(1.1); }
    66% { transform: translateY(-30px) rotate(240deg) scale(0.9); }
    100% { transform: translateY(0px) rotate(360deg) scale(1); }
}
 */


/* Footer */
footer {
    color: #555;
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
}

/* ══ TRENDING ROW ══════════════════════════════════ */
.trend-101 {
  position: relative;
  padding: 0 50px;
  overflow: visible;
  position: relative;
  
}

.scroll {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 40px 4% 70px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.scroll::-webkit-scrollbar { display: none; }




/* ══ BOX ═══════════════════════════════════════════ */
.box {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    margin 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    z-index 0s 0.3s;
}

.box:hover {
  transform: scale(1.1) !important;
  z-index: 100;
  margin: 0 55px;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    margin 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    z-index 0s;
}

.box:hover ~ .box {
  transform: translateX(40px);
}

.box.push-left {
  transform: translateX(-40px);
}

.box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: filter 0.4s, border-radius 0.3s;
}

.box:hover img {
  filter: brightness(0.35);
  border-radius: 4px 4px 0 0;
}

/* ══ BOX-INFO  */
.box-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: #181818;
  padding: 12px;
  border-radius: 0 0 4px 4px;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease 0.12s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.95);
}

.box:hover .box-info {
  transform: translateY(0);
  opacity: 1;
}

.box-info .match {
  color: #46d369;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 4px;
}

.box-info h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.box-info .btns {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 5px;
}

.btn-play {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.btn-more {
  background: rgba(109,109,110,0.7);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-tags {
  color: rgba(255,255,255,0.45);
  font-size: 9px;
}


/*  TITLES */
.trending-img, .title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 4% 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
 
}

.title {
  font-family: 'Segoe UI', sans-serif;
  font-size: 30px;
  padding: 20px 4% 20px 70px;
  margin-top: 35px;
  margin-bottom: 40px;
  justify-content: center;
}
.titles {
  width: 60px;
  height: 40px;
  object-fit: contain;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 10px;
}


/* ══ SLIDER ════════════════════════════════════════ */
.slider { position: relative; }

.row-2 { position: relative; }

.track {
  display: flex;
  gap: 4px;
  align-items: center;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  scroll-behavior: smooth;
  padding: 40px 4% 70px;
}

.track::-webkit-scrollbar { display: none; }

/* ══ ARROWS ════════════════════════════════════════ */
.arrow {
  position: absolute;
  top: 0; bottom: 0;
  width: 3%;
  min-width: 40px;
  background: rgb(0, 0, 0);
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  height: 100%;
 
}
.arrow{
  opacity: 5 !important;
  visibility: visible !important;
  display: flex !important;
}
.row-2:hover .arrow { opacity: 1; }
.arrow:hover {
  background: rgb(0, 0, 0); 
}
.left-arrow  {
  left: 0;  border-radius: 50px; 
  height: 100%;

  }
.right-arrow { 
  right: 0; 
  border-radius: 50px;
  
   height: 100%;
}






/* STATES CARDS */
.item {
  text-decoration: none;
  flex-shrink: 0;
}

.card {
  width: 150px;
  height: 200px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  z-index: 1;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    z-index 0s 0.3s;
  transform-origin: center center;
}

.card:hover {
  transform: scale(1.3);
  border-radius: 10px;
  z-index: 100;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    z-index 0s;
}

.item:first-child .card:hover,
.item:nth-child(2) .card:hover {
  transform-origin: left center;
  transform: scale(1.3);
}

.item:last-child .card:hover,
.item:nth-last-child(2) .card:hover {
  transform-origin: right center;
  transform: scale(1.3);
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s, transform 0.4s;
}

.card:hover .image {
  filter: brightness(0.70);
  transform: scale(1.08);
}

.info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(transparent 20%, rgba(0,0,0,0.95));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .info { opacity: 1; }

.info h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 3px;
}

.info p {
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  margin: 0 0 8px;
}

.info::after {
  content: '▶  Explore';
  display: inline-block;
  background: #fff;
  color: #2600ff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 3px;
  width: fit-content;
}


/* ══ POPUP ══════════════════════════════════════════ */
.card-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.card-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.card-popup {
  width: 500px;
  max-width: 92%;
  background: #181818;
  border-radius: 8px;
  overflow: hidden;
  transform: scale(0.85) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
  max-height: 88vh;
  overflow-y: auto;
  scrollbar-width: none;
}

.card-overlay.open .card-popup {
  transform: scale(1) translateY(0);
}

.card-popup::-webkit-scrollbar { display: none; }

.card-popup-banner {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.btn-close-popup {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.65);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.card-popup { position: relative; }

.card-popup-info {
  padding: 20px 24px 28px;
}

.card-popup-info h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  font-family: 'Segoe UI', sans-serif;
}

.card-popup-info p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.btn-detail {
  display: block;
  width: 100%;
  background: #e50914;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 13px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.btn-detail:hover { background: #f40612; }





/* ══ BOX — puri image dikhe ═══════════════════════ */
.box {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    margin 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    z-index 0s 0.3s;
    
}

.box:hover {
  transform: scale(1.7) !important;
  z-index: 100;
  margin: 0 55px;
  overflow: visible;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    margin 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    z-index 0s;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: filter 0.4s, border-radius 0.3s;
}

.box:hover img {
  filter: brightness(0.35);
  border-radius: 4px 4px 0 0;
}

/* ══ BOX-INFO — border nahi, font badhiya ══════════ */
.box-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: #181818;
  padding: 12px;
  border-radius: 0 0 4px 4px;
  border: none !important;
  outline: none !important;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease 0.12s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.95);
}

.box:hover .box-info {
  transform: translateY(0);
  opacity: 1;
}

.box-info h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  font-family: 'Georgia', serif;
}

.match {
  color: #46d369;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 4px;
}

/* ══ POPUP — scroll off, cross button ══════════════ */
.card-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.card-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.card-popup {
  width: 500px;

  max-width: 80%;
  background: #18181845;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transform: scale(0.85) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
  max-height: 88vh;
  overflow-y: auto;
  scrollbar-width: none;
}

.card-overlay.open .card-popup {
  transform: scale(1) translateY(0);
}

.card-popup::-webkit-scrollbar { display: none; }

.card-popup-banner {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* Cross button */
.btn-close-popup {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(20,20,20,0.85);
  border: 2px solid rgba(255,255,255,0.3);
  color: #ffffff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.2s;
}

.btn-close-popup:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.card-popup-info {
  padding: 20px 24px 28px;
}

.card-popup-info h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  font-family:'Segoe UI',  sans-serif;
}

.card-popup-info p {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 20px;
}

.btn-detail {
  display: block;
  width: 100%;
  background: #4f4f4f;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  padding: 13px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}

.btn-detail:hover { background: #ffffff;color: rgb(0, 0, 0); }


.trending-img {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  padding: 10px 4% 0px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family:'Segoe UI', Tahoma, Verdana, sans-serif;
  margin-top: 60px;
  padding-left: 70px;
  padding-bottom: 60px;
  justify-content: center;
  
}

.trending-img img {
  width: 70px;
  height: 100px;
  object-fit: contain;

  
}
/* BOX  */
.box {
  position: relative;
  flex-shrink: 0;
  width: 250px;
  height: 400px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    margin 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    z-index 0s 0.3s;
}

.box:hover {
  transform: scale(1.1) !important;
  z-index: 100;
  margin: 0 0px;
  overflow: visible;
  transition:
    transform 0.9s cubic-bezier(0.25, 1, 0.5, 1),
    margin 0.1s cubic-bezier(0.25, 1, 0.5, 1),
    z-index 0s;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: transform 0.4s ease;
}

/* Blur nahi — sirf zoom */
.box:hover img {
  transform: scale(1.0);
  filter: none;
}

/* ══ BOX-INFO — image ke upar aaye */
.box-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;

  background: 
    transparent;
  border-radius: 0 0 6px 6px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.35s ease 0.1s;
  box-shadow: none;
}

.box:hover .box-info {
  transform: translateY(0);
  opacity: 1;
}

.box-info .match {
  color: #46d369;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 3px;
  letter-spacing: 0.05em;
}

.box-info h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family:'Segoe UI',  Verdana, sans-serif;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

.box-info .btns {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 5px;
}

.btn-play {
  background: #ffffff00;
  color: #000;
  border: none;
  border-radius: 3px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.btn-more {
  background: rgba(109,109,110,0.5);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-tags {
  color: rgba(255,255,255,0.55);
  font-size: 9px;
  letter-spacing: 0.03em;
}

@media (max-width: 600px){    .trending-img{        
  font-size: 22px;       
   line-height: 1.1;        gap: 10px;        
  padding: 18px 5% 15px;   
   margin-right: 20px;    justify-content: center;        text-align: center;  
  margin-top: -200px;
  } 

.trending-img img{        width: 52px;        height: 52px;        object-fit: contain;        flex-shrink: 0;    }}

@media (max-width: 600px){

    .title{

        font-size: 25px;

        line-height: 1.1;

        gap: 10px;

        padding: 10px 5% 10px;

        margin-right: 20px;

        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;
    }

    .title img{

        width: 38px;
        height: 38px;

        object-fit: contain;

        flex-shrink: 0;
    }
  .card {
  width: 120px;
  height: 180px;}
}

/*  HIGHLIGHTS */

.highlight{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 120px 30px 0 80px;
  scrollbar-width: none;
  justify-content: center;
}

.highlight::-webkit-scrollbar{
  display: none;
}


/* Item */

.highlight-item{

  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}


/* Gradient Ring */

.highlight-ring{

    width: 100px;
    height: 100px;

    padding: 3px;

    border-radius: 50%;

    background: linear-gradient(
        45deg,
        #ffc800,
        #ee2a7b,
        #6228d7
    );

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Image */

.highlight-ring img{

    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    border: 3px solid #000;
}


/* Text */

.highlight-item span{

    color: #fff;

    font-size: 13px;
    font-weight: 500;

    white-space: nowrap;
}


/* Mobile */

@media (max-width: 600px){

    .highlight{
        gap: 14px;
        padding: 110px 14px;
    }

    .highlight-ring{

        width: 120px;
        height: 120px;
    }

    .highlight-item span{
        font-size: 12px;
    }
 
  .trending-img{
    margin-top: -70px;
  }
}






/* ── HERO BANNER (JioHotstar style) ── */
.hero {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.6s ease;
}

/* Dark gradient overlay — left side dark, right visible */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 45%, transparent 75%),
    linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 40%);
  z-index: 1;
}

/* Left content */
.hero-content {
  position: absolute;
  bottom: 18%;
  left: 4%;
  z-index: 2;
  max-width: 420px;
}

.hero-title {
  font-family: 'Syne', 'Segoe UI', sans-serif;
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* Tags like "HIGHLIGHTS | ELIMINATOR" */
.hero-tags {
  display: flex;
  gap: 0;
  margin-bottom: 12px;
}
.hero-tags span {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  letter-spacing: 0.8px;
}
.hero-tags span:first-child {
  border-radius: 3px 0 0 3px;
}
.hero-tags span:last-child {
  border-radius: 0 3px 3px 0;
  border-left: none;
}

.hero-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.hero-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 360px;
}

/* Watch Now / Explore button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(90deg, #1a6bff, #d63af9);
  color: #fff;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}
.hero-btn:hover { opacity: 0.88; color: #fff; }
.hero-btn i { font-size: 13px; }

/* Bottom-right thumbnails */
.hero-thumbs {
  position: absolute;
  bottom: 6%;
  right: 2%;
  z-index: 2;
  display: flex;
  gap: 6px;
  align-items: center;
}

.hero-thumb {
  width: 100px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.25s, border-color 0.25s;
  flex-shrink: 0;
}
.hero-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-thumb.active,
.hero-thumb:hover {
  opacity: 1;
  border-color: #fff;
}

/* Mobile */
@media (max-width: 600px) {
  .hero { height: 70vh; min-height: 420px; }
  .hero-content { bottom: 22%; left: 5%; right: 5%; max-width: 100%; }
  .hero-title { font-size: 22px; }
  .hero-desc { display: none; }
  .hero-thumbs { display: none; }
}

.hero {
  position: relative;
  width: 94%;
  margin: 0 auto 30px;
  height: 85vh;
  min-height: 500px;
  overflow: hidden;
  background: #000;
  border-radius: 20px;
  /* Charo taraf glowing transparent border */
  border: 1.8px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 60px rgba(0,0,0,0.4),
    0 30px 80px rgba(0,0,0,0.6);
  /* 3D scroll ke liye */
  transform-origin: top center;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: transform 0.1s linear, opacity 0.1s linear;
}

.hero-content {
  position: absolute;
  bottom: 18%;
  left: 5%;
  z-index: 2;
  max-width: 420px;
  /* Content thoda niche */
  transform: translateY(40px);
}
.hero {
  margin-top: 50px; 
}


/* ── Hero mobile height fix ── */
@media (max-width: 600px) {
  .hero {
    height: 55vh;
    min-height: 340px;
    width: 90%;
    border-radius: 14px;
    margin-top: -15px;
    margin-bottom: 100px;
  }
}

/* ── Hero desktop ── */
@media (min-width: 601px) {
  .hero {
    width: 90%;
    margin-top: 70px;
    
  }
}


/* ── Scroll + Track bhi same width mein rahe ── */
.scroll, .track {
  padding-left: 0;
  padding-right: 0;
}
.hero{
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
  transition:
    transform 0.08s linear,
    opacity 0.15s linear,
    filter 0.15s linear,
    box-shadow 0.15s linear;
}
/* Mobile pe thumbs dikhao — chhote size mein */
@media (max-width: 600px) {
  .hero-thumbs {
    display: flex !important;
    bottom: 3%;
    right: 50%;
    transform: translateX(50%);
    gap: 5px;
  }
  .hero-thumb {
    width: 52px;
    height: 34px;
    border-radius: 5px;
  }
}

/* Neeche wali extra image hatao */
.hero-bg ~ img,
.hero > img:not(.hero-bg img) {
  display: none !important;
}
.hero {
  transform: none !important;
  transform-style: flat !important;
}
@media (max-width: 600px) {
  .hero-content {
    bottom: 32%;
  }
}



/* Large hero image/video */
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.6s ease;
}

/* Thumbnail video */
.hero-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


* { box-sizing: border-box; }

.trend-101 {
  width: 90%;
  margin: 32px auto;
}

.city-101 {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 2px 20px;
  scroll-snap-type: x proximity;
}

.city-card {
  flex: 0 0 390px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid #282d34;
  border-radius: 12px;
  background: #0d1116;
  cursor: pointer;
  transition: transform .15s ease;
}

.city-card:active {
  transform: scale(.975);
}

.city-card__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 12px 16px;
}

.city-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.city-card__author img {
  width: 42px;
  height: 42px;
  padding: 3px;
  border: 2px solid #ffba08;
  border-radius: 50%;
  outline: 2px solid #f72585;
  object-fit: cover;
  background: #fff;
}

.city-card h4,
.city-card p {
  margin: 0;
  color: #fff;
}

.city-card h4 {
  font: 700 17px Arial, sans-serif;
}

.city-card p {
  max-width: 245px;
  margin-top: 4px;
  overflow: hidden;
  color: #a9afb8;
  font: 12px Arial, sans-serif;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.card-menu,
.action-btn {
  border: 0;
  background: transparent;
  color: #f4f5f6;
  cursor: pointer;
}

.card-menu {
  padding: 6px;
  font-size: 0;
}

.card-menu::after {
  content: "•••";
  font-size: 20px;
  letter-spacing: 3px;
}

.card-menu__options {
  position: absolute;
  z-index: 5;
  top: 56px;
  right: 10px;
  display: none;
  width: 155px;
  padding: 5px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, .3);
}

.card-menu__options.is-open {
  display: grid;
}

.card-menu__options button {
  padding: 9px 10px;
  border: 0;
  border-radius: 5px;
  background: #fff;
  color: #333;
  text-align: left;
  cursor: pointer;
}

.city-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.city-card__footer {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 0 15px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 7px;
  font: 700 16px Arial, sans-serif;
}

.action-btn svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.action-count {
  display: none;
}

.action-count.show {
  display: inline;
}

.like-btn.liked,
.city-card__bookmark.saved {
  color: #ff3040;
}

.like-btn.liked svg,
.city-card__bookmark.saved svg {
  fill: currentColor;
}

.city-card__bookmark {
  margin-left: auto;
}

@media (max-width: 700px) {
  .trend-101 {
    width: 80%;
  }

  .city-101 {
    flex-direction: column;
    align-items: center;
    overflow: visible;
  }

  .city-card {
    width: 100%;
    flex-basis: auto;
  }
}
.city-card__caption {
  min-height: 86px;
  padding: 13px 16px 11px;
  color: #c9cdd2;
  font: 14px/1.45 Arial, sans-serif;
}

.city-card__caption strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
}
.city-card {
  height: auto !important;
  min-height: 0 !important;
}

.city-card__caption {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 12px 16px !important;
}

.city-card__footer {
  min-height: 66px !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Desktop: chhote compact cards */
.trend-101 {
  width: min(90%, 1440px) !important;
  margin: 24px auto !important;
  padding: 0 !important;
}

.city-101 {
  gap: 16px !important;
}

.city-card {
  flex: 0 0 clamp(260px, 20vw, 310px) !important;
  height: auto !important;
}

.city-card__image {
  aspect-ratio: 4 / 5 !important;
}

.city-card__header {
  min-height: 60px !important;
  padding: 9px 12px !important;
}

.city-card__author img {
  width: 36px !important;
  height: 36px !important;
  flex-basis: 36px !important;
}

.city-card h4 {
  font-size: 15px !important;
}

.city-card p {
  font-size: 11px !important;
}

.city-card__caption {
  min-height: 0 !important;
  padding: 10px 12px !important;
  font-size: 12px !important;
}

.city-card__caption strong {
  font-size: 14px !important;
}

.city-card__footer {
  min-height: 54px !important;
  padding: 0 10px !important;
}

.action-btn svg {
  width: 25px !important;
  height: 25px !important;
}

/* Mobile: almost full screen width */
@media (max-width: 700px) {
  .trend-101 {
    width: calc(100vw - 24px) !important;
    margin: 16px auto 80px !important;
  }

  .city-101 {
    width: 100% !important;
    gap: 16px !important;
  }

  .city-card {
    width: 100% !important;
    max-width: 360px !important;
    flex-basis: auto !important;
  }
}
@media (max-width: 700px) {
  .trend-101 {
    width: 76% !important;
    margin: 14px auto 80px !important;
  }

  .city-card {
    width: 100% !important;
    max-width: 285px !important;
  }

  .city-card__image {
    aspect-ratio: 1 / 1.05 !important;
  }

  .city-card__header {
    min-height: 54px !important;
    padding: 8px 10px !important;
  }

  .city-card__author img {
    width: 32px !important;
    height: 32px !important;
    flex-basis: 32px !important;
  }

  .city-card h4 {
    font-size: 14px !important;
  }

  .city-card p {
    font-size: 10px !important;
  }

  .city-card__caption {
    padding: 8px 10px !important;
    font-size: 11px !important;
  }

  .city-card__caption strong {
    font-size: 13px !important;
  }

  .city-card__footer {
    min-height: 48px !important;
    padding: 0 8px !important;
  }

  .action-btn {
    padding: 7px 5px !important;
  }

  .action-btn svg {
    width: 22px !important;
    height: 22px !important;
  }
}
.trending-city-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-family: sans-serif;
  margin-top: 70px;
  margin-bottom: 30px;
}

.trending-city-heading img {
  width: 60px;
  height: 50px;
  object-fit: contain;
}

.trending-city-heading h2 {
  margin: 0;
  color: #fff;
  font: 700 26px/1 Arial, sans-serif;
}

@media (max-width: 700px) {
  .trending-city-heading {
    margin-bottom: 15px;
  }

  .trending-city-heading img {
    width: 28px;
    height: 28px;
  }

  .trending-city-heading h2 {
    font-size: 21px;
  }
}
@media (max-width: 700px) {
  .trend-101,
  .trend-102 {
    width: 100vw !important;
    max-width: none !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding: 0 !important;
  }

  .trend-101 .city-101,
  .trend-102 .city-101,
  .trend-102 .state-102 {
    width: 100% !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .trend-101 .city-card,
  .trend-102 .city-card {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 700px) {
  .trend-101 .city-101,
  .trend-102 .city-101,
  .trend-102 .state-102 {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .trend-101 .city-101::-webkit-scrollbar,
  .trend-102 .city-101::-webkit-scrollbar,
  .trend-102 .state-102::-webkit-scrollbar {
    display: none;
  }

  .trend-101 .city-card,
  .trend-102 .city-card {
    flex: 0 0 100vw !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}
@media (max-width: 700px) {
  .trend-101 .city-101,
  .trend-102 .city-101,
  .trend-102 .state-102 {
    gap: 10px !important;
    padding: 0 10px 16px !important;
  }

  .trend-101 .city-card,
  .trend-102 .city-card {
    flex: 0 0 calc(100vw - 20px) !important;
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    background: #000 !important;
    border-color: #262626 !important;
    border-radius: 10px !important;
  }

  .trend-101 .city-card__header,
  .trend-102 .city-card__header,
  .trend-101 .city-card__caption,
  .trend-102 .city-card__caption,
  .trend-101 .city-card__footer,
  .trend-102 .city-card__footer {
    background: #000 !important;
  }
}
.mobile-slider-progress {
  display: none;
}

@media (max-width: 700px) {
  .mobile-slider-progress {
    display: block;
    width: 56px;
    height: 3px;
    margin: 10px auto 18px;
    overflow: hidden;
    border-radius: 20px;
    background: #4a4a4a;
  }

  .mobile-slider-progress span {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: #ffffff;
    transition: transform .2s ease;
  }
}
@media (max-width: 700px) {
  .trend-101 .city-card,
  .trend-102 .city-card {
    flex: 0 0 calc(100vw - 40px) !important;
    width: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
  }

  /* Image height kam */
  .trend-101 .city-card__image,
  .trend-102 .city-card__image {
    aspect-ratio: 1 / 1 !important;
  }

  .trend-101 .city-card__header,
  .trend-102 .city-card__header {
    min-height: 48px !important;
    padding: 7px 10px !important;
  }

  .trend-101 .city-card__caption,
  .trend-102 .city-card__caption {
    padding: 8px 10px !important;
  }

  .trend-101 .city-card__footer,
  .trend-102 .city-card__footer {
    min-height: 44px !important;
  }
}



/* =========================================================
   INDYO — BIG SCREEN 201
   Rounded hero / screenshot-matching CSS
   ========================================================= */

/* ---------- PAGE / MAIN AREA ---------- */

body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

.main-container-201 {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* 
   BIG SCREEN
    */

.big-screen-201 {
    position: relative;
    width: calc(100% - 100px);
    height: 665px;
    margin: 45px auto 35px;

    overflow: hidden;

    border-radius: 23px;
    border: 2px solid rgba(255, 255, 255, 0.12);

    background: #090909;

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.025),
        0 15px 45px rgba(0, 0, 0, 0.55);

    box-sizing: border-box;
}


/* 
   BACKGROUND
    */

.big-screen-bg-201 {
    position: absolute;
    inset: 0;
    z-index: 0;

    overflow: hidden;
}

.big-screen-bg-201 img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition:
        opacity 0.35s ease,
        transform 0.7s ease;
}


/* Slight cinematic dark layer */

.big-screen-201::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.52) 0%,
            rgba(0, 0, 0, 0.22) 42%,
            rgba(0, 0, 0, 0.05) 75%,
            rgba(0, 0, 0, 0.12) 100%
        );
}


/* Bottom fade */

.big-screen-201::after {
    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 125px;

    z-index: 2;
    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.55),
            transparent
        );
}


/* 
   CONTENT
    */

.big-screen-content-201 {
    position: absolute;

    left: 68px;
    top: 50%;

    width: 500px;
    max-width: calc(100% - 120px);

    transform: translateY(-50%);

    z-index: 5;

    color: #fff;
}


/* ---------- TITLE ---------- */

.big-screen-title-201 {
    margin: 0 0 20px;

    color: #fff;

    font-size: 52px;
    line-height: 1.02;

    font-weight: 800;
    letter-spacing: -1.8px;

    text-shadow:
        0 4px 18px rgba(0, 0, 0, 0.45);
}


/* 
   TAGS
    */

.big-screen-tags-201 {
    display: flex;
    align-items: center;

    width: fit-content;

    margin: 0 0 12px;

    padding: 0;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 4px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.big-screen-tags-201 span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 24px;

    padding: 0 10px;

    color: #fff;

    font-size: 11px;
    line-height: 1;

    font-weight: 700;
    letter-spacing: 0.4px;

    white-space: nowrap;
}

.big-screen-tags-201 span + span {
    border-left: 1px solid rgba(255, 255, 255, 0.45);
}


/* 
   META
    */

.big-screen-meta-201 {
    margin: 0 0 28px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 14px;
    line-height: 1.5;

    font-weight: 500;
}


/* 
   DESCRIPTION
    */

.big-screen-desc-201 {
    margin: 0 0 26px;

    max-width: 480px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 14px;
    line-height: 1.7;

    font-weight: 400;
}


/* 
   EXPLORE BUTTON
    */

.big-screen-btn-201 {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 155px;
    height: 45px;

    padding: 0 20px;

    box-sizing: border-box;

    border: 0;
    border-radius: 6px;

    background:
        linear-gradient(
            100deg,
            #1677ff 0%,
            #3b5cff 48%,
            #c83cff 100%
        );

    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.25);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}

.big-screen-btn-201:hover {
    transform: translateY(-2px);

    filter: brightness(1.08);

    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.35);
}

.big-screen-btn-201:active {
    transform: translateY(0);
}

.big-screen-btn-201 i {
    font-size: 13px;
}


/* 
   THUMBNAILS
    */

.big-screen-thumbs-201 {
    position: absolute;

    right: 28px;
    bottom: 30px;

    display: flex;
    align-items: flex-end;

    gap: 9px;

    z-index: 10;
}


/* ---------- EACH THUMB ---------- */

.big-screen-thumb-201 {
    position: relative;

    flex: 0 0 auto;

    width: 92px;
    height: 61px;

    overflow: hidden;

    cursor: pointer;

    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(0, 0, 0, 0.4);

    opacity: 0.62;

    box-sizing: border-box;

    transform: translateY(0);

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.35);

    transition:
        width 0.25s ease,
        height 0.25s ease,
        transform 0.25s ease,
        opacity 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* Thumbnail image */

.big-screen-thumb-201 img,
.big-screen-thumb-201 video {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.35s ease,
        filter 0.25s ease;
}


/* Dark layer on thumbnails */

.big-screen-thumb-201::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.15);

    pointer-events: none;

    transition: background 0.25s ease;
}


/* ---------- HOVER ---------- */

.big-screen-thumb-201:hover {
    opacity: 0.95;

    transform: translateY(-3px);

    border-color: rgba(255, 255, 255, 0.4);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.45);
}

.big-screen-thumb-201:hover img,
.big-screen-thumb-201:hover video {
    transform: scale(1.06);
}

.big-screen-thumb-201:hover::after {
    background: rgba(0, 0, 0, 0);
}


/* 
   ACTIVE THUMB — EXACT FOCUS LOOK
    */

.big-screen-thumb-201.active-201 {
    width: 103px;
    height: 64px;

    opacity: 1;

    transform: translateY(0);

    border: 2px solid #fff;

    border-radius: 5px;

    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.25),
        0 7px 20px rgba(0, 0, 0, 0.45);
}

.big-screen-thumb-201.active-201::after {
    background: transparent;
}


/* 
   VIDEO THUMB
    */

.big-screen-thumb-201 video {
    pointer-events: none;
}


/* 
   POPUP OVERLAY
    */

.card-overlay-201 {
    position: fixed;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    background: rgba(0, 0, 0, 0.78);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    opacity: 0;
    visibility: hidden;

    z-index: 9999;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.card-overlay-201.show-201 {
    opacity: 1;
    visibility: visible;
}


/* 
   POPUP
   */

.card-popup-201 {
    position: relative;

    width: 500px;
    max-width: 94vw;

    overflow: hidden;

    border-radius: 18px;

    background: #111;

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.65);

    transform: scale(0.88) translateY(20px);

    transition:
        transform 0.3s ease;
}

.card-overlay-201.show-201 .card-popup-201 {
    transform: scale(1) translateY(0);
}


/* ---------- POPUP IMAGE ---------- */

.card-popup-banner-201 {
    width: 100%;
    height: 270px;

    display: block;

    object-fit: cover;

    background: #181818;
}


/* ---------- CLOSE ---------- */

.btn-close-popup-201 {
    position: absolute;

    top: 14px;
    right: 14px;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.55);

    color: #fff;

    font-size: 17px;

    cursor: pointer;

    backdrop-filter: blur(8px);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.btn-close-popup-201:hover {
    transform: rotate(90deg);

    background: rgba(255, 255, 255, 0.18);
}


/* 
   POPUP INFO
    */

.card-popup-info-201 {
    padding: 24px;
}

.card-popup-info-201 h3 {
    margin: 0 0 9px;

    color: #fff;

    font-size: 25px;
    line-height: 1.2;

    font-weight: 800;
}

.card-popup-info-201 p {
    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;
    line-height: 1.6;
}


/* 
   POPUP BUTTON
    */

.card-popup-btns-201 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-detail-201 {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    height: 40px;

    padding: 0 18px;

    border-radius: 6px;

    background: #fff;

    color: #111;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.btn-detail-201:hover {
    transform: translateY(-2px);

    background: #ededed;
}


/* 
   LARGE SCREEN
   */

@media (min-width: 1400px) {

    .big-screen-201 {
        width: calc(100% - 150px);
        height: 690px;
    }

    .big-screen-content-201 {
        left: 68px;
    }

    .big-screen-title-201 {
        font-size: 53px;
    }
}


/* 
   TABLET
    */

@media (max-width: 1000px) {

    .big-screen-201 {
        width: calc(100% - 50px);
        height: 610px;

        margin-top: 30px;
    }

    .big-screen-content-201 {
        left: 42px;
        width: 440px;
        max-width: calc(100% - 84px);
    }

    .big-screen-title-201 {
        font-size: 45px;
    }

    .big-screen-thumb-201 {
        width: 76px;
        height: 55px;
    }

    .big-screen-thumb-201.active-201 {
        width: 87px;
        height: 59px;
    }

    .big-screen-thumbs-201 {
        right: 20px;
        bottom: 22px;
        gap: 7px;
    }
}


/* 
   MOBILE
   */

@media (max-width: 700px) {

    .big-screen-201 {
        width: calc(100% - 24px);
        height: 600px;

        margin: 22px auto;

        border-radius: 18px;
    }

    .big-screen-content-201 {
        left: 25px;
        top: 44%;

        width: calc(100% - 50px);
        max-width: none;

        transform: translateY(-50%);
    }

    .big-screen-title-201 {
        margin-bottom: 15px;

        font-size: 40px;
        letter-spacing: -1px;
    }

    .big-screen-meta-201 {
        margin-bottom: 20px;

        font-size: 13px;
    }

    .big-screen-desc-201 {
        margin-bottom: 20px;

        font-size: 13px;
    }

    .big-screen-btn-201 {
        min-width: 140px;
        height: 42px;

        font-size: 13px;
    }

    .big-screen-thumbs-201 {
        left: 20px;
        right: 20px;
        bottom: 20px;

        overflow-x: auto;

        justify-content: flex-start;

        padding: 2px;

        scrollbar-width: none;
    }

    .big-screen-thumbs-201::-webkit-scrollbar {
        display: none;
    }

    .big-screen-thumb-201 {
        width: 72px;
        height: 51px;
    }

    .big-screen-thumb-201.active-201 {
        width: 82px;
        height: 55px;
    }

    .card-popup-banner-201 {
        height: 220px;
    }
}


/* 
   SMALL MOBILE
    */

@media (max-width: 450px) {

    .big-screen-201 {
        height: 570px;
    }

    .big-screen-content-201 {
        top: 42%;
    }

    .big-screen-title-201 {
        font-size: 35px;
    }

    .big-screen-desc-201 {
        font-size: 12px;
        line-height: 1.6;
    }

    .big-screen-thumb-201 {
        width: 62px;
        height: 46px;
    }

    .big-screen-thumb-201.active-201 {
        width: 72px;
        height: 50px;
    }
}


/* 
   REDUCE MOTION
   */

@media (prefers-reduced-motion: reduce) {

    .big-screen-bg-201 img,
    .big-screen-thumb-201,
    .big-screen-thumb-201 img,
    .big-screen-thumb-201 video,
    .big-screen-btn-201,
    .card-popup-201 {
        transition: none;
    }
}

/* 
   MOBILE - HIGHLIGHT TO BIG SCREEN GAP FIX
*/

@media (max-width: 700px) {

    .big-screen-201 {
        margin-top: 10px !important;
        margin-bottom: 8px !important;
    }

}


/* SMALL PHONE */

@media (max-width: 450px) {
    .big-screen-201 {
        margin-top: 10px !important;
        margin-bottom: 6px !important;
    }
}
/* =========================================================
   INDYO FOOTER
   BLACK + GLASS | CLEAN & MINIMAL
========================================================= */

.indyo-footer-501 {
    width: 100%;
    box-sizing: border-box;

    padding: 28px 20px 25px;

    background: #050505;

    color: #fff;

    overflow: hidden;
}


/* =========================================================
   1. MAIN PRIORITY
========================================================= */

.indyo-footer-credit-501 {
    width: 100%;

    margin-bottom: 24px;

    text-align: center;

    color: #ffffff;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 0.3px;
}


/* =========================================================
   2. SOCIAL GLASS ROW
========================================================= */

.indyo-footer-social-box-501 {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    width: fit-content;

    margin: 0 auto;

    padding: 10px 14px;

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.35);
}


/* SOCIAL BUTTON */

.indyo-footer-social-box-501 a {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    min-width: 48px;

    height: 42px;

    padding: 0 13px;

    box-sizing: border-box;

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.035);

    color:
        rgba(255, 255, 255, 0.65);

    text-decoration: none;

    transition:
        0.25s ease;
}


/* ICON */

.indyo-footer-social-box-501 a i {
    font-size: 17px;
}


/* TEXT */

.indyo-footer-social-box-501 a span {

    font-size: 11px;

    font-weight: 600;
}


/* HOVER — GREY */

.indyo-footer-social-box-501 a:hover {

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.12);

    transform: translateY(-2px);
}


/* =========================================================
   3. ABOUT + SUPPORT
========================================================= */

.indyo-footer-info-501 {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 35px;

    margin-top: 23px;

    text-align: center;
}


/* ABOUT / SUPPORT */

.indyo-footer-info-501 a {

    color:
        rgba(255, 255, 255, 0.48);

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    transition:
        0.25s ease;
}


/* HOVER */

.indyo-footer-info-501 a:hover {

    color: #ffffff;
}


/* SEPARATOR */

.indyo-footer-info-501 span {

    width: 3px;

    height: 3px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.25);
}


/* =========================================================
   4. COPYRIGHT
========================================================= */

.indyo-footer-bottom-501 {

    margin-top: 22px;

    text-align: center;

    color:
        rgba(255, 255, 255, 0.25);

    font-size: 10px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .indyo-footer-501 {

        padding:
            25px 12px 80px;
    }


    /* PRIORITY */

    .indyo-footer-credit-501 {

        margin-bottom: 20px;

        font-size: 13px;
    }


    /* SOCIAL */

    .indyo-footer-social-box-501 {

        width: 100%;

        max-width: 370px;

        gap: 7px;

        padding: 8px;
    }


    .indyo-footer-social-box-501 a {

        flex: 1;

        min-width: 0;

        height: 44px;

        padding: 0 7px;
    }


    .indyo-footer-social-box-501 a i {

        font-size: 17px;
    }


    /* MOBILE PAR ICONS ONLY */

    .indyo-footer-social-box-501 a span {

        display: none;
    }


    /* ABOUT + SUPPORT */

    .indyo-footer-info-501 {

        gap: 22px;

        margin-top: 20px;
    }


    .indyo-footer-info-501 a {

        font-size: 11px;
    }


    /* COPYRIGHT */

    .indyo-footer-bottom-501 {

        margin-top: 18px;

        font-size: 9px;
    }
}


/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 380px) {

    .indyo-footer-credit-501 {

        font-size: 12px;
    }


    .indyo-footer-social-box-501 {

        gap: 4px;

        padding: 7px;
    }


    .indyo-footer-social-box-501 a {

        height: 40px;
    }


    .indyo-footer-social-box-501 a i {

        font-size: 15px;
    }


    .indyo-footer-info-501 {

        gap: 18px;
    }

}
/* =========================================================
   INDYO FOOTER LINKS
========================================================= */

.indyo-footer-info-501 {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 22px;

    white-space: nowrap;

    overflow-x: auto;

    scrollbar-width: none;
}


/* Hide scrollbar */

.indyo-footer-info-501::-webkit-scrollbar {
    display: none;
}


/* LINKS */

.indyo-footer-info-501 a {

    flex-shrink: 0;

    color: rgb(15, 15, 15);

    text-decoration: none;

    font-size: 13px;

    font-weight: 500;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* HOVER */

.indyo-footer-info-501 a:hover {

    color: #ff304f;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .indyo-footer-info-501 {

        justify-content: flex-start;

        gap: 20px;

        margin-top: 20px;

        padding: 0 5px;
    }

    .indyo-footer-info-501 a {

        font-size: 11px;
    }

}
/* =========================================================
   INDYO FOOTER LINKS
   NO OUTER BOX
   GLASS EFFECT ONLY ON CLICKED LINK
========================================================= */

.indyo-footer-info-501 {

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;

    margin-top: 22px;

    white-space: nowrap;

    overflow-x: auto;

    scrollbar-width: none;
}

.indyo-footer-info-501::-webkit-scrollbar {
    display: none;
}


/* NORMAL LINK */

.indyo-footer-info-501 a {

    flex-shrink: 0;

    padding: 7px 10px;

    border-radius: 9px;

    color: rgba(255,255,255,0.48);

    background: transparent;

    text-decoration: none;

    font-size: 13px;

    font-weight: 500;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}


/* HOVER */

.indyo-footer-info-501 a:hover {

    color: #ff304f;

    transform: translateY(-1px);
}


/* =========================================================
   CLICKED / ACTIVE LINK = GLASS
========================================================= */

.indyo-footer-info-501 a.active {

    color: #ffffff;

    background:
        rgb(2, 2, 2);

    border:
        1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(15px);

    -webkit-backdrop-filter: blur(15px);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 5px 20px rgba(0,0,0,0.25);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .indyo-footer-info-501 {

        justify-content: flex-start;

        gap: 14px;

        margin-top: 20px;

        padding: 0 5px;
    }

    .indyo-footer-info-501 a {

        padding: 6px 9px;

        font-size: 11px;
    }
}

.indyo-footer-info-501 {
    margin-bottom: 30px;
}
/* SOCIAL ROW - PURE BLACK */

.indyo-footer-social-box-501 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: fit-content;
    margin: 0 auto;

    padding: 10px 14px;

    background: #000;              /* Pure Black */
    border: 1px solid #1b1b1b;     /* Subtle Border */
    border-radius: 16px;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: 0 8px 30px rgba(0,0,0,.45);
}





@media (max-width: 600px) {

    .highlight {
        width: 100%;
        max-width: 100%;

        padding-left: 12px;
        padding-right: 12px;

        gap: 18px;

        box-sizing: border-box;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .highlight::-webkit-scrollbar {
        display: none;
    }

    .highlight-item {
        flex: 0 0 auto;
    }
}
@media (max-width: 375px) {
    .highlight {
        gap: 8px;
    }
}
/* =========================================
   MOBILE HERO HEIGHT
========================================= */

@media (max-width: 600px) {

    .big-screen-201 {
        height: 400px !important;
        min-height: 400px !important;
    }

}

/* ---- gap fix: navbar aur highlight row ke beech ka empty space ---- */
@media (max-width: 425px) {

  .hero {
    min-height: 0 !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
  }

  .highlight {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .highlight-viewer {
    margin: 0 !important;
    padding-top: 0 !important;
  }

}

/* Remove mobile tap-highlight flash on all interactive elements */
*, 
button, 
a, 
.card-popup-btns a,
.highlight-item,
.btn-close-popup,
[onclick] {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  outline: none;
}

/* Optional: if you want a *custom* subtle feedback instead of none */
button:active,
a:active {
  opacity: 0.7;
}

@media (max-width: 320px){

    .highlight{
        justify-content: flex-start;
        gap:10px;
    }

    .highlight-ring{
        width: 70px;
        height: 70px;

    }

    .highlight-item span{
        font-size: 11px;
    }
}
@media (max-width: 375px){

    .highlight{
        justify-content: flex-start;
        gap:10px;
    }

    .highlight-ring{
        width: 80px;
        height: 80px;
    }

    .highlight-item span{
        font-size: 11px;
    }
}
@media (max-width: 425px){

    .highlight{
        justify-content: flex-start;
        gap:10px;
        
        
    }

    .highlight-ring{
        width: 80px;
        height: 80px;
    }

    .highlight-item span{
        font-size: 11px;
    }
}
@media (max-width: 768px){

    .highlight{
        justify-content: flex-start;
        gap: 14px;
        padding: 110px 20px 0 20px;
        margin-bottom: 40px; /* try this */
    }

    .highlight-ring{
        width: 80px;
        height: 80px;
    }

    .highlight-item span{
        font-size: 12.5px;
    }
}