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

/* .body{
    background-color: #b6b5b533;
} */

:root {
  /* Provided Colors */
  --primary-color: #ffd000;
  --secondary-color: black;
  --accent-color: white;
  --gradient-bg: linear-gradient(130deg, #ffffff, #ffea03, #fff);
  --gradient-button-hover: linear-gradient(130deg, #a1a09e, #ffffff, #c9c7bc);
  --gray-color: #f3f3f3;
  --family-button-hover: linear-gradient(130deg, #999999, #ffffff, #a1a1a1);
}

.navbar {
  background-color: var(--primary-color);
}

.container {
  padding: 10px;
  justify-content: center;
}

.custom-subscribe {
  margin-left: 20px;
  align-self: center;
}

/* Navbar Links Styling */
.navbar-nav .nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color);
  /* Purple hover color */
}

/* Subscribe Button Styling */
.custom-subscribe:hover {
  background-color: var(--accent-color);
  color: var(--secondary-color);
  border: none;
}

/* Responsive Navbar Toggle Button */
.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler-icon {
  background-color: var(--accent-color);
}

/* form */

.grey {
  background-color: var(--gray-color);
}

.contact-form,
.info {
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 12px;
  width: 40%;
  min-width: 300px;
}

.contact-form h2,
.info h2 {
  color: var(--accent-color);
  margin-bottom: 20px;
}

.contact-form form label {
  display: block;
  margin-top: 15px;
}

.contact-form input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 5px;
}

.contact-form button {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  /* background: linear-gradient(to right, #000000, #ffffff); */
  background: var(--gradient-bg);

  border: none;
  color: var(--secondary-color);
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  opacity: 0.9;
  background: var(--gradient-button-hover);
  color: var(--secondary-color);
}

.info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* form end */

/*  */

