* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}
#preloader {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: #000000;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
      transition: opacity 0.5s ease;
    }

    .loader {
      display: flex;
      gap: 8px;
    }

    .bar {
      width: 6px;
      height: 40px;
      background: #ffffff;
      border-radius: 10px;
      animation: loading 1.2s ease-in-out infinite;
    }

    .bar:nth-child(1) { animation-delay: 0ms; }
    .bar:nth-child(2) { animation-delay: 150ms; }
    .bar:nth-child(3) { animation-delay: 300ms; }
    .bar:nth-child(4) { animation-delay: 450ms; }

    @keyframes loading {
      0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
      50% { transform: scaleY(1); opacity: 1; }
    }
/* ==================== AOS MOBILE FIX – ANIMATION ON + ZERO SHIFT ==================== */

.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    color: transparent;
}

.hover-invert {
    transition: all 0.3s ease;
}

.hover-invert:hover {
    background-color: white;
    color: black;
}

body {
    overflow-x: hidden;
    color: white;
    background: #000;
}

p,
a,
li {
    font-family: Inter;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Cinzel;
}

/* Navigation Container - Full width se thoda andar */
#navbar {
    position: fixed;
    top: 10px;
    left: 0;
    width: 95%;
    right: 0;
    margin-inline: auto;
    padding: 20px 0;
    /* sirf top-bottom */
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#navbar{
    opacity: 0;
        transform: translateY(-50px);
    animation: NavAnimation 1s ease-out 0.3s forwards ;
}

@keyframes NavAnimation {
   to{
        opacity: 1;
        transform: translateY(0px);
    }
}
/* Inner container - width control */
.nav-container {
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s;
}

/* Scroll hone pe chhota ho jayega */
nav.scrolled {
    padding: 20px 0;
    width: 90%;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

nav.scrolled .nav-container {
    max-width: 90%;
    /* Scroll pe width kam */
}

.logo {
    width: 8%;
    transition: all 0.5s;
    opacity: 0;
    transform: translateX(-50px);
    animation: Logo 0.6s ease-out 3s forwards;
}

@keyframes Logo {
    to{
        opacity: 1;
        transform: translateX(0);
    }
}
nav.scrolled .logo {
    width: 7%;
    letter-spacing: 2px;
}

.logo img {
    width: 100%;
    height: 100%;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    transition: all 0.5s;
}
.nav-menu li{
opacity: 0;
        transform: translateY(30px);
    }

    /* Ek ek karke menu items aayenge */
    .nav-menu li:nth-child(1) { animation: menuItem 0.6s ease-out 1.2s forwards; }
    .nav-menu li:nth-child(2) { animation: menuItem 0.6s ease-out 1.4s forwards; }
    .nav-menu li:nth-child(3) { animation: menuItem 0.6s ease-out 1.6s forwards; }
    .nav-menu li:nth-child(4) { animation: menuItem 0.6s ease-out 1.8s forwards; }
    .nav-menu li:nth-child(5) { animation: menuItem 0.6s ease-out 2.0s forwards; }
    .nav-menu li:nth-child(6) { animation: menuItem 0.6s ease-out 2.2s forwards; }
    .nav-menu li:nth-child(7) { animation: menuItem 0.6s ease-out 2.4s forwards; }

    @keyframes menuItem {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 5px;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #ebebeb;
}

nav.scrolled .nav-menu {
    gap: 35px;
}

nav.scrolled .nav-menu a {
    font-size: 14px;
}

.contact-btn {
    padding: 15px 30px;
    background: transparent;
    border: 2px solid white;
    color: #000;
    font-weight: 700;
    font-size: 12px;
    background: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.5s;
    opacity: 0;
    transform: translateX(50px);
    animation: ContactAnimation 0.6s ease-out 2.6s forwards;
}

@keyframes ContactAnimation {
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

nav.scrolled .contact-btn {
    padding: 11px 28px;
    font-size: 13px;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0);
    color: #fff;
}

/* Hero Slider - same as before */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    opacity: 0;
    animation: Hero 300ms ease-out 0.1s forwards ;
}

