* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* root define  */

:root {
  --primary-color: #201516;
  --secondary-color: white;
  --navbg-color: rgba(0, 0, 0, 0.6);
  --background-color: rgb(201, 14, 14);
  --black-color: #000;
  --box-shadow: rgba(0, 0, 0, 0.3);
  --hover-line: linear-gradient(90deg, #00feba, #5b5ea6, #00feba);
  --background: #2d2d2d;
  --box-shadow-2: 0 0 20px rgba(255, 255, 255, 0.1);
  --yellow-card: #ffef8f;
  --green-card: #d6f8bf;
  --redtop: red;
  --countdown-section: rgb(240, 240, 129);
  --chat-popup: #25d366;
  --faq-chat: #2c1a1e;
  --faq-chat-bg: #3b2226;
  --plan-card-hover: linear-gradient(to bottom, #b80000, #000);
}

/* end */
body {
  font-family: "League Spartan", sans-serif;
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* Navbar */

.custom-navbar {
  background-color: var(--navbg-color);
  width: 80%;
  margin: auto;
  border-radius: 20px;
  height: 100px;
  transition: all 0.3s ease;
  position: absolute;
  top: 30px;
  left: 150px;
}

.navbar-brand .logo {
  height: 60px;
}

.nav-link {
  color: var(--secondary-color) !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--background-color) !important;
}

.icon-btn {
  color: var(--secondary-color);
  font-size: 20px;
  position: relative;
}

/*  */
.header-centr {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.home-head {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 10px;
  width: 100%;
}

.logo {
  height: 50px;
}

/*  */
.head-upper {
  text-align: center;
  position: absolute;
  top: 25%;
  color: var(--secondary-color);
  left: 23%;
}

.head-upper p {
  font-size: 20px;
  margin-bottom: 55px;
  text-align: center;
  font-weight: 600;
}

.head-upper h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 50px;
}
.head-upper h5 {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 500;
}

/*  */
.marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}

.marquee-wrapper {
  opacity: 0.4;
  background: var(--black-color);
  z-index: 5;
}

.marquee {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-track img {
  height: 300px;
}

.item {
  min-width: 150px;
  text-align: center;
  border-radius: 8px;
  flex-shrink: 0;
  font-weight: bold;
}

.item-opacity-low {
  opacity: -10;
  /* Change this value between 0 (fully transparent) and 1 (fully opaque) */
}

.marquee-left .marquee-track {
  animation: scroll-left 60s linear infinite;
}

.marquee-right .marquee-track {
  animation: scroll-right 60s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/*  */

.rating p {
  margin-left: 37%;
  margin-top: -30px;
}

/* Main Section */
.container-hero {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.left {
  flex: 1;
  min-width: 300px;
  padding: 20px;
 
}

.left h6 {
  color: var(--background-color);
  font-size: 20px;
  font-weight: 700;
}

.left h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 50px;
  color: var(--secondary-color);
}

.left p {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.features li {
  margin-bottom: 10px;
  list-style: none;
  color: var(--secondary-color);
}

.features li::before {
  content: "✔";

  margin-right: 10px;
}

.hero-flex {
  display: flex;
}

/*  */
.stat-card {
  background-color: var(--yellow-card);
  color: var(--black-color);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  width: 120px;
  box-shadow: var(--box-shadow);
  position: absolute;
  bottom: 450px;
  right: 21%;
}

.stat-card-green {
  background-color: var(--green-card);
  color: var(--black-color);
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  width: 120px;
  box-shadow: var(--box-shadow);
  position: absolute;
  bottom: 320px;
  right: 37%;
}

.right {
  flex: 1;
  min-width: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
}

/*  */

.container-card {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 0 20px;
}

.card {
  position: relative;
  background-color: var(--black-color);
  padding: 40px 30px;
  border-radius: 12px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--secondary-color);
  width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-2);
  background-color: var(--black-color);
}

.card .icon {
  font-size: 40px;

  margin-bottom: 20px;
  display: block;
  transition: color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 16px;
}

.card p {
  font-size: 14px;
  color: var(--secondary-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  padding: 10px 20px;

  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  font-weight: bold;
  color: var(--box-shadow);
  opacity: 0.3;
}

/*  */
/* Carousel */
.carousel-container {
  overflow: hidden;
  position: relative;
}

.carousel {
  display: flex;
  width: 100%;
  animation: scroll 10s linear infinite;
}

.carousel img {
  border-radius: 20px;
  height: 350px;
  margin: 0 5px;
  object-fit: cover;
}

.carousel-container:hover .carousel {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/*  */
.service {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--secondary-color);
  height: 250px;
  width: 250px;
  background-color: var(--black-color);
  border-radius: 20px;
  margin: 10px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 1;
  overflow: hidden;
}

.service-box h2 {
  font-weight: bold;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  color: var(--secondary-color);
}

.service-box p {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  color: var(--secondary-color);
}

.service-box img {
  height: 100px;
  display: flex;
  justify-content: center;
  /* padding-left: 70px;
  padding-top: 20px; */
}

/*  */

/* GLOWING BORDER ON CARD */
.card::before,
.card::after,
.card span::before,
.card span::after {
  content: "";
  position: absolute;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
  z-index: 0;
}

.card::before {
  height: 2px;
  width: 100%;
  top: 0;
  left: -100%;
}

.card::after {
  width: 2px;
  height: 100%;
  top: -100%;
  left: 0;
  background: var(--hover-line);
}

.card span::before {
  height: 2px;
  width: 100%;
  bottom: 0;
  right: -100%;
  background: var(--hover-line);
}

.card span::after {
  width: 2px;
  height: 100%;
  bottom: -100%;
  right: 0;
  background: var(--hover-line);
}

.card:hover::before {
  animation: slide-horizontal 2s linear infinite;
  opacity: 1;
  left: 0;
}

.card:hover::after {
  animation: slide-vertical 2s linear infinite;
  opacity: 1;
  top: 0;
}

.card:hover span::before {
  animation: slide-horizontal-bottom 2s linear infinite;
  opacity: 1;
  right: 0;
}

.card:hover span::after {
  animation: slide-vertical-right 2s linear infinite;
  opacity: 1;
  bottom: 0;
}

.card span {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

@keyframes slide-horizontal {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

@keyframes slide-vertical {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: -100%;
  }
}

@keyframes slide-horizontal-bottom {
  0% {
    right: -100%;
  }

  50% {
    right: 100%;
  }

  100% {
    right: -100%;
  }
}

@keyframes slide-vertical-right {
  0% {
    bottom: -100%;
  }

  50% {
    bottom: 100%;
  }

  100% {
    bottom: -100%;
  }
}

/*  */

/* Pricing Cards */
/* .ignite-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--black-color);
  color:var(--secondary-color);
  position: relative;
  padding-bottom: 15px;
}

.ignite-header {
  background-color:var(--redtop);
  color: #1a1311;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.ignite-body {
  text-align: center;
  padding: 1.5rem;
  position: relative;
  background-size: cover;
  background-position: center;
}

.ignite-duration {
  background-color: var(--box-shadow);
  display: inline-block;
  padding: 6px 15px;
  border-radius: 8px;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
}

.ignite-price {
  font-size: 32px;
  font-weight: bold;
  color:var(--redtop);
  margin-top: 10px;
}

.ignite-note {
  font-size: 14px;
  color:var(--secondary-color);
}

.ignite-feature {
  background-color:var(--background);
  color:var(--secondary-color);
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  margin: 15px 20px 0;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ignite-feature i {
  color: var(--yellow-card);
  font-size: 16px;
}




.ignite-container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.ignite-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.ignite-col {
  width: 100%;
  max-width: 400px;
} */

/*  */
/* Promo Section */
.tape {
  background: url("img/banner.jpg") no-repeat center center/cover;
  height: 400px;
  width: 100%;
}

.promo-section {
  background-color: var(--box-shadow);
  padding: 40px;
  height: 100%;
  color: var(--secondary-color);
  margin: 0 auto;
  text-align: center;
}

.promo-section img {
  height: 50px;
}

.promo-section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--secondary-color);
}

.promo-section p {
  font-size: 2rem;
  margin-bottom: 30px;

  line-height: 1.6;
  color: var(--secondary-color);
}

.price {
  font-size: 2.5rem;
  color: var(--redtop);
  margin-bottom: 10px;
  font-weight: 700;
}

/* Testimonial */
.testimonial {
  background: url("img/testimonial-bg.cae1cb94.png") no-repeat center
    center/cover;
  text-align: center;
}

/* tape carrosal */

.sristi-one {
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  font-family: Arial, sans-serif;
}

.sristi {
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 15px;
}

.sristi img {
  border-radius: 30px;
}

.sristi h4,
.sristi h6 {
  margin: 0;
}

/*  */
.review {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review img {
  height: 120px;
}

.remote-1 {
  height: 300px;
  margin-top: 250px;
  border-radius: 15px;
}

.remote-2 {
  height: 300px;
  border-radius: 15px;
}

.centr-red {
  color: var(--redtop);
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.centr-red h5 {
  font-size: 25px;
  font-weight: 600;
}

.centr-white {
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

/* Feature Cards */
.feature-card {
  background-color: var(--black-color);
  border-radius: 16px;
  padding: 30px 20px;
  height: 100%;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.feature-card:hover {
  background-color: #272727;
  box-shadow: var(--box-shadow-2);
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.2rem;
  color: #fcd34d;
  margin-bottom: 15px;
}

.feature-card h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.feature-card p {
  color: var(--secondary-color);
}

.feature-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.feature-link:hover {
  text-decoration: underline;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: var(--secondary-color);
}

/* Stream Section */
.strem {
  display: flex;
  padding: 20px;
  align-items: center;
  position: relative;
}

.strem h6 {
  color: var(--redtop);
  font-size: 20px;
  font-weight: 600;
}

.strem h2 {
  color: var(--secondary-color);
}

.strem p {
  color: var(--secondary-color);
}
.tringle {
  position: absolute;
  bottom: 75%;
}

/*  */
/* countdown */
/* .counter-section {
  text-align: center;
  padding: 10px;
  background-color: white;
  margin-left: 100px;
  margin-right: 100px;
  border-radius: 10px;
}

.counters {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 20px;
}

.counter-box {
  flex: 1 1 200px;
  max-width: 250px;
  
}


.icon {
  font-size: 50px;
  color:var(--secondary-color);

  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;

  margin: 0 auto 20px;
}

.counter {
  font-size: 32px;
  font-weight: bold;
  color:var(--black-color);
}

.label {
  font-size: 16px;
  color:var(--black-color);
  margin-top: 8px;
  font-weight: 600;
} */

.counter-section {
  text-align: center;
  padding: 40px 10px;

  margin: 0 100px;
  border-radius: 10px;
}

.counters {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.counter-box {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #dbdbdb;
  border: 2px solid black;
  display: flex;
  border: 4px solid#5a0a0a;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: scale(1.2);
  border: 4px solid#5a0a0a;
  background-color: whitesmoke;
}

.icon {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.counter {
  font-size: 28px;
  font-weight: bold;
  color: var(--black-color);
}

.label {
  font-size: 14px;
  color: var(--black-color);
  font-weight: bold;
  text-align: center;
  padding: 0 10px;
}

/* contact */

.icon-contact {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.icon-num {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

/* channel list */

.container {
  padding: 10px;
  justify-content: center;
  cursor: pointer;
}

.toggle-bar {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
}

.custom-accordion {
  background-color: var(--black-color) !important;
  color: var(--secondary-color) !important;
}

.custom-accordion:hover,
.custom-accordion:focus {
  background-color: darkred !important;
  color: var(--secondary-color) !important;
}

.column {
  flex: 1;
  min-width: 300px;
  /* Ensures they shrink reasonably */
}

/* Accordion styling remains the same */
.accordion-body ul li {
  color: var(--secondary-color);
  margin-bottom: 5px;
  padding: 8px;
  border-radius: 5px;
  list-style-type: none;
}

/* ---------- MEDIA QUERIES ---------- */

/* Card Double */
.card-doubble {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
  position: relative;
}

.card-upper h1 {
  color: var(--secondary-color);
}

.card-upper {
  position: absolute;
  top: 30px;
  left: 120px;
}

.card-upper-right {
  position: absolute;
  bottom: 5%;
  right: 20%;
}

.card-upper-right h1 {
  color: var(--secondary-color);
}

/* whatsapp button */
#whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

#whatsapp-icon {
  height: 70px;
  width: 70px;
  padding: 10px;
}

/* Popup Container */
#chat-popup {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 250px;
  background: var(--background);
  color: var(--secondary-color);
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  z-index: 1001;
  font-family: sans-serif;
}

/* Hidden Class */
.hidden {
  display: none;
}

.popup-header {
  background-color: var(--chat-popup);
  padding: 10px;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.popup-body {
  padding: 15px;
  background-color: var(--background);
  border-radius: 0 0 10px 10px;
}

.open-chat-button {
  display: inline-block;
  margin-top: 10px;
  background-color: var(--chat-popup);
  color: var(--secondary-color);
  text-align: center;
  padding: 10px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

#close-popup {
  cursor: pointer;
}

/*  */

footer a {
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

footer a:hover {
  color: var(--redtop) !important;
  text-decoration: underline;
}

footer p {
  margin-bottom: 0.5rem;
}

.down {
  background-image: url("img/footer-2.png");
}

.footer-1 {
  display: flex;
  justify-content: center;
  background-color: var(--redtop);
  color: var(--secondary-color);
  padding: 10px;
  font-size: bold;
}

.footer-red {
  color: var(--redtop);
}

/* countdown  */

.back-to-top {
  position: fixed;
  bottom: 20%;
  right: 10px;
  display: none;
  padding: 5px;
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 50%;

  cursor: pointer;
}

.back-to-top img {
  height: 30px;
}

.back-to-top:hover {
  transform: scale(1.4);

  background: #fff6f6;
}

/* countdown end */

/* slide bar */

.social-sidebar {
  position: fixed;
  top: 30%;
  right: 2%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 5px;
  z-index: 1000;
}

.social-sidebar .icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  color: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(100, 24, 24, 0.2);
  transition: transform 0.2s, background 0.2s;
}

.social-sidebar .icon:hover {
  transform: scale(1.4);

  background: #fff6f6;
}

/* Specific brand colors (optional) */
.social-sidebar .fb:hover {
  background: #3b5998;
  color: white;
}
.social-sidebar .insta:hover {
  background: #3b5998;
  color: white;
}

.social-sidebar .twitter:hover {
  background: #3b5998;
  color: white;
}

/* slide bar end */

/* FAQ */

.accordion-button {
  background-color: #ffffff;
  color: var(--black-color);
}

.accordion-button:not(.collapsed) {
  background-color: #ffffff;
  color: var(--black-color);
}

.accordion-body {
  background-color: #040613;
  color: var(--secondary-color);
}

.faq-img {
  width: 100%;
  height: auto;
}

.faq-section {
  color: var(--secondary-color);
  font-size: 50px;
}

/* Media Queries */

.pricing {
  background-image: url("img/footer-bg.png");
}

.logo img {
  height: 70px;
}

.movies img {
  height: 365px;
}

.centr-white-movie h1 {
  font-size: 50px;
  margin: 50px;
  font-weight: bold;
  display: flex;
  justify-content: center;
}

/*  */
.unique-container {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  gap: 40px;
  justify-content: center;
  position: relative;
}

.unique-left-section,
.unique-right-section {
  flex: 1 1 400px;
  max-width: 500px;
}

.unique-left-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.unique-left-section img {
  width: 100%;
  border-radius: 20px;
}

.unique-experience-box {
  background-color: var(--redtop);
  height: 120px;

  color: var(--secondary-color);
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  width: fit-content;
  position: absolute;
  top: 60%;
  left: 15%;
}

.unique-benefits-group {
  display: flex;
}

.unique-benefits-column {
  flex: 1;
}

.unique-benefit {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.unique-benefit-icon {
  font-size: 24px;
  margin-top: 25px;
}

.unique-benefit-content {
  margin-top: 25px;
}

.unique-benefit-content h4 {
  margin: 0 0 5px;
  font-size: 18px;
  color: var(--secondary-color);
}

.unique-benefit-content p {
  margin: 0;
  color: var(--secondary-color);
}

/*  */

.plan-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.plan-card {
  background-color: var(--secondary-color);
  color: var(--black-color);
  border-radius: 15px;
  padding: 25px 20px;
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.plan-card-2 {
  background-color: var(--secondary-color);
  color: var(--black-color);
  border-radius: 15px;
  padding: 25px 20px;
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--box-shadow);
  transition: transform 0.3s ease;
}

.plan-card-2:hover {
  transform: translateY(-10px);
  background: var(--plan-card-hover);
  color: var(--secondary-color);
}

.plan-card:hover {
  transform: translateY(-10px);
}

.highlighted-plan {
  background: var(--plan-card-hover);
  color: var(--secondary-color);
}

.plan-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.plan-price {
  font-size: 32px;
  color: var(--redtop);
  font-weight: bold;
  text-align: center;
}

.plan-duration {
  font-size: 14px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 15px;
}

.plan-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.plan-features li {
  margin: 10px 0;
  font-size: 14px;
}

.btn-white {
  background-color: var(--secondary-color);
  color: var(--redtop);
}

.btn-white:hover {
  background-color: var(--secondary-color);
}

.pricing-tape {
  background: url("img/pricing-tape.jpg") no-repeat center center/cover;
  height: 400px;

  display: flex;
  margin: 50px;
}

.promo-section {
  background-color: rgba(0, 0, 0, 0.466);
  width: 100%;
  height: 400px;
  color: var(--black-color);
  margin: 0 auto;
  text-align: center;
}

.promo-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.promo-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.banner img {
  height: 450px;
  margin-top: 120px;
}

.banner h5 {
  font-size: 20px;
  margin-top: 70px;
  margin-left: 8%;
}

.banner h1 {
  font-size: 55px;
  margin-top: 50px;
  font-weight: bold;
  text-align: center;
}

.banner {
  position: absolute;
  top: 100px;
  left: 130px;
}

.about-hero {
  position: relative;
}
.home {
  color: red;
}

.toggle-bar {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.card-hover:hover {
  transform: translateY(-8px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--box-shadow);
}

.card-hover img {
  transition: transform 0.3s ease;
}

/*  */
.card-body img {
  height: 100px;
}

/* form */

.contact-form,
.info {
  background: linear-gradient(to bottom, #b80000, #383434);
  color: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
  width: 40%;
  min-width: 300px;
}

.contact-form h2,
.info h2 {
  color: var(--secondary-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(--black-color);

  border: none;
  color: var(--secondary-color);
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  opacity: 0.9;
  background: var(--secondary-color);
  color: var(--black-color);
}

.info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.privacy-policy {
  background-color: rgba(155, 154, 154, 0.116);
  border-radius: 10px;
  padding: 2rem;
  margin: 4rem auto;
  max-width: 1200px;
  color: var(--secondary-color);
  font-family: Arial, sans-serif;
  line-height: 1.6;
  box-sizing: border-box;
}

.privacy-policy h3 {
  color: whitesmoke;
  font-size: 1.6rem;
  margin-top: 2rem;
}

.privacy-policy p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.privacy-policy h5 {
  color: var(--secondary-color);
  font-size: 1.2rem;
}

/*  */
.hover-border-glow-2 {
  position: relative;
  padding: 12px 30px;
  font-size: 16px;
  color: var(--secondary-color);

  border: none;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}

.hover-border-glow-2:hover {
  background-color: var(--black-color);
  color: var(--secondary-color);
  transform: translateY(-8px);
  box-shadow: var(--box-shadow);
  background-color: #111;
}

.hover-border-glow-2::before {
  content: "";
  position: absolute;

  height: 2px;
  width: 100%;
  top: 0;
  left: -100%;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
}

.hover-border-glow-2::after {
  content: "";
  position: absolute;

  width: 2px;
  height: 100%;
  top: -100%;
  left: 0;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
}

.hover-border-glow-2 span::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  right: -100%;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
}

.hover-border-glow-2 span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  bottom: -100%;
  right: 0;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
}

.hover-border-glow-2:hover::before {
  animation: slide-horizontal 2s linear infinite;
  opacity: 1;
  left: 0;
}

.hover-border-glow-2:hover::after {
  animation: slide-vertical 2s linear infinite;
  opacity: 1;
  top: 0;
}

.hover-border-glow-2:hover span::before {
  animation: slide-horizontal-bottom 2s linear infinite;
  opacity: 1;
  right: 0;
}

.hover-border-glow-2:hover span::after {
  animation: slide-vertical-right 2s linear infinite;
  opacity: 1;
  bottom: 0;
}

.hover-border-glow-2 span {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

@keyframes slide-horizontal {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

@keyframes slide-vertical {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: -100%;
  }
}

@keyframes slide-horizontal-bottom {
  0% {
    right: -100%;
  }

  50% {
    right: 100%;
  }

  100% {
    right: -100%;
  }
}

@keyframes slide-vertical-right {
  0% {
    bottom: -100%;
  }

  50% {
    bottom: 100%;
  }

  100% {
    bottom: -100%;
  }
}

/*  */

.hover-border-glow {
  position: relative;
  padding: 12px 30px;
  font-size: 16px;
  color: var(--secondary-color);
  background-color: red;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}

.hover-border-glow:hover {
  background-color: var(--black-color);
  color: var(--secondary-color);
}

.hover-border-glow::before {
  content: "";
  position: absolute;

  height: 2px;
  width: 100%;
  top: 0;
  left: -100%;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
}

.hover-border-glow::after {
  content: "";
  position: absolute;

  width: 2px;
  height: 100%;
  top: -100%;
  left: 0;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
}

.hover-border-glow span::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  right: -100%;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
}

.hover-border-glow span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  bottom: -100%;
  right: 0;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
}

.hover-border-glow:hover::before {
  animation: slide-horizontal 2s linear infinite;
  opacity: 1;
  left: 0;
}

.hover-border-glow:hover::after {
  animation: slide-vertical 2s linear infinite;
  opacity: 1;
  top: 0;
}

.hover-border-glow:hover span::before {
  animation: slide-horizontal-bottom 2s linear infinite;
  opacity: 1;
  right: 0;
}

.hover-border-glow:hover span::after {
  animation: slide-vertical-right 2s linear infinite;
  opacity: 1;
  bottom: 0;
}

.hover-border-glow span {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

@keyframes slide-horizontal {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

@keyframes slide-vertical {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: -100%;
  }
}

@keyframes slide-horizontal-bottom {
  0% {
    right: -100%;
  }

  50% {
    right: 100%;
  }

  100% {
    right: -100%;
  }
}

@keyframes slide-vertical-right {
  0% {
    bottom: -100%;
  }

  50% {
    bottom: 100%;
  }

  100% {
    bottom: -100%;
  }
}

/*  second card*/
.hover-border-glow {
  position: relative;
  padding: 12px 30px;
  font-size: 16px;
  color: white;

  border: none;
  border-radius: 6px;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
}

.hover-border-glow:hover {
  background-color: black;
  color: white;
}

.hover-border-glow::before {
  content: "";
  position: absolute;

  height: 2px;
  width: 100%;
  top: 0;
  left: -100%;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
}

.hover-border-glow::after {
  content: "";
  position: absolute;

  width: 2px;
  height: 100%;
  top: -100%;
  left: 0;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
}

.hover-border-glow span::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  bottom: 0;
  right: -100%;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
}

.hover-border-glow span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  bottom: -100%;
  right: 0;
  background: var(--hover-line);
  background-size: 200% auto;
  opacity: 0;
}

.hover-border-glow:hover::before {
  animation: slide-horizontal 2s linear infinite;
  opacity: 1;
  left: 0;
}

.hover-border-glow:hover::after {
  animation: slide-vertical 2s linear infinite;
  opacity: 1;
  top: 0;
}

.hover-border-glow:hover span::before {
  animation: slide-horizontal-bottom 2s linear infinite;
  opacity: 1;
  right: 0;
}

.hover-border-glow:hover span::after {
  animation: slide-vertical-right 2s linear infinite;
  opacity: 1;
  bottom: 0;
}

.hover-border-glow span {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

@keyframes slide-horizontal {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

@keyframes slide-vertical {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: -100%;
  }
}

@keyframes slide-horizontal-bottom {
  0% {
    right: -100%;
  }

  50% {
    right: 100%;
  }

  100% {
    right: -100%;
  }
}

@keyframes slide-vertical-right {
  0% {
    bottom: -100%;
  }

  50% {
    bottom: 100%;
  }

  100% {
    bottom: -100%;
  }
}

/* responsve design strat */

/* start */

/* Small devices (phones, 368px and up) */
@media (max-width: 480px) {
  .marquee-track img {
    height: 120px;
  }

  .item {
    min-width: 100px;
  }

  .custom-navbar {
    width: 100%;
    left: 0;
    top: 0;
    height: auto;
    padding: 10px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .navbar-brand .logo {
    height: 40px;
  }

  #refund-not {
    margin-top: 20%;
  }
  .nav-link {
    font-size: 14px;
  }

  .hover-border-glow {
    padding: 8px 16px;
    font-size: 14px;
  }

  .head-upper {
    top: 15%;
    left: 20px;
    right: 20px;
    width: auto;
    padding: 0 10px;
    position: absolute;
  }

  .head-upper p {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .head-upper h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .head-upper h5 {
    font-size: 14px;
  }

  .container-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
  }

  .left h1 {
    font-size: 24px;
    line-height: 32px;
  }

  .left p,
  .features li {
    font-size: 14px;
    line-height: 22px;
  }

  .hero-flex {
    flex-direction: wrap;
    padding: 20px;
    width: 80%;
    height: auto;
    justify-content: center;
  }

  .hero-flex img {
    width: 50%;
    height: auto;
    margin-top: 10px;
    margin-left: 75px;
  }

  .stat-card,
  .stat-card-green {
    position: static;
    width: 40%;
    height: auto;
  }

  .tringle {
    display: none;
  }

  .container-card {
    flex-direction: column;
  }

  .strem img {
    width: 80%;
    height: auto;
    border-radius: 10px;
  }

  .strem {
    flex-direction: column;
    text-align: center;
  }

  .card-doubble {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    overflow: hidden;
    position: relative;
  }

  .card-doubble img {
    height: 350px;
    border-radius: 10px;
  }

  .card-doubble {
    align-items: center;
  }

  .card-upper {
    position: absolute;
    top: 30px;
    left: 120px;
  }

  .card-upper-right {
    position: absolute;
    bottom: 5%;
    right: 20%;
  }

  .container-card {
    align-items: center;
  }

  .blog-cont {
    margin-left: 50px;
  }

  .promo-section h2 {
    font-size: 1.3rem;
  }

  .promo-section p {
    font-size: 0.9rem;
  }

  .price {
    font-size: 1.2rem;
  }

  .button-group button {
    font-size: 0.9rem;
    padding: 10px 16px;
  }

  .centr-white-movie h1 {
    font-weight: 600;
    font-size: 30px;
  }

  .centr-white {
    align-items: center;
    margin: 20px;
  }

  .unique-container {
    position: relative;
  }

  .unique-experience-box {
    position: absolute;
    top: 25%;
    left: 10%;
  }
}

/* Medium devices (480px and up) */
@media (min-width: 481px) and (max-width: 767px) {
  .marquee-track img {
    height: 150px;
  }

  .item {
    min-width: 120px;
  }

  .custom-navbar {
    width: 100%;
    left: 0;
    top: 0;
    padding: 10px;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .navbar-brand .logo {
    height: 50px;
  }

  .nav-link {
    font-size: 15px;
  }

  .head-upper {
    top: 150px;
    left: 40px;
    right: 40px;
    width: auto;
  }

  .head-upper p {
    font-size: 16px;
    margin-bottom: 50px;
  }

  .head-upper h1 {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .head-upper h5 {
    font-size: 15px;
  }

  .container-hero {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .left h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-flex img {
    max-width: 45%;
    padding: 20px;
    height: auto;
  }

  .stat-card,
  .stat-card-green {
    position: static;
    width: 150px;
  }

  .tringle {
    position: absolute;
    top: 5000px;
  }

  .strem img {
    width: 80%;
    height: auto;
    border-radius: 10px;
  }

  .strem {
    flex-direction: column;
    text-align: center;
  }

  .card-doubble {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    overflow: hidden;
    align-items: center;
  }

  .card-doubble img {
    height: 450px;
    border-radius: 10px;
  }

  .card-upper {
    position: absolute;
    top: 6500px;
    left: 190px;
  }

  .card-upper-right {
    position: absolute;
    top: 7250px;
    left: 190px;
  }
}

/* Tablets and small laptops (768px and up) */
@media (min-width: 768px) and (max-width: 1023px) {
  .marquee-track img {
    height: 200px;
  }

  .item {
    min-width: 140px;
  }

  .custom-navbar {
    width: 90%;
    left: 5%;
    top: 20px;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .navbar-brand .logo {
    height: 55px;
  }

  .nav-link {
    font-size: 16px;
  }

  .head-upper {
    top: 200px;
    left: 80px;
    right: 80px;
  }

  .head-upper h1 {
    font-size: 40px;
  }

  .head-upper p {
    font-size: 18px;
  }

  .head-upper h5 {
    font-size: 16px;
  }

  .left h1 {
    font-size: 36px;
    line-height: 45px;
  }

  .hero-flex img {
    width: 45%;
    margin-left: 20px;
  }

  .right {
    position: relative;
  }
  .stat-card {
    position: absolute;
    left: 10%;
  }

  .stat-card-green {
    position: absolute;
    right: 10%;
    bottom: 15%;
  }
  .strem img {
    width: 80%;
    height: auto;
    border-radius: 10px;
  }

  .strem {
    flex-direction: column;
    text-align: center;
  }

  .card-doubble {
    flex-direction: row;
    position: relative;
  }

  .card-doubble img {
    height: 350px;
    border-radius: 10px;
  }

  .strem {
    position: relative;
  }

  .tringle {
    position: absolute;
    left: 2%;
    top: -10%;
  }

  .card-upper {
    position: absolute;
    left: 5%;
  }

  .card-upper-right {
    position: absolute;
    right: 15%;
  }

  .unique-container {
    position: relative;
  }

  .unique-experience-box {
    position: absolute;
    top: 35%;
    left: 25%;
  }
}

/* Larger screens (1024px and up) */
@media (max-width: 1024px) {
  .marquee-track img {
    height: 250px;
  }

  .item {
    min-width: 150px;
  }

  .custom-navbar {
    width: 80%;
    left: 10%;
    top: 30px;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .strem {
    position: relative;
  }

  .unique-container {
    position: relative;
  }

  .unique-experience-box {
    left: 6%;
  }
}

/* useful links part  */

/* Mobile Devices (<= 480px) */
@media (max-width: 480px) {
  .privacy-policy {
    padding: 1rem;
    margin: 1rem;
    border-radius: 6px;
  }

  .privacy-policy h3 {
    font-size: 1.2rem;
  }

  .privacy-policy p {
    font-size: 0.9rem;
  }

  .privacy-policy h5 {
    font-size: 0.95rem;
  }

  .banner h1 {
    font-size: 1.6rem;
  }

  .banner {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-right: 100px;
  }

  .banner h5 {
    font-size: 1rem;
  }

  .banner img {
    display: none;
  }

  .banner-2 h1 {
    font-size: 1.6rem;
  }

  .banner-2 h5 {
    font-size: 1rem;
  }

  .banner-2 img {
    display: none;
  }

  .about-hero img {
    max-width: 100%;
    height: auto;
  }

  .promo-section {
    padding: 10px;
  }

  .promo-section h2 {
    font-size: 1.6rem;
  }

  .promo-section p,
  .price {
    font-size: 0.9rem;
  }

  .promo-section img {
    display: none;
  }

  .hover-border-glow {
    font-size: 0.85rem;
    padding: 8px 12px;
    width: 100%;
  }

  .promo-section button {
    display: block;
    margin: 0.5rem auto;
  }

  .contact-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0 15px;
  }

  .contact-box {
    width: 100%;
    max-width: 100%;
    padding: 20px 14px;
  }

  .contact-icon {
    font-size: 34px;
  }

  .contact-title {
    font-size: 15px;
    text-align: center;
  }

  .contact-info h4 {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* Tablet Devices (<= 768px) */
@media (max-width: 768px) {
  .privacy-policy {
    padding: 1.5rem;
    margin: 2rem 1rem;
  }

  .privacy-policy h3 {
    font-size: 1.4rem;
  }

  .privacy-policy p {
    font-size: 0.95rem;
  }

  .privacy-policy h5 {
    font-size: 1rem;
  }

  .banner h1 {
    font-size: 2rem;
  }

  .banner h5 {
    font-size: 1.1rem;
  }

  .banner img {
    max-width: 90%;
    height: auto;
    margin-top: 1.5rem;
  }

  .banner-2 h1 {
    font-size: 2rem;
  }

  .banner-2 h5 {
    font-size: 1.1rem;
  }

  .banner-2 img {
    max-width: 90%;
    height: auto;
    margin-top: 1.5rem;
  }

  .about-hero img {
    max-width: 100%;
    height: auto;
  }

  .promo-section h2 {
    font-size: 2rem;
  }

  .promo-section p,
  .price {
    font-size: 1rem;
  }

  .hover-border-glow {
    font-size: 0.95rem;
    padding: 10px 16px;
  }

  .contact-wrapper {
    padding: 0 20px;
  }

  .contact-box {
    flex: 1 1 45%;
    padding: 24px 16px;
  }

  .contact-icon {
    font-size: 40px;
  }

  .contact-title {
    font-size: 16px;
  }

  .contact-info h4 {
    font-size: 15px;
  }
}

/* details page */

.card-decoration a {
  text-decoration: none;
  color: white;
}

/*  */

.layout-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-top: 10%;
}

.travel-blog-card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.travel-blog-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.travel-blog-title {
  margin-top: 20px;
  font-size: 28px;
  color: #333;
}

.travel-blog-meta {
  font-size: 16px;
  color: #888;
  margin: 10px 0;
}

.travel-blog-description {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.advertisement-slider {
  width: 300px;

  position: sticky;
  top: 13%;

  padding: 15px;
  border-radius: 10px;

  overflow: hidden;
  height: fit-content;
}

.advertisement-track {
  display: flex;
  gap: 5px;
  animation: slideAds 10s infinite;
  height: 500px;
}

.ad-slide {
  min-width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}

.ad-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

@keyframes slideAds {
  0%,
  20% {
    transform: translateX(0);
  }
  25%,
  45% {
    transform: translateX(-100%);
  }
  50%,
  70% {
    transform: translateX(-200%);
  }
  75%,
  95% {
    transform: translateX(-300%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .travel-blog-title {
    font-size: 24px;
  }
  .ad-slide img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .layout-wrapper {
    flex-direction: column;
  }

  .advertisement-slider {
    width: 100%;
    position: relative;
    top: auto;
  }

  .ad-slide img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .travel-blog-card {
    padding: 15px;
  }

  .travel-blog-title {
    font-size: 20px;
  }

  .ad-slide img {
    height: 180px;
  }
}

@media (max-width: 368px) {
  .travel-blog-title {
    font-size: 18px;
  }

  .travel-blog-meta,
  .travel-blog-description {
    font-size: 14px;
  }

  .ad-slide img {
    height: 150px;
  }
}

/* form */
/* Wrapper */
 .form-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 15px;
  position: absolute;
  top: 50%;
  left: 8%;
} 

/* Form Container */
.form-container {
  display: flex;
   flex-direction: grid;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  width: 100%;
  padding: 25px;
  border-radius: 10px;
  justify-content: space-between;
}

/* Input Group */
.form-group {
  /* flex: 1 1 250px; */
  width: 300px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 5px;
  font-size: 14px;

  font-weight: 500;
}

/* Inputs */
.form-input {
  padding: 12px 15px;
  border: 1px solid #ccc;
  background-color: rgba(0, 0, 0, 0.23);
  color: white;
  border-radius: 6px;
  font-size: 15px;
  transition: border 0.3s;
}

.form-select {
  padding: 12px 15px;
  border: 1px solid #ccc;
  background-color: rgba(0, 0, 0, 0.23);
  color: white;
  border-radius: 6px;
  font-size: 15px;
  transition: border 0.3s;
}

.form-input:focus,
.form-select:focus {
  border-color: #b80000;
  outline: none;
}

/* Full width for button */
.full-width {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
}

/* Button */
.form-btn {
  background-color: red;
  border: none;
  color: white;
  font-weight: bold;
  margin-left: 43%;
  font-size: 16px;
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  max-width: 150px;
  width: 100%;
  transition: background 0.3s;
}

.form-btn:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 480px) {
  .form-wrapper {
    top: 23%;
    left: 15%;
  }
  .Enjoy-Top{
    margin-top: 10%;
  }
  .Includes-all-your{
   display: none;
  }

  .form-group label {
    display: none;
  }

  .form-group {
    margin-left: -10%;
  }

  .form-btn {
    margin-left: 100px;
  }

  .custom-dropdown {
    left: -8%;
    
  }
 
  
}

/*  */

.custom-dropdown {
  width: 300px;
  
  position: relative;
  font-family: Arial, sans-serif;
}

.select-box {
  border: 1px solid #ccc;
  padding: 10px;
  cursor: pointer;
  /* background: #fff; */
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.arrow-down {
  font-size: 12px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: -30%;
  width: 100%;
  border: 1px solid #ccc;
  background-color: rgb(0, 0, 0);
  color: white;
  /* background: #fff; */
  z-index: 10;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 0 0 5px 5px;
  padding: 10px;
}

.dropdown-menu label {
  display: block;
  margin-bottom: 5px;
  cursor: pointer;
}