.banner {
  /* background-image: url("https://www.guru99.com/images/screenshots/xtreme-hd-iptv-films.png"); */
  position: absolute;
  top: 0;
  left: 0;
  padding: 100px;
  margin-top: 50px;
  width: 100%;
  height: 100%;
  color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.banner-img {
  height: 900px;
  display: block;
  margin-top: 35px;
}

.banner h1 {
  color: var(--secondary-color);
  font-size: 60px;
}

.banner p {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 400;
}

.banner button {
  background-color: var(--primary-color);
  border: 1px solid var(--secondary-color);
  height: 50px;
  width: 200px;
  border-radius: 20px;
  border: none;
  font-size: 20px;
  color: var(--secondary-color);
}

.banner button:hover {
  background-color: var(--secondary-color);
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

/* countdown */
.counter-section {
  text-align: center;
  padding: 10px;
  background-color: var(--primary-color);
}

.counter-section h2 {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 50px;
}

.counters {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.counter-box {
  flex: 1 1 200px;
  max-width: 250px;
}

.icon {
  font-size: 50px;
  color: var(--secondary-color);
  background-color: var(--accent-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.counter {
  font-size: 32px;
  font-weight: bold;
  color: var(--secondary-color);
}

.label {
  font-size: 16px;
  color: var(--secondary-color);
  margin-top: 8px;
}

/* countdown */

.family {
  display: flex;
  justify-content: space-around;
  padding: 100px;
}

.family img {
  height: 250px;
  border-radius: 20px;
  margin-right: 40px;
}

.family h2 {
  color: var(--primary-color);
  font-size: 25px;
}

.family h1 {
  font-size: 40px;
}

.family p {
  font-size: 20px;
}

.centr {
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  font-weight: 600;
  margin: 20px;
}

.pricing-card {
  border-radius: 10px;
  border: 1px solid var(--secondary-color);
  padding: 20px;
  text-align: center;
  box-shadow: var(--gray-color);
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: scale(1.06);
}

.pricing-card img {
  height: 18px;
}

.highlight {
  background-color: var(--primary-color);
  color: var(--accent-color);
}

.price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
}

.highlight .price {
  color: var(--accent-color);
}

.list-unstyled li {
  padding-bottom: 5px;
}

.highlight button {
  border: none;
  background-color: var(--secondary-color);
  height: 40px;
  width: 180px;
  color: var(--accent-color);
  border-radius: 20px;
}

.highlight button:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  height: 40px;
  width: 200px;
  border-radius: 20px;
}

.border button {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  height: 40px;
  width: 180px;
  border: none;
  border-radius: 20px;
}

.border button:hover {
  border: none;
  background-color: var(--secondary-color);
  height: 40px;
  width: 200px;
  color: var(--accent-color);
  border-radius: 20px;
}

.family button {
  border: none;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  height: 50px;
  width: 200px;
  border-radius: 20px;
  font-size: larger;
}

.family button:hover {
  border: none;
  background-color: var(--secondary-color);
  background: var(--gradient-button-hover);
  height: 50px;
  width: 200px;
  border-radius: 20px;
  font-size: larger;
}

/* card-style */

.card-icon {
  height: 60px;
  margin-bottom: 15px;
}

.feature-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(128, 0, 255, 0.1);
  /* Soft purple shadow */
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.card-title {
  font-weight: bold;
}

/* card-style */

.tape {
  display: flex;
  background-color: var(--primary-color);
  justify-content: space-around;
  padding: 30px;
}

.tape h1 {
  font-size: 40px;
}

.tape h3 {
  font-size: 40px;
}

.tape p {
  font-size: 20px;
}

.tape img {
  height: 250px;
  border-radius: 20px;
}

.tape button {
  height: 50px;
  width: 150px;
  border: none;
  background: var(--gradient-bg);
  color: var(--secondary-color);
  border-radius: 10px;
}

.tape button:hover {
  height: 55px;
  width: 160px;
  border: 1px solid var(--secondary-color);
  border: none;

  background: var(--gradient-button-hover);
  color: var(--secondary-color);
  font-size: 18px;
  border-radius: 10px;
}

.four-img img {
  height: 200px;
}

.four-img {
  display: flex;
  justify-content: space-around;
  padding: 50px;
}

.review {
  display: flex;
  justify-content: space-around;
}

.review img {
  height: 560px;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
}

.touggle {
  display: flex;
  justify-content: space-around;
  padding: 100px;
}

.touggle img {
  height: 300px;
  border-radius: 20px;
}

/* blog */

.centr-black {
  font-size: 20px;
  display: flex;
  justify-content: center;
}

.card {
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
}

.border {
  border: 2px solid var(--secondary-color);
  margin-bottom: 30px;
}

/* connections */

.connection {
  display: flex;
  justify-content: space-evenly;
  padding: 50px;
}

.connection button {
  height: 50px;
  width: 200px;
  border: none;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 10px;
}

.connection button:hover {
  height: 50px;
  width: 200px;
  border: none;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
}

/* carrosal conntenar */

.carousel-container {
  overflow: hidden;
  /* white-space: nowrap; */
  position: relative;
}

.carousel {
  display: flex;
  width: 100%;
  animation: scroll 10s linear infinite;
  padding: 30px;
}

.carousel img {
  border: 2px solid var(--primary-color);
  height: 400px;
  margin: 0 5px;
  border-radius: 10px;
  object-fit: cover;
}

.carousel-container:hover .carousel {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-500px);
  }
}

.channel-list {
  display: flex;
  padding: 50px;
}

.channel-btn {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.channel-btn:hover {
  background-color: gold !important;
}

.accordion-body ul li {
  color: var(--secondary-color);
  margin-bottom: 5px;
  padding: 8px;
  border-radius: 5px;
  list-style-type: none;
}

.column {
  flex: 1;
}

.term {
  background-color: var(--gray-color);
  border-radius: 10px;
  padding: 50px;
  margin: 20px;
}

.term h5 {
  color: var(--secondary-color);
}

.term h3 {
  color: var(--primary-color);
}

/* Toggle-bar  */

.toggle-bar {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

/* responcive 368 */

@media (max-width: 368px) {
  .navbar {
    padding: 10px 0;
    text-align: center;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 8px 10px;
  }

  .container {
    display: flex;
    justify-content: space-around;
  }

  .custom-subscribe {
    margin-left: 0;
    margin-top: 10px;
  }

  .banner {
    padding: 30px 10px;
    margin-top: 30px;
    align-items: center;
    text-align: center;
  }

  .banner h1 {
    font-size: 30px;
  }

  .banner p {
    font-size: 16px;
  }

  .banner button {
    width: 100%;
    font-size: 16px;
  }

  .banner-img {
    height: auto;
    max-height: 400px;
    width: 100%;
  }

  .family {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .family img {
    margin: 0 auto 20px;
    height: 200px;
    padding: 20px;
  }

  .family h1 {
    font-size: 28px;
  }

  .family p {
    font-size: 16px;
  }

  .contact-form,
  .info {
    width: 100%;
    padding: 20px;
  }

  .counters {
    flex-direction: column;
    gap: 20px;
  }

  .counter-box {
    max-width: 100%;
  }

  .tape {
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .tape h1,
  .tape h3 {
    font-size: 24px;
  }

  .tape p {
    font-size: 16px;
  }

  .tape img {
    height: 200px;
    margin-bottom: 20px;
    padding: 20px;
  }

  .four-img {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .four-img img {
    height: 150px;
    margin-bottom: 20px;
  }

  .contact-info {
    flex-direction: column;
    padding: 20px;
    align-items: center;
  }

  .contact-form {
    margin-bottom: 20px;
  }

  .review {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .review img {
    width: 90%;
    height: auto;
  }

  .touggle {
    flex-direction: column;
    align-items: center;
    padding: 30px;
  }

  .touggle img {
    height: 200px;
    margin-bottom: 20px;
  }

  .connection {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
  }

  .carousel img {
    height: 200px;
  }

  .channel-list {
    flex-direction: column;
    padding: 20px;
  }

  .term {
    padding: 20px;
    flex-wrap: wrap;
  }

  .toggle-bar {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 0;
    text-align: center;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 8px 10px;
  }

  .container {
    display: flex;
    justify-content: space-around;
  }

  .custom-subscribe {
    margin-left: 0;
    margin-top: 10px;
  }

  .banner {
    padding: 30px 10px;
    margin-top: 30px;
    align-items: center;
    text-align: center;
  }

  .banner h1 {
    font-size: 30px;
  }

  .banner p {
    font-size: 16px;
  }

  .banner button {
    width: 100%;
    font-size: 16px;
  }

  .banner-img {
    height: auto;
    max-height: 400px;
    width: 100%;
  }

  .family {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .family img {
    margin: 0 auto 20px;
    height: 200px;
    padding: 20px;
  }

  .family h1 {
    font-size: 28px;
  }

  .family p {
    font-size: 16px;
  }

  .contact-form,
  .info {
    width: 100%;
    padding: 20px;
  }

  .counters {
    flex-direction: column;
    gap: 20px;
  }

  .counter-box {
    max-width: 100%;
  }

  .tape {
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .tape h1,
  .tape h3 {
    font-size: 24px;
  }

  .tape p {
    font-size: 16px;
  }

  .tape img {
    height: 200px;
    margin-bottom: 20px;
    padding: 20px;
  }

  .four-img {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .four-img img {
    height: 150px;
    margin-bottom: 20px;
  }

  .contact-info {
    flex-direction: column;
    padding: 20px;
    align-items: center;
  }

  .contact-form {
    margin-bottom: 20px;
  }

  .review {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .review img {
    width: 90%;
    height: auto;
  }

  .touggle {
    flex-direction: column;
    align-items: center;
    padding: 30px;
  }

  .touggle img {
    height: 200px;
    margin-bottom: 20px;
  }

  .connection {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
  }

  .carousel img {
    height: 200px;
  }

  .channel-list {
    flex-direction: column;
    padding: 20px;
  }

  .term {
    padding: 20px;
    flex-wrap: wrap;
  }

  .toggle-bar {
    flex-direction: column;
  }
}

/* 768px responsive */

@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
    text-align: center;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 8px 10px;
  }

  .container {
    display: flex;
    justify-content: space-around;
  }

  .custom-subscribe {
    margin-left: 0;
    margin-top: 10px;
  }

  .toggle-bar {
    flex-direction: column;
  }

  .banner {
    position: relative;
    padding: 60px 20px;
    align-items: center;
    text-align: center;
  }

  .banner h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .banner p {
    font-size: 16px;
    line-height: 1.5;
  }

  .banner button {
    width: 160px;
    height: 45px;
    font-size: 16px;
  }

  .banner-img {
    height: auto;
    max-height: 400px;
    width: 100%;
  }

  .family {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .family img {
    margin: 0 auto 20px;
    height: 200px;
    padding: 20px;
  }

  .family h1 {
    font-size: 28px;
  }

  .family p {
    font-size: 16px;
  }

  .contact-form,
  .info {
    width: 100%;
    padding: 20px;
  }

  .counters {
    flex-direction: column;
    gap: 20px;
  }

  .counter-box {
    max-width: 100%;
  }

  .tape {
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .tape h1,
  .tape h3 {
    font-size: 24px;
  }

  .tape p {
    font-size: 16px;
  }

  .tape img {
    height: 200px;
    margin-bottom: 20px;
    padding: 20px;
  }

  .four-img {
    flex-wrap: wrap;
    align-items: center;
    padding: 20px;
  }

  .pricing-card {
    padding: 15px;
  }

  .pricing-card h5 {
    font-size: 18px;
  }

  .pricing-card .price {
    font-size: 24px;
  }

  .pricing-card button {
    width: 130px;
    font-size: 14px;
  }

  .pricing-card img {
    height: 30px;
  }

  .centr-black {
    padding: 10px;
  }

  .review {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .review img {
    width: 90%;
    height: auto;
  }

  .touggle {
    flex-direction: column;
    align-items: center;
    padding: 30px;
  }

  .touggle img {
    height: 200px;
    margin-bottom: 20px;
  }

  .connection {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px;
  }

  .carousel img {
    height: 200px;
  }

  .channel-list {
    flex-direction: column;
    padding: 20px;
  }

  .term {
    padding: 20px;
    flex-wrap: wrap;
  }
}

/* responcive 1024 */

@media (max-width: 1024) {
  .four-img {
    flex-direction: column;
  }

  .banner img {
    height: 200px;
  }

  .banner-img {
    height: auto;
    max-height: 400px;
    width: 100%;
  }
}

.test {
  border: 1px solid black;
  height: 45px;
  background-color: var(--secondary-color);
  color: white;
  width: 100px;
  text-align: center;
  border-radius: 10px;
}

.test:hover {
  background-color: var(--gray-color);
  color: var(--secondary-color);
  border: none;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  gap: 0.5rem;
  background: none;
  border: none;
  color: black;
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  width: 100%; /* Optional, makes button span parent width */
}


.dropdown-btn:hover {
  color: white;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: black;
  border: 1px solid black;
  border-radius: 4px;
  width: 250px;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-content.show {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  color: white;
  text-decoration: none;
  font-size: 0.875rem;
}

.dropdown-content a:hover {
  background-color: #333;
  color: yellow;
}

/* Scrollbar Styling */
.dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
  background: #1a1a1a;
}

.dropdown-content::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
  background: #444;
}

@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    width: 100%;
    max-height: 300px;
    margin-top: 0.5rem;
  }
  .dropdown-btn {
    text-align: center;
    align-items: center;
  }
  .test {
    margin-top: 10px;
  }
}