@keyframes Hero {
    to{
        opacity: 1;
    }
}

.slides-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.slide:nth-child(1) {
    background-image: url('../assets/SliderImageOne.jpg');
}

.slide:nth-child(2) {
    background-image: url('../assets/SliderImageTwo.jpg');
}


/* Arrows & Pagination */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    /*backdrop-filter: blur(10px);*/
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99;
    transition: 0.3s;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev {
    left: 40px;
    opacity: 0;
    transform: translateX(-10px);
    animation: prevAn 0.5s ease-out 1.5s forwards;
}

.next {
    right: 40px;
    opacity: 0;
    transform: translateX(10px);
    animation: NextAn 0.8s ease-out 1.5s forwards;
}

@keyframes prevAn {
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes NextAn {
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}
.pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 14px;
    z-index: 99;
}

.dot {
    width: 50px;
    height: 5px;
    background: #9e9e9e;
    cursor: pointer;
    transition: 0.4s;
}

.dot.active {
    background: #ffffff;
    transform: scale(1.4);
}

/* Center Box */
.hero-content {
    position: absolute;
    top: 55%;
    left: 30%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 50%;
    color: #fff;
    max-width: 900px;
    scale: 0;
    animation: ContentAn 300ms ease-out 1.5s forwards
}

@keyframes ContentAn {
    to{
        scale: 1;
    }
}

.content-box {
    background: rgba(160, 149, 149, 0);
    /* backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(22px); */
    padding: 15px 15px;
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
}

.HeroTagline {
    font-size: 16px;
    letter-spacing: 6px;
    font-weight: 400;
    font-family: Inter;
    opacity: 0.9;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(-10px);
    animation: tagAn 600ms ease-out 2s forwards;
}

@keyframes tagAn {
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}
.content-box h1{
    font-size: 70px;
    font-family: Cizel;
    font-weight: 700;
    line-height: 0.9em;
    background: linear-gradient(to bottom,
            rgb(255, 255, 255) 50%,
            #6b6b6b 90%);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(10px);

    animation: tagAn 600ms ease-out 2s forwards;
    margin-bottom: 20px;
}

.content-box p {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 300;
    font-family: Inter;
    margin-bottom: 45px;
    color: #c2c2c2;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(10px);
    animation: tagAn 600ms ease-out 2s forwards;
}

.btn-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    min-width: 220px;
    cursor: pointer;
    transition: 0.4s;
}

.btn-primary {
    background: white;
    color: black;
    border: none;
    scale: 0;
    animation: btnAn 600ms ease-out 2.3s forwards;
}

.btn-primary:hover {
    border: 2px solid #fff;
    background: none;
    color: #fff
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    scale: 0;
    animation: btnAn 600ms ease-out 2.3s forwards;
}

@keyframes btnAn {
    to{
        scale: 1;
    }
}

.btn:hover {
    transform: translateY(-6px);
}

.btn-secondary:hover {
    background-color: #fff;
    color: black;
}

@media screen and (max-width:500px) {

    .HeroTagline{
       font-size: 10px !important;
    } 

    .btn-group{
        display: none;
    }

    .content-box h1 {
        font-size: 2.9rem;
        font-family: 'Cinzel';
        line-height: 3rem;
    }

    .hero-content{
        width: 90%;
        top : 60%;
        left: 165px;
    }

    .content-box p{
        display: none;
        margin-bottom: 0px;
        font-size: 0.8rem
    }
    .hero-slider {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
}

    .pagination{
        bottom: 10px;
    }

    .HeroTagline{
        font-size: 0.6rem;
    }

    .slider-nav{
        height: 40px;
        bottom: 20px;
        width: 45px;
        font-size: 17px;
    }
    .prev{
       
        left: 15px;
    }

    .next{
        
        right: 15px
    }
}

