/* RESET & BODY */
* {margin:0; padding:0; box-sizing:border-box;}
body {font-family:"Poppins",sans-serif; background:#0d0d0d; color:#fff; overflow-x:hidden;}
/* ---------- LOADER ---------- */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0e11;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ddd;
  border-top: 6px solid #ff4081;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

/* ---------- HEADER & SLIDER ---------- */
.hero {position: relative; height: 100vh; overflow: hidden;}
.slider {position: absolute; top:0; left:0; width:100%; height:100%;}
.slide {
  position: absolute; width:100%; height:100%;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1);
  transition: opacity 1.2s ease-in-out, transform 10s ease-in-out;
}
.slide.active {opacity:1; transform: scale(1.09); z-index:2;}
.overlay {position: absolute; top:0; left:0; width:100%; height:100%; background: rgba(0,0,0,0.45); z-index:3;}

/* ---------- NAVBAR ---------- */
.navbar {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:25px 60px;
  z-index:4;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
}
.logo {color:#fff; font-size:28px; font-weight:bold; text-transform:uppercase; letter-spacing:2px;}
.nav-links {list-style:none; display:flex; gap:30px;}
.nav-links a {color:#fff; text-decoration:none; font-weight:500; transition:color 0.3s;}
.nav-links a:hover {color:#ff4081;}

/* ---------- HERO CONTENT ---------- */
.hero-content {
  position:absolute;
  top:50%;
  left: 37%;
  transform: translate(-50%,-50%);
  z-index:5;
  text-align:left;
  max-width:800px;
  animation: fadeInUp 1.2s ease-in-out;
}
.hero-content h1 {font-size: 60px;line-height: 1em;color:#fff;font-weight:700;margin-bottom:20px;}
.hero-content h1 span {color:#ff4081;}
.hero-content p {font-size:16px; color:#ddd; margin-bottom:40px; line-height:1.6;}
.btn {display:inline-block; padding:14px 36px; font-size:15px; font-weight:600; border-radius:50px; text-decoration:none; transition: all 0.3s ease; margin-right:15px;}
.btn-main {background-color:#ff4081; color:#fff;}
.btn-main:hover {background:transparent;border:2px solid #fff;background: #ff4081;transform: scale(1.05);}
.btn-second {background:transparent; border:2px solid #fff; color:#fff;}
.btn-second:hover {background:#ff4081; border-color:#ff4081;}

@keyframes fadeInUp {from {opacity:0; transform:translate(-50%,-40%);} to {opacity:1; transform:translate(-50%,-50%);}}

/* ---------- FEATURES ---------- */
.features {display:grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; padding: 40px;}
.feature {
  background: #111; color: #fff; padding: 25px; border-radius: 15px;
  text-align: center; opacity: 0; transform: translateY(40px);
  transition: all 0.6s ease;
}
.feature.show {opacity: 1; transform: translateY(0);}
.icon {font-size: 40px; margin-bottom: 15px; display: inline-block;}
.feature h3 {margin-bottom: 10px;}
.feature p {color: #aaa; font-size: 14px;}
.feature:hover {transform: translateY(-10px) scale(1.03); box-shadow: 0 10px 30px rgba(0,0,0,0.5);}

/* ---------- PROMO ---------- */
.promo {background: linear-gradient(to right, #ffffff 55%, #f6f6f6); padding: 80px 0; font-family: Arial, sans-serif;}
.promo__container {max-width: 1200px; margin:auto; padding:0 24px; display:flex; align-items:center; justify-content: space-between;}
.promo__content {max-width:520px;}
.promo__title {font-size:42px; line-height:1.2; margin-bottom:20px; color:#111;}
.promo__price {color: #e60000;}
.promo__description {color:#555; line-height:1.6; margin-bottom:25px;}
.promo__feature {display:flex; align-items:center; gap:10px; font-weight:bold; margin-bottom:30px;}
.promo__icon {font-size:24px;}
.promo__button {display:inline-block; padding:14px 36px; background:#e60000; color:#fff; text-decoration:none; border-radius:6px; font-weight:bold;}
.promo__media {position: relative;}
.promo__image {width:520px; border-radius:20px;}
.promo__badge {position:absolute; top:18px; right:18px; background:#e60000; color:#fff; padding:14px; border-radius:50%; font-size:14px; font-weight:bold; text-align:center;}

/* ---------- MOVIES CAROUSEL ---------- */
.movies {padding: 80px 0px;}
.movies__header {text-align:center; margin-bottom:50px;}
.movies__tag {color: #f62474;font-size:14px;font-weight:bold;}
.movies__title {font-size:38px; margin:10px 0;}
.movies__text {color:#aaa; max-width:500px; margin:auto;}
.movies__carousel {display:flex; gap:24px; overflow:hidden;}
.movie {min-width:260px; scroll-snap-align:start;}
.movie img {width:100%; height:380px; object-fit:cover; border-radius:14px; display:block;}
.movie h4 {margin:12px 0 4px; font-size:16px;}
.movie span {font-size:14px; color:#f1c40f;}

/* ---------- FOOTER ---------- */
footer {background:#0d0d0d; padding:60px 0 30px; color:#ccc;}
.footer-container {width:90%; max-width:1200px; margin:auto; display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:40px;}
.footer-logo h2 {color:#fff; margin-bottom:15px;}
.footer-logo p {color:#aaa; font-size:15px; line-height:1.6;}
.footer-links h3 {color:#fff; margin-bottom:15px;}
.footer-links ul {list-style:none;}
.footer-links li {margin-bottom:10px;}
.footer-links a {color:#aaa; text-decoration:none; transition:color 0.3s;}
.footer-links a:hover {color:#ff4081;}
.footer-social {display:flex; gap:15px; margin-top:15px;}
.footer-social a {width:40px; height:40px; border-radius:50%; background:rgba(255,255,255,0.1); display:flex; align-items:center; justify-content:center; color:#fff; transition:background 0.3s; text-decoration:none; font-size:18px;}
.footer-social a:hover {background:#ff4081;}
.footer-bottom {text-align:center; margin-top:30px; border-top:1px solid #222; padding-top:20px; font-size:14px; color:#777;}

/* ---------- RESPONSIVE ---------- */
@media(max-width:768px){
  .hero-content h1{font-size: 35px;line-height: 47px;}
  .hero-content p{font-size:14px;}
  .nav-links{display:none;}
  .navbar{/* justify-content:center; */}
.hero-content {
    left: 47%;
}

a.btn.btn-main {
    margin-bottom: 21px;
}
}
@media (max-width: 900px) {
  .promo__container {flex-direction: column; text-align: center;}
  .promo__image {width: 100%; margin-top:40px;}
}
/* ---------- PRICING CARDS ---------- */
.pricing {
  background: #f5f2e9;
  padding: 80px 60px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.pricing__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.pricing__card {
  background: #f9f9f9;
  color: #111;
  border-radius: 15px;
  padding: 30px 20px;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.plan-type {
  font-size: 14px;
  color: #f62474;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pricing__card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.pricing__icons i {
  display: inline-block;
  font-size: 18px;
  background: #fff;
  border-radius: 50%;
  margin: 0 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 40px;
  height: 40px;
  align-items: center;
  align-content: center;
}

.features {
  list-style: none;
  padding: 0 20px;
  margin: 20px auto;
  text-align: left;
}

.features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 23px;
}

.features li::before {
  content: 'âœ”';
  position: absolute;
  left: 0;
  color: #e60000;
  font-size: 14px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.price span {
  font-weight: 700;
  color: #555;
  font-size: 16px;
  text-transform: capitalize;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  background: #f62474;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ff4081;
  transform: scale(1.05);
}

/* Popular badge */
.popular .badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #f62474;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
}

/* Responsive */
@media(max-width:768px){
  .pricing {
    padding: 60px 20px;
  }
  .pricing__container {
    gap: 20px;
  }
}
.faq {
  max-width: 1154px;
  margin: 60px auto;
}

.faq h2 {
  text-align: center;
  color: #ff4081;
  margin-bottom: 40px;
}

.faq-item {
  /* border: 2px solid #ff2b2b; */
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 18px;
  background: #fff;
  border: none;
  font-size: 16px;
  color: #0d0d0d;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f9f9f9;
}

.faq-answer p {
  /* padding: 15px; */
  margin: 0;
  color: #333;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 20px;
}

.icon {
  font-size: 20px;
}
.brands-section {
  /* width: 100%; */
  /* min-height: 400px; */
  /* background: url("images/brands.png") center center no-repeat; */
  /* background-size: cover; */
}

section.brands-section img {
    width: 100%;
}



  .about-section {
  width: 100%;
  padding: 80px 0;
  background: linear-gradient(to right, #0b1220, #0f1b2e);
  color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 0 20px;
}

.about-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

img.tv2 {
    box-shadow: none;
}

.about-content {
  max-width: 500px;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #d1d1d1;
}

.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: #e60000;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  border: 2px solid #fff;
  background: #ff4081;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    max-width: 100%;
  }
}

header.hero.page {
    height: 69vh;
}

header.hero.page h1 {
    font-size: 40px;
}
.about-section {
  padding: 80px 20px;
  background-color: #f9f9f9; /* light background */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Flex container */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Image Styling */


.about-image img:hover {
  transform: scale(1.05);
}

/* Content Styling */
.about-content {
  flex: 1;
  min-width: 300px;
}

.about-content h2 {
  font-size: 2rem;
  color: #f8f6f6;
  margin-bottom: 20px;
}

.about-content p,
.faq-answer p {
  font-size: 1rem;
  line-height: 1.6;
  color: #d7d2d2;
  margin-bottom: 20px;
}
.faq-answer p {
  color: #282727;
  margin-bottom: 9px;
  /* line-height: 1; */
}
/* List Styling */
.faq-answer ul,
.about-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.faq-answer ul li{
    /* margin-left: 15px; */
}
.faq-answer ul li,
.about-content ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #ffffff;
  font-weight: 500;
}

.faq-answer ul li {
    color: #000000;
}
.faq-answer ul li::before,
.about-content ul li::before {
  content: 'âœ”';
  position: absolute;
  left: 0;
  color: #f82475;
}

/* Button Styling */
.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background-color: #f82475;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background-color: #ff4081;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
  }

  .about-image img {
    max-width: 100%;
  }
}


/* Blog Section */
#blog-section {
  padding: 50px 20px;
  background-color: #f4f4f4;
}

#blog-section .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

#blog-section h2 {
  color: #0e182a;
  margin-bottom: 40px;
  font-size: 2em;
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.blog-card h3 {
  color: #ff4081;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.blog-card p {
  font-size: 1em;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #000000;
}

/* Pink Button */
.btn-pink {
  display: inline-block;
  background-color: #ff4081;
  color: #fff;
  padding: 12px 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-pink:hover {
  background-color: #e73370;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-cards {
    flex-direction: column;
    align-items: center;
  }

  .blog-card {
    width: 90%;
  }
}
.center-screen {
    display: flex;
    justify-content: center; 
    align-items: center;     
}
/* Blog Content */
.Blog-content{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
  }
.Blog-content article {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

  .Blog-contentarticle {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }

 .Blog-content article:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  }

  .Blog-content article h1 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #000000;
  }

  .Blog-content article h2 {
    font-size: 1.4em;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #000000;
  }

  .Blog-content article p {
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .Blog-content strong {
    color: #c0215f;
  }

 .Blog-content hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 40px 0;
  }



  /* Responsive */
  @media (max-width: 768px) {
    .Blog-content {
      padding: 15px;
    }

    .Blog-content article {
      padding: 20px;
    }

    .Blog-content header h1 {
      font-size: 1.8em;
    }

    article h1 {
      font-size: 1.5em;
    }

    .Blog-content article h2 {
      font-size: 1.2em;
    }
  }

.refund-policy_content {
    padding: 0 30px;
}

.refund-policy_content ul {
    padding-left: 15px;
    margin: 10px 0;
}

.refund-policy_content h2 {
    margin: 10px 0;
}

/* Mobile Styles */
@media (max-width: 992px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #111;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .nav-links li {
    margin: 15px 0;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links.active {
    max-height: 500px; /* Adjust based on number of links */
  }
}

/* Hamburger animation */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Extra small devices */
@media (max-width: 576px) {
  .navbar {
    padding: 10px 17px;
  }

  .nav-links li a {
    margin: 10px 0;
    font-size: 16px;
  }

  .logo img {
    max-height: 45px;
  }
  .tab {
    width: 50%;
    float: left; 
  }
  .tabs {
   display: block !important;
  }
  .hero-content {
    left: 47%;
  }
}