/* ============================================
       NEO CAST OTT - STYLISH FONT THEME
       Poppins (body) + Orbitron (headings)
       ALL SECTION HEADINGS CENTERED
       ENLARGED FOOTER | FOOTER IMAGE 250px
       HAMBURGER MENU OPENS BELOW NAVBAR ON MOBILE
       REMOVED BACKGROUND FROM KIDS, MOBILE, TV IMAGES
       Sky Blue · Orange · Premium Animations
       Fixed Navbar | No Button Underlines
       Fully responsive | All original content preserved
    ============================================ */

:root {
  --neo-white: #FFFFFF;
  --neo-offwhite: #F8FAFF;
  --neo-sky: #0EA5E9;
  --neo-sky-light: #38BDF8;
  --neo-sky-dark: #0284C7;
  --neo-orange: #F97316;
  --neo-orange-light: #FB923C;
  --neo-orange-dark: #EA580C;
  --neo-gray-100: #F1F5F9;
  --neo-gray-200: #E2E8F0;
  --neo-gray-300: #CBD5E1;
  --neo-gray-600: #475569;
  --neo-gray-700: #334155;
  --neo-gray-800: #1E293B;
  --neo-gray-900: #0F172A;
  --neo-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --neo-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -1px rgb(0 0 0 / 0.03);
  --neo-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.05), 0 4px 6px -2px rgb(0 0 0 / 0.025);
  --neo-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.025);
  --neo-shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(145deg, #F8FAFF 0%, #F0F9FF 100%);
  color: var(--neo-gray-800);
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-top: 85px;
}

/* Stylish Headings with Orbitron */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-header h2,
.footer-heading,
.price-amount,
.stat-number {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: -0.02em;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--neo-gray-200);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--neo-sky);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neo-sky-dark);
}

/* Premium Spinner */
#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F8FAFF, #F0F9FF);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.premium-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid var(--neo-gray-200);
  border-top: 3px solid var(--neo-sky);
  border-right: 3px solid var(--neo-orange);
  border-bottom: 3px solid var(--neo-sky);
  border-left: 3px solid var(--neo-orange);
  border-radius: 50%;
  animation: spin 0.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Enhanced Fixed Navbar */
.navbar-neo {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(90deg, var(--neo-sky), var(--neo-orange));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  padding: 0rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-neo.scrolled {
  padding: 0.7rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  height: 100px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

.nav-link-neo {
  color: var(--neo-gray-700);
  font-weight: 600;
  margin: 0 0.75rem;
  transition: all 0.3s;
  position: relative;
  font-size: 1rem;
  padding: 0.5rem 0;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
}

.nav-link-neo:hover,
.nav-link-neo.active {
  color: var(--neo-sky);
}

.nav-link-neo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neo-sky), var(--neo-orange));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.nav-link-neo:hover::after,
.nav-link-neo.active::after {
  width: 100%;
}

/* Mobile Navigation - Hamburger opens below navbar */
@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--neo-sky);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .navbar-nav {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  .nav-link-neo {
    margin: 0.5rem 0;
    padding: 0.7rem 0;
  }

  .navbar-neo .d-flex {
    justify-content: center;
    margin-top: 1rem;
    flex-direction: row;
  }

  .navbar-toggler-custom {
    display: block;
  }

  .navbar-neo .container-fluid {
    flex-wrap: wrap;
  }
}

/* Desktop navigation remains same */
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-nav {
    flex-direction: row;
  }

  .navbar-toggler-custom {
    display: none;
  }
}

/* Enhanced Buttons */
.btn-primary-neo {
  background: linear-gradient(135deg, var(--neo-sky), var(--neo-sky-dark));
  border: none;
  padding: 0.7rem 2rem;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.btn-primary-neo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary-neo:hover::before {
  left: 100%;
}

.btn-primary-neo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
  color: white;
}

.btn-outline-neo {
  background: transparent;
  border: 2px solid var(--neo-sky);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  color: var(--neo-sky);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
}

.btn-outline-neo:hover {
  background: var(--neo-sky);
  border-color: var(--neo-sky);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

/* Hero Section */
.hero-neo {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.hero-bg-neo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
  animation: slowZoom 20s ease-in-out infinite;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.hero-neo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.8rem;
  color: white;
  font-weight: 500;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.3rem;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
}

/* Stats Card */
.stats-neo {
  background: var(--neo-white);
  border-radius: 60px;
  padding: 1.8rem 2rem;
  margin-top: -50px;
  position: relative;
  z-index: 5;
  box-shadow: var(--neo-shadow-2xl);
  border: 1px solid rgba(14, 165, 233, 0.2);
  transition: transform 0.3s;
}

.stats-neo:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neo-sky), var(--neo-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Orbitron', sans-serif;
}

/* Glass Cards */
.glass-card-neo {
  background: var(--neo-white);
  border-radius: 36px;
  padding: 2rem;
  border: 1px solid var(--neo-orange-light);
  box-shadow: var(--neo-shadow-lg);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card-neo:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 45px -15px rgba(249, 115, 22, 0.3);
  border-color: var(--neo-orange);
}

/* App Cards */
.app-card-neo {
  background: var(--neo-white);
  border-radius: 28px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.4s;
  border: 1px solid var(--neo-gray-200);
  box-shadow: var(--neo-shadow-sm);
}