.absec-wrapper {
    background: #000;
    color: #fff;
    font-family: inter;
    padding: 8vw 5vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.absec-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8vw;
    max-width: 1400px;
    margin: 0 auto;
}

/* Image Section */
.absec-image {
    text-align: center;
    order: 1;
    height: 800px;
    flex: 50%;
}

.absec-image img {
    width: 100%;
    max-width: 85vw;
    /* border-radius: 5vw; */
    box-shadow: 0 4vw 10vw rgba(0, 0, 0, 0.7);
}

/* Content Section */
.absec-content-box {
    order: 2;
    text-align: left;
    flex: 60%;
}

.absec-tabs {
    display: flex;
    justify-content: left;
    gap: 6vw;
    /* margin-bottom: 6vw; */
    font-size: clamp(12px, 3.5vw, 16px);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
}

.absec-tab {
    background: none;
    border: none;
    cursor: pointer;
    padding: 1vw 0;
    font-size: 18px;
    font-family: 'Inter';
    text-align: left;
    letter-spacing: 4px;
    color: #ffffffa1;
    position: relative;
    transition: color 0.4s;
}

.absec-tab.active {
    color: #fff;
}

.absec-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 1px;
    background: #fff;
}

.absec-content-wrapper {
    position: relative;
    min-height: 45vh;
    margin-bottom: 2vw;
}

.absec-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(5vh);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-align: left;
}

.absec-content.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.absec-big-title {
    font-size: 40px;
    font-weight: 400;
    text-align: left;
    line-height: 1.2;
    font-family: Cinzel;
    margin: 2vw 0;
    padding: 0 2vw;
}

.absec-text {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.9;
    text-align: left;
    margin-bottom: 2vw;
    color: #ffffffa1;
    padding: 0 2vw;
    letter-spacing: 2px;
}

.absec-quote {
    font-size: clamp(16px, 5vw, 22px);
    font-style: italic;
    /* opacity: 0.7; */
    font-family: Inter;
    margin: 1vw 0;
    padding: 0 0vw;
    color: #fff !important;
    border-left: 3px solid #444;
    text-align: left;
    padding-left: 3vw;
}

/* Fixed Stats - Hamesha dikhega */
.absec-stats {
    display: flex;
    justify-content: center;
    font-family: Inter;
    gap: 12vw;
    margin-top: 1vw;
}

.absec-stat-value {
    font-size: 40px;
    font-family: Cinzel;
    letter-spacing: 4px;
    font-weight: 700;
    color: #ffffff;
}

.absec-stat-label {
    font-size: clamp(11px, 2.8vw, 14px);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
    margin-top: 1vw;
}

