@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  color: #000;
}

body {
  background: #fff !important;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #333;
}

@media (min-width: 1400px) {
  .subscription-subsection .col-xxl-3 {
    width: 32%;
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (min-width: 1800px) {
  .subscription-subsection .col-xxl-3 {
    width: 29%;

  }
}

/* Flex container */
@media (min-width: 1700px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1680px;
  }
}

/* Navbar */
.navbar-light .navbar-toggler {
  border: none;
}

.navbar {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.main-header-wrapper {
  position: sticky;
  top: 0;
  z-index: 999;
  color: #fff;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.main-header-wrapper .navbar-light .navbar-nav .nav-link {
  color: #000;
  padding: 8px 18px;
}

.navbar .container {
  background: rgba(255, 255, 255, 0.1);
  /* Glass background */
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 500px;
  display: flex;
  align-items: center;
  max-width: 1720px;
  height: 80px;

  padding: 0 40px;

  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  border-radius: 500px;

  /* Glassmorphism blur */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  /* Shadow only on top */
  /* box-shadow: inset 0 6px 0px rgba(0, 0, 0, 0.1); */
  box-shadow: inset 0 7px 17px rgba(0, 0, 0, 0.03);
}

/* Logo */
.logo-img {
  height: 30px;
  object-fit: contain;
  width: 136px;

}

a.nav-link.active,
.nav-link.active {
  color: #5d70f1 !important;
}

/* Menu */
.navbar-nav li a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;

  line-height: 24.91px;
  letter-spacing: 0.5%;
  vertical-align: middle;
  transition: color 0.3s ease;
}

.navbar-nav li a:hover,
.navbar-nav li a.active {
  color: #5d70f1;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
}

/* Hero Section */
.hero-section {
  padding: 3rem 0;
  padding-bottom: 3rem;
}

.hero-title {
  font-weight: 500;
  font-size: 65px;
  line-height: 65px;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-weight: 500;
  font-size: 18px;
  color: #7d7e83;
  line-height: 25px;
  margin: 0 auto;
}

/* Gallery Section */
.gallery-section {
  left: 0px;
  padding: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item img {
  width: 414px;
  height: 600px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Subscription Section */
.subscription-section {
  padding: 4rem 0;
}

.subscription-title {
  font-weight: 500;
  font-size: 45px;

  margin-bottom: 2px;
  line-height: 73px;
}

.subscription-subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 31px;
  color: #7d7e83;
}

.subscription-subsection {
  padding-top: 75px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding-bottom: 75px;

}

.pricing-card {
  border-radius: 42px;
  /* width: 200px; */
  padding: 2.2rem 0rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: -2.87179px 5.74359px 11.2px rgba(0, 0, 0, 0.09);
  margin-bottom: 26px;
  cursor: pointer;
}

.pricing-card.popular {
  border: 5px solid #5d70f1;
  transform: scale(1.09);
}

.popular-badge {
  background: linear-gradient(221deg, rgba(93, 112, 241, 1) 48.09%, rgba(157, 78, 247, 1) 72.15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 22px;
  line-height: normal;
  margin-bottom: 8px;

}

.plan-name {
  font-size: 30px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.9em;

}

.price {
  text-align: center;
}

.amount {
  font-size: 50px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: normal;
}

.period {
  font-weight: 400;
  font-size: 18px;

  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
}

.save-text {
  font-size: 18px;

  color: #5d70f1;
  font-weight: 500;
  margin: 0;
}

.features-list {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 20px;

  color: #000000;
}

.checkmark {
  color: #5d70f1;
  font-weight: bold;
  margin-right: 1rem;
  font-size: 22px;
}

.start-watching-btn {
  background-color: #000;
  border: none;
  width: 56%;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.start-watching-btn:hover {
  background-color: #333;
  transform: translateY(-1px);
}

.aboutus-text {
  font-weight: 500;
  font-size: 60px;
  margin: 0px;
  display: block;
  line-height: 54px;
}

.gradient-text {
  font-weight: 500;
  font-size: 60px;
  background: linear-gradient(279.78deg,
      rgba(93, 112, 241, 0.8) 3.42%,
      rgba(77, 192, 237, 0.8) 48.09%,
      rgba(157, 78, 247, 0.8) 72.15%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 64px;
}

.aboutus-paragraphs {
  max-width: 910px;
  margin: 64px auto 0;

}

.terms-paragraphs {
  max-width: 910px;
  margin: 64px auto 0;
}

.aboutus-paragraphs p {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 370px) {
  .gradient-text {
    font-size: 60px;
  }
}

.footer-section {
  padding: 3rem 0 1rem 0;
}

.footer-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.footer-nav li a {
  color: #000;
  text-decoration: none;
  font-size: 16px;

  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav li a:hover {
  color: #333;
}

.app-download-section {
  background-color: #fff;
  border: 2px solid #000000;
  border-radius: 40px;
  /* padding: 2rem; */
  padding: 2rem;
  margin: 1rem auto;

  margin-bottom: 3rem;

}

.download-text {
  color: #000000;
  font-size: 18px;

  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.download-buttons {
  display: flex;
  justify-content: end;
  gap: 1rem;
}

.download-btn {
  display: inline-block;
  transition: transform 0.3s ease;
  padding: 10px 24px;
  background: #000000;
  border-radius: 40.4427px;
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}

.download-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.download-btn img {
  height: 22px;
  width: 22px;
  object-fit: contain;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;

}

.copyright p {
  color: #000000;
  font-size: 14px;

  font-weight: 400;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  color: #000000;
  font-size: 1.2rem;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: #333;
}

/* contact */

.contactContainer {
  width: calc(100% - 40px);
  margin: 50px 20px;
  padding: 40px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inputGroup {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  margin-bottom: 15px;
  position: relative;
}

.inputGroup input,
.inputGroup textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 16px;
  background-color: white;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inputGroup input:focus,
.inputGroup textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.textarea {
  resize: vertical;
  min-height: 120px;
}

.errorText {
  color: #dc3545;
  font-size: 14px;
  /* position: absolute;
    bottom: -25px; */
}

.submitButton {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 18px;

  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 20px auto 0 auto;
  display: block;
  width: 80%;
  max-width: 400px;
}

.submitButton:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.submitButton:active {
  transform: translateY(0);
}

/* Modal */
.modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  backdrop-filter: blur(4px);
}

.modalBox {
  background: #fff;
  border-radius: 16px;
  padding: 30px 25px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease-in-out;
}

.modalTitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.modalMessage {
  font-size: 17px;
  font-weight: 400;
  color: #7d7e83;
  margin-bottom: 20px;
}

.modalButton {
  background: #000;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modalButton:hover {
  background: #222;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

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

@media (min-width: 992px) and (max-width: 1790px) {
  .navbar {
    margin-left: 4rem;
    margin-right: 4rem;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  .hero-title {
    font-size: 45px !important;
    line-height: 52px !important;
    padding: 3rem;
    padding-bottom: 18px;
  }

  .aboutus-paragraphs {
    max-width: 580px;
  }
}

@media (min-width: 710px) and (max-width: 767px) {
  .hero-title {
    font-size: 30px !important;
    padding: 2rem;
  }
}

/* Responsive Design */
@media (max-width: 1600px) {
  .aboutus-paragraphs p {
    font-size: 20px;
  }

  .aboutus-paragraphs {
    max-width: 1020px;

  }
}

@media (max-width: 1200px) {
  .feature-item {
    font-size: 16px;
  }

  .checkmark {

    margin-right: 12px;
    font-size: 26px;
  }

  .subscription-subsection {
    padding-top: 56px;

    padding-bottom: 56px;
  }

  .plan-name {
    font-size: 25px;

    margin-bottom: 1.5em;
  }

  .popular-badge {
    font-size: 20px;
  }

  .amount {
    font-size: 40px;
  }

  .pricing-card {

    padding: 2rem 0rem;
  }

  .feature-item {
    font-size: 16px;
    align-items: baseline;
  }

  .checkmark {

    margin-right: 0.6rem;
    font-size: 18px;
  }

  .start-watching-btn {
    font-size: 20px;
  }

  .download-text {
    font-size: 16px;
  }

  .download-btn {
    font-size: 14px;
  }

  .subscription-title {
    font-size: 38px;
    line-height: 60px;
  }

  .hero-title {

    font-size: 54px;
    line-height: 56px;

    margin-bottom: 14px;
  }

  .navbar .container {

    height: 70px;
    padding: 0 24px;
  }

  .navbar-nav li a {
    font-size: 16px;
  }

  .logo-img {
    width: 116px;
  }

  .app-download-section {

    padding: 1.6rem;
  }

  .aboutus-text {
    font-size: 48px;
  }

  .gradient-text {
    font-size: 48px;
    line-height: 40px;

  }

  .aboutus-paragraphs p {
    font-size: 18px;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
    gap: 1rem;
  }

  .hero-title {
    font-weight: 500;
    /* Medium weight */
    font-size: 66px;

    line-height: 88.6px;
    letter-spacing: -0.02em;
    /* -2% tracking */
    text-align: center;
    vertical-align: middle;
    margin: 0;
    /* Remove default h1 margin */
  }

  .subscription-title {
    font-size: 2rem;
    line-height: normal;
  }

  .pricing-card.popular {

    margin-bottom: 1rem;
  }

  .footer-nav {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .navbar .container {
    padding: 10px 20px;
    height: auto;
    border-radius: 50px;

    border: 1px solid rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 16px;
    width: 94%;
  }

  .gallery-item img {
    height: 420px;
  }

  .download-text {
    font-size: 15px;
  }

  .feature-item {
    font-size: 20px;
  }

  .checkmark {
    margin-right: 0.5rem;
    font-size: 20px;
  }

  .popular-badge {
    margin-bottom: 16px;

  }

  .features-list {
    width: 280px;
    margin: 0 auto;

  }

  .app-download-section {

    padding: 1.5rem;
  }

  .gradient-text {
    font-size: 45px;
    line-height: 1.3;
  }

  .aboutus-text {
    line-height: 30px;
    font-size: 45px;
  }

  .aboutus-paragraphs p {
    font-size: 18px;
  }

  .aboutus-paragraphs {
    margin: 50px auto 0;

  }

  .hero-section {
    padding: 5rem 0;
    padding-bottom: 3rem;
  }

  .footer-nav li a {

    font-size: 14px;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }

  .hero-subtitle {
    /* font-size: 1rem; */
    font-size: 14px;
    line-height: 18px;
  }

  .subscription-title {
    font-size: 1.75rem;
    line-height: normal;
  }

  .amount {
    font-size: 2.2rem;
  }

  .gallery-item img {
    height: 330px;
  }

  .start-watching-btn {
    font-size: 16px;

  }

  .feature-item {
    font-size: 16px;
  }

  .checkmark {
    font-size: 18px;
  }

  .footer-nav li a {
    font-size: 14px;
  }

  .content-wrapper {
    gap: 14px;
    justify-content: center;
    flex-direction: column;
  }

  .download-text {
    text-align: center;
    font-size: 14px;
    line-height: normal;
  }

  .features-list {
    margin-top: 0;
  }

  .subscription-subtitle {
    font-size: 14px;
    margin-bottom: 0px;
  }

  .popular-badge {
    font-size: 18px;
  }

  .plan-name {
    font-size: 22px;
    margin-bottom: 1.2em;

  }

  .period {
    font-size: 16px;
  }

  .save-text {
    font-size: 16px;
  }

  .hero-section {
    padding: 3rem 0;
  }

  .gradient-text {
    font-size: 35px;
    line-height: 1.3;
  }

  .aboutus-text {
    line-height: 35px;
    font-size: 32px;
  }

  .aboutus-paragraphs p {
    font-size: 16px;
  }

  .aboutus-paragraphs {
    margin: 26px auto 0;
  }

  .footer-nav {
    gap: 1rem;
  }


}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 2.9rem 0;
  }

  .subscription-section {
    padding: 2rem 0;
    font-size: 14px;
  }

  .pricing-card {
    padding: 1.5rem 1rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 0.6rem;

  }

  .app-download-section {
    padding: 14px;
    margin: 1rem auto;
    margin-bottom: 2rem;
    border-radius: 30px;
  }

  .gallery-item img {
    height: 230px;
  }

  .start-watching-btn {
    width: 70%;
    font-size: 14px;
    margin-top: 0;
  }

  .download-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .download-buttons {
    gap: 8px;
  }

  .submitButton {
    font-size: 14px;

  }

  .pricing-card {
    height: auto;
    max-width: 180px;
    margin: 0 auto;
    margin-bottom: 20px;

  }

  .pricing-card.popular {
    border: 3px solid #5d70f1;
  }

  .checkmark {
    margin-right: 8px;
    font-size: 18px;
  }

  .popular-badge {
    margin-bottom: 5px;
    font-size: 14px;

  }

  .plan-name {
    font-size: 16px;

  }

  .amount {
    font-size: 25px;
  }

  .save-text {
    font-size: 14px;
  }

  .period {
    font-size: 14px;
  }

  .navbar .container {
    padding: 4px 16px;
  }

  .subscription-title {
    font-size: 22px;
    line-height: normal;
  }

  .footer-bottom {
    padding-top: 1.3rem;
  }

  .copyright p {
    font-size: 12px;
  }

  .feature-item {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .aboutus-paragraphs p {
    font-size: 14px;
  }

  .gradient-text {
    font-size: 32px;
  }

  .aboutus-text {
    font-size: 32px;
    line-height: 22px;
  }

  .navbar .container {
    top: 12px;
    padding: 3px 24px !important;
  }

  .inputGroup input,
  .inputGroup textarea {
    padding: 12px;
    font-size: 14px;
  }

  .inputGroup {
    margin-bottom: 10px;

  }

  .aboutus-paragraphs {
    max-width: 396px;

  }

  .features-list {
    width: 240px;
  }

  .feature-item {
    font-size: 16px;
  }

}

@media (max-width: 768px) {
  .contactContainer {
    margin: 20px;
    padding: 30px 6px;
  }

  .subscription-subsection {
    margin-left: 5px;
    margin-right: 5px;
    padding: 16px;
    padding-top: 56px;
    padding-bottom: 56px;
    font-size: 12px;

  }

  .logo-img {
    height: 23px;
    width: 115px;
  }

  /* 
  .row {
    flex-direction: column;
    gap: 15px;
    margin-left: 0px;
    margin-right: 0px;
  } */

  .modalBox {
    margin: 20px;
    padding: 25px 20px;
  }

  .navbar-nav li a {
    font-size: 14px;
    padding: 4px 18px;
    line-height: normal;
  }

  .navbar-nav {
    gap: 6px;
    padding-top: 0;
    margin-top: 5px;
  }

  .hero-section {
    padding: 3.5rem 0;
  }

  .logo-img {
    height: 19px;
    width: 82px;
  }

  .navbar-light .navbar-toggler {
    padding: 5px;
  }

  .navbar .container {
    padding: 6px 24px;
  }

}

/* 404 page */

.container-404 {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
  align-items: center;
  position: relative;
}

.content-404 {
  text-align: center;
  color: #fff;
  z-index: 1;
  padding: 20px;
  max-width: 500px;
  border-radius: 8px;
  margin-bottom: 150px;
}

.heading-404 {
  font-size: 48px;
  margin: 0;
  font-weight: 700;
}

.text-404 {
  font-size: 18px;
  margin: 20px 0;
}

.link-404 {
  font-size: 18px;
  color: #000000;
  background: linear-gradient(279.78deg,
      rgba(93, 112, 241, 0.8) 3.42%,
      rgba(77, 192, 237, 0.8) 48.09%,
      rgba(157, 78, 247, 0.8) 72.15%);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 6px rgb(0 0 0 / 0.2);
}

@media (max-width: 330px) {
  .download-btn {
    font-size: 10px;
  }

  .subscription-subtitle {
    font-size: 13px;
  }
}

@media (max-width: 400px) {
  .hero-subtitle {
    font-size: 14px;
  }

  .aboutus-paragraphs {
    max-width: 340px;

  }
}


@media (prefers-color-scheme: dark) {
  body {
    background: #fff;
    color: #000;
  }
}

/* .slider-track {
    display: flex;
    animation: scroll 20s linear infinite;
  }
  
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  } */

.slider-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.slider-container .slider-track {
  display: flex;
  width: calc(2 * 100%);
  animation: scroll 30s linear infinite;
}

.slider-container .slide {
  flex: 0 0 auto;
  width: 414px;
  height: 600px;

}

.slider-container .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1200px) {
  .slider-container .slide {

    width: 352px;
    height: 510px;
  }
}

@media (max-width: 991.5px) {
  .slider-container .slide {
    width: 300px;
    height: 452px;
  }
}

@media (max-width: 767px) {
  .slider-container .slide {
    width: 250px;
    height: 352px;
  }
}

@media (max-width: 576px) {
  .slider-container .slide {
    width: 200px;
    height: 290px;
  }
}