.app-card-neo:hover {
  transform: translateY(-10px);
  border: 2px solid var(--neo-orange);
  box-shadow: 0 25px 35px -12px rgba(249, 115, 22, 0.3);
}

.app-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}

.app-card-neo:hover .app-icon {
  transform: scale(1.1);
}

.btn-app-neo {
  background: linear-gradient(135deg, var(--neo-gray-100), var(--neo-gray-200));
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neo-sky);
  transition: all 0.3s;
  display: inline-block;
  margin: 0.2rem;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.btn-app-neo:hover {
  background: linear-gradient(135deg, var(--neo-sky), var(--neo-orange));
  color: white;
  transform: translateY(-2px);
}

/* Pricing Cards */
.pricing-card-neo {
  background: var(--neo-white);
  border-radius: 32px;
  padding: 2rem 1.8rem;
  transition: all 0.4s;
  box-shadow: var(--neo-shadow-md);
  border: 1px solid var(--neo-gray-200);
  position: relative;
  overflow: hidden;
}

.pricing-card-neo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--neo-sky), var(--neo-orange));
}

.pricing-card-neo:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 40px -15px rgba(14, 165, 233, 0.25);
  border-color: transparent;
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neo-sky), var(--neo-orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: 'Orbitron', sans-serif;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  color: var(--neo-gray-600);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.price-features li i {
  color: var(--neo-orange);
  margin-right: 0.6rem;
}

/* FAQ */
.faq-item-neo {
  background: var(--neo-white);
  border-radius: 24px;
  margin-bottom: 1rem;
  border: 1px solid var(--neo-gray-200);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item-neo.active {
  border-color: var(--neo-sky);
  box-shadow: 0 10px 25px -10px rgba(14, 165, 233, 0.2);
}

.faq-question-neo {
  padding: 1.3rem 1.8rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--neo-gray-800);
  font-size: 1.1rem;
  transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
}

.faq-question-neo:hover {
  background: var(--neo-gray-100);
}

.faq-question-neo span i {
  color: var(--neo-sky);
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

.faq-question-neo .fa-chevron-down {
  transition: transform 0.3s;
}

.faq-item-neo.active .faq-question-neo .fa-chevron-down {
  transform: rotate(180deg);
}

.faq-answer-neo {
  padding: 0 1.8rem 1.3rem 1.8rem;
  color: var(--neo-gray-600);
  display: none;
  border-top: 1px solid var(--neo-gray-200);
  line-height: 1.7;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
}

.faq-item-neo.active .faq-answer-neo {
  display: block;
}

/* ENLARGED FOOTER */
.footer-neo {
  background: linear-gradient(145deg, #FFF5EB 0%, #FFE8D6 100%);
  padding: 4rem 0 3rem;
  border-top: 5px solid var(--neo-orange);
  margin-top: 3rem;
  position: relative;
}

.footer-neo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neo-sky), var(--neo-orange), var(--neo-sky));
}

.footer-heading {
  color: var(--neo-orange-dark);
  font-weight: 800;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: -0.02em;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--neo-orange);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--neo-gray-700);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--neo-orange);
  transform: translateX(5px);
}

.footer-links a i {
  color: var(--neo-orange);
  margin-right: 6px;
}

/* ENLARGED FOOTER IMAGE - 250px */
.footer-img {
  width: 250px;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.footer-img:hover {
  transform: scale(1.02);
}

/* Feature Images - No Background (transparent) */
.feature-img-transparent {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Floating Elements */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background: linear-gradient(135deg, #25D366, #20B859);
  padding: 12px 22px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  z-index: 99;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  animation: pulse 2s infinite;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  color: white;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--neo-sky), var(--neo-orange));
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 6px 15px rgba(14, 165, 233, 0.4);
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.5);
  color: white;
}

/* Section Headers - ALL CENTERED */
.section-header {
  text-align: center;
  width: 100%;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neo-gray-900), var(--neo-sky));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
  font-family: 'Orbitron', sans-serif;
  letter-spacing: -0.02em;
  display: inline-block;
}

.section-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--neo-sky), var(--neo-orange));
  margin: 0.5rem auto 2.5rem auto;
  border-radius: 4px;
}

/* Features Grid */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.feature-item {
  background: var(--neo-white);
  padding: 1.2rem;
  border-radius: 28px;
  transition: all 0.3s;
  box-shadow: var(--neo-shadow-sm);
  border: 1px solid var(--neo-gray-200);
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--neo-sky);
  box-shadow: 0 15px 30px -10px rgba(14, 165, 233, 0.25);
}

.feature-item img {
  width: 75px;
  height: 75px;
}

/* Remove background from feature row images (kids, mobile, tv) */
.feature-row-img {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-sub {
    font-size: 1.2rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .navbar-neo {
    padding: 0.7rem 1rem;
  }

  .navbar-brand img {
    height: 48px;
  }

  .btn-primary-neo,
  .btn-outline-neo {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }

  .footer-heading {
    font-size: 1.2rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-img {
    width: 180px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.navbar-toggler-custom {
  background: transparent;
  border: 1.5px solid var(--neo-sky);
  border-radius: 12px;
  padding: 0.5rem 0.8rem;
  color: var(--neo-sky);
  font-size: 1.3rem;
  cursor: pointer;
}

.navbar-toggler-custom:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(14, 165, 233, 0.3);
}


html,
body {
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}