/* Desktop pe side-by-side (optional bonus) */
@media (max-width: 500px) {
    .absec-container {
        flex-direction: column;
        align-items: center;
        gap: 6vw;
    }

    .absec-image {
        order: 1;
        flex: 1;
        text-align: center;
        height: 600px;
    }

    .absec-image img {
        max-width: 45vw;
    }

    .absec-content-box {
        order: 2;
        flex: 1;
        text-align: left;
    }

    .absec-tabs {
        justify-content: flex-start;
    }
    .absec-big-title{
        font-size: 2rem;
    }

    .absec-text,
    .absec-quote,
     .absec-tab{
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .absec-content,
    .absec-big-title,
    .absec-text,
    .absec-quote ,
    .absec-tab{
        text-align: left;
        padding-left: 0;
        margin-bottom: 30px;
        
    }

    .absec-quote {
        padding-left: 3vw;
    }

    .absec-stats {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

.brand-slider {
    background: #000;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.brand-track {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.brand-item {
    flex: 0 0 auto;
    width: 250px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Zero gap + Sharp corners */
.brand-item {
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* Infinite Seamless Loop */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.brand-slider:hover .brand-track {
    animation-play-state: paused;
}

/* Duplicate set for seamless loop */
.brand-track {
    display: flex;
}

/* Responsive */
@media (max-width: 768px) {
    .brand-item {
        width: 180px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    
    .brand-item:nth-child(10) , .brand-item:nth-child(20) ,.brand-item:nth-child(30) , .brand-item:nth-child(40){
       display: none;
    }
    .brand-item {
        width: 140px;
        height: 85px;
    }

    .brand-slider {
        padding: 40px 0;
    }
}

.Footer-logo {

    width: 30%;
    margin-bottom: 10px;
    transition: all 0.5s;

}

@media screen and (max-width:768px) {

    .leftFoot{
        width: 100%;
    }
    .Footer-logo{
        margin: auto;
        margin-bottom: 20px;
    }
    #navbar {
        display: none !important;
    }

    .Mobile-Menu {
        display: block !important;
    }
}


.Mobile-Menu {
    display: none;
}

.Mobile-Menu{
    /* position: fixed; */
    width: 100%;
    top: 5px;
    margin-inline: auto;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1001;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* display: none !important; */
}

#dropdown:hover .SubMenu{
    /* display: block; */
    visibility: visible;
    height: fit-content;
     transform: translateY(0px);
    opacity: 1;
}
.SubMenu{
    position: absolute !important;
    z-index: 999;
    top: 22px;
    background: #333;
    padding: 40px 0px 40px 0px;
    width: 330px;
    /* display: none; */
    visibility: hidden;
    height: 0px;
    transform: translateY(-10px);
    opacity: 0;
    transition: all 300ms ease-in-out;
}

.SubMenu ul li i {
    display: none;
}

.SubMenu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.SubMenu ul li{
    display: flex;
   gap: 10px;
   padding: 10px 20px;
   transition: all 300ms ease-in-out
}


.Mobile-Nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
}

.Mobile-logo {
    width: 15%;
}

.Mobile-logo img{
    width: 100%;
    height: 100%;
}

.Toogle-Btn {
    width: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.lines {
    width: 100%;
    border: 1px solid #fff;
    transition: all 300ms ease-in;

}

.Menu-open .Toogle-Btn .lines:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);

}

.Menu-open .Toogle-Btn .lines:nth-child(2) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.Menu-open .Menu-Mobile {
    left: 0px
}

.Menu-Mobile {
    position: fixed;
    top: 0px;
    background-color: #2d2d2d;
    color: #fff;
    width: 100%;
    font-family: Cinzel !important;
    width: 250px;
    left: -300px;
    z-index: 1001;
    transition: all 300ms ease-in-out;
    height: 95vh;
}

.Menu-Mobile ul {
    display: flex;
    gap: 20px;
    flex-direction: column;
    padding: 40px 30px;

}

.Menu-Mobile ul li {
    padding: 10px 0;
    transition: all 300ms ease-in-out;
    font-family: Cinzel;
    letter-spacing: 3px;
    display: flex;
}

.Menu-Mobile ul li:hover , .SubMenu ul li:hover{
    background-color: #000;
    padding-left: 20px;
}

.SubMenu ul li:hover{
    background-color: #000;
    padding-left: 20px;
    margin-left: 20px;
}

.Menu-Mobile ul li:hover i , .SubMenu ul li:hover i{
    display: block;
}

.Menu-Mobile ul li i {
    display: none;
    margin-right: 10px;
    transition: all;
}

.why-Back {
    position: relative;
    background-image: url('../assets/why-choose-us.png');
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;

}

.overlay {
    background: #000;
    width: 100%;
    opacity: 0.65;
    height: 100%;
    backdrop-filter: blur(120px);

    position: absolute;

}

.video-slider {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
  }

  .swiper-slide {
    border: 1px solid #818181;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }

  /* Sharp corners – no border radius */
  .swiper-slide video,
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Glass Play Button */
  .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 70px; height: 70px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    pointer-events: none;
  }
  .play-btn:hover { transform: translate(-50%, -50%) scale(1.15); background: rgba(0,0,0,0.7); }
  .play-btn::before {
    content: '';
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 6px;
  }

  /* Custom Navigation Buttons – White Square + Black Icon */
  .swiper-button-next,
  .swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    background: white !important;
    border-radius: 0 !important;   /* square */
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: 0.3s;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 24px !important;
    color: black !important;
    font-weight: bold;
  }
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: #f0f0f0 !important;
    transform: scale(1.1);
  }

  /* Lightbox */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.852);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .lightbox video {
    max-width: 95%;
    max-height: 95vh;
    border: 2px solid #333;
  }
  .close {
    position: absolute;
    top: 25px; right: 35px;
    font-size: 50px;
    color: white;
    cursor: pointer;
    font-weight: bold;
  }

  .VideoGal{
    width: 100%;
    padding: 70px 30px;
  }

  .swiper-button-next , .swiper-button-prev{
    color: #000 !important;
    font-size: 30px;
  }

  .popup-overlay {
        position: fixed;
        top: 0; left: 0;
        width: 100vw;
        height: 100vh;
        background:rgb(0 0 0 / 21%);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.6s ease;
    }

    .popup-overlay.active {
        display: flex;
        opacity: 1;
    }

   @property --pop-angle {
        syntax: '<angle>';
        initial-value: 0deg;
        inherits: false;
    }


    /* Full screen overlay */
    .popup-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.361);
        backdrop-filter: blur(14px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.8s ease;
    }
    .popup-overlay.active {
        display: flex;
        opacity: 1;
    }

    /* TERA NEW CLEAN WHITE LINE BORDER — bilkul tere diye hue code se */
    .tv-container {
        --pop-angle: 0deg;
        --pop-bg: #0a0a0a;
        width: 90%;
        max-width: 900px;
        aspect-ratio: 16/9;
        position: relative;
        overflow: hidden;
        border: 1.5px solid transparent;
        padding: 17px; /* border ki thickness control */
        isolation: isolate;

        background: 
            linear-gradient(var(--pop-bg), var(--pop-bg)) padding-box,
            conic-gradient(
                from var(--pop-angle),
                var(--pop-bg) 50%,
                white
            ) border-box;

        transform: scale(0);
        animation: tvPowerOn 2.5s forwards, pop-spin 7s linear infinite;
    }

    @keyframes pop-spin {
        to { --pop-angle: 360deg; }
    }

    @keyframes tvPowerOn {
        0%   { transform: scale(0); }
        50%  { transform: scale(1.05); }
        70%  { transform: scale(0.98); }
        100% { transform: scale(1); }
    }

    /* Inner screen */
    .tv-screen {
        width: 100%;
        height: 100%;
        background: #000;
        border-radius: 16px;
        overflow: hidden;
        position: relative;
    }

    /* Background Video */
    .bg-video {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    /* Content */
    .tv-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px 20px;
        background: linear-gradient(#33333383, rgba(0, 0, 0, 0.751));
        z-index: 2;
        text-align: center;
        transform: translateY(100px);
        opacity: 0;
        animation: contentSlide 1.5s forwards 1.8s;
    }

    @keyframes contentSlide {
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .tagline {
        font-size: 1.7rem;
        color: #fff;
        font-weight: 600;
        text-shadow: 0 0 10px rgba(255,255,255,0.5);
        margin-bottom: 20px;
        letter-spacing: 4px;
        font-family: 'Cinzel';
    }

    .franchise-btn {
        padding: 10px 20px;
        font-size: 1rem;
        background: #e5e5e5;
        color: #000;
        border: none;
        cursor: pointer;
        font-weight: bold;
        box-shadow: 0 0 20px rgba(255,255,255,0.4);
        transition: all 0.4s;
    }

    .franchise-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 0 50px white;
    }

    .close-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        font-size: 48px;
        color: #fff;
        cursor: pointer;
        z-index: 10;
        opacity: 0.7;
        transition: 0.3s;
    }
    .close-btn:hover {
        opacity: 1;
        transform: rotate(90deg);
    }
@media screen and (max-width:768px) {

        .tv-content {
        position: static;
        width: 100%;
        padding: 20px 20px;
        background: #000;
        height: fit-content;
        z-index: 2;
        text-align: center;
        transform: translateY(100px);
        opacity: 0;
        animation: contentSlide 1.5s forwards 1.8s;
    }
    
    .brand-item img{
        object-fit: contain;
    }
    .tagline{
        font-size: 0.8rem;
        /* display: none; */
    }

    .bg-video{
        height: auto;
        position: static;
    }

    .tv-container{
        height: 43vh;
        padding: 0;
    }

    .tv-content{
        padding: 20px 10px 10px 5px;
    }
}

.ser-Container{
    width: 100%;
    padding: 30px 0px;
}

.ser-box{
    width: 100%;
    margin: auto;
    display: flex;
    gap: 60px;
    /* align-items: center; */
}

.ser-Image{
       width: 40%;
    height: 100vh;
}
.ser-Image img{
    width: 100%;
    height: 100%;
}

.ser-Content-Box{
   width: 50%;
    /* padding: 20px; */
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* align-items: center; */
}

.ser-Content-Box h3{
       font-size: 28px;
    color: #000;
    font-family: Cinzel;
    font-weight: 600;
}

.ser-Content-Box p{
    font-size: 1.2rem;
    font-family: 'Cinzel';
    font-weight: 300;
    letter-spacing: 0.9px;
    line-height: 40px;
}

.ser-Content-Box ul{
    list-style: circle;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ser-Content-Box ul li{
     font-size: 1.2rem;
    font-family: 'Cinzel';
    font-weight: 300;
    letter-spacing: 0.9px;
    line-height: 40px;
}

.social-float {
            position: fixed;
            width: 60px;
            height: 60px;
            right: 30px;
            border-radius: 50%;
            text-align: center;
            font-size: 32px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .social-float:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
        }

        /* Pulse animation */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
        }

        /* WhatsApp Button - Original Green */
        .whatsapp-float {
            bottom: 30px;
            background-color: #25D366;
            color: #ffffff;
        }

        /* Instagram Button - Original Gradient */
        .instagram-float {
            bottom: 100px;
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            color: #ffffff;
        }

        /* Responsive */
        @media screen and (max-width: 768px) {
            .social-float {
                width: 55px;
                height: 55px;
                font-size: 28px;
                right: 20px;
            }
            .whatsapp-float {
                bottom: 20px;
            }
            .instagram-float {
                bottom: 85px;
            }
        }


        @media (max-width: 768px) {
    
    /* 1. AOS ke default translate ko override kar do */
    [data-aos] {
        transform: translate3d(0,0,0) !important;
    }

    /* 2. Sirf opacity se animation do (sabse safe & smooth) */
    [data-aos="fade"],
    [data-aos="fade-up"],
    [data-aos="fade-down"],
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        opacity: 0;
        transition-property: opacity !important;
    }

    [data-aos="fade"].aos-animate,
    [data-aos="fade-up"].aos-animate,
    [data-aos="fade-down"].aos-animate,
    [data-aos="fade-left"].aos-animate,
    [data-aos="fade-right"].aos-animate {
        opacity: 1;
    }

    /* 3. Agar zoom-in, zoom-out bhi use kar rahe ho */
    [data-aos="zoom-in"],
    [data-aos="zoom-out"] {
        opacity: 0;
        transform: scale(0.8) !important;
        transition-property: opacity, transform !important;
    }
    [data-aos="zoom-in"].aos-animate,
    [data-aos="zoom-out"].aos-animate {
        opacity: 1;
        transform: scale(1) !important;
    }

    /* 4. Slide effects ko bhi safe bana do (only vertical) */
    [data-aos="slide-up"],
    [data-aos="slide-down"] {
        opacity: 0;
        transform: translateY(50px) !important;
        transition-property: opacity, transform !important;
    }
    [data-aos="slide-up"].aos-animate,
    [data-aos="slide-down"].aos-animate {
        opacity: 1;
        transform: translateY(0) !important;
    }
}