* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
 
  background-color: #1e1e1e;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  z-index: 2;
}
.head {
  position: fixed;
  width: 100%;
  background-color: black;
  z-index: 2;
}
header {
  background-color: black;
  max-width: 90%;
  margin: 0 auto;
}
nav img {
  height: 3em;
}
nav {
  background-color: black;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0rem;
}

nav ul {
  color: black;
  display: flex;
  gap: 15px;
  list-style-type: none;
  padding: 0;
}
nav ul a {
  color: #fff;
  text-decoration: none;
}
.nav-link,
nav span {
  transition: 0.3s;
}
nav span:hover,
.nav-link:hover {
  color: rgba(239, 72, 36, 255);
}

.main-nav {
  font-weight: 300;
  gap: 5rem;
  
}
.hide{
  display: none;
}

.social-nav {
  padding-right: 2em;
}
.hamburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}
.home-hero {
  background-image: url(../img/pexels-photo-7991275.jpeg);
  background-size: cover;
  background-position: center;
  padding: 9rem 0;
  color: #fff;
  background-attachment: fixed;
  height: 43rem;
}
.home-contain {
  max-width: 500px;
}
.home-hero span {
  margin-bottom: 1rem;
  display: block;
  font-size: small;
  text-transform: uppercase;
  color: rgba(239, 72, 36, 255);
}
.home-hero h2 {
  font-weight: 900;
  font-size: xxx-large;
  margin: 1rem 0;
}
.btn-solid {
  margin: 2.5rem 0;
  display: inline-block;
  padding: 0.85rem;
  border-radius: 3px;
  color: #fff;
  background-color: rgba(239, 72, 36, 255);
}
.btn-solid:hover {
  cursor: pointer;
  background-color: #000;
  color: rgba(239, 72, 36, 255);
  font-weight: 500;
  border-radius: 3px;
}
.home-btns a {
  text-decoration: none;
}

.slider {
  padding: 3rem 0;
  margin: 0;
  overflow: hidden;
  display: flex;
  gap: 0.75rem;
}
#supported-services {
  padding: 2rem 0;
}
/* Style for the card container */
.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card:first-child {
  border-radius: 15px 0 0 15px;
}

.card:last-child {
  border-radius: 0 15px 15px 0;
}

/* Style for individual cards */
.card {
  width: 400px;
  height: 270px;
  border: 1px solid #fdf7fb1a;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.card h2 {
  margin: 1em 0 1em 0;
}

.movies-card img {
  height: 350px;
  border-radius: 10px;
  margin: 0 0em 0 0;
}

.movies-card h2 {
  text-align: center;
  color: #fff;
  padding: 3rem;
  font-size: xxx-large;
}
.movies-heading {
  margin: auto;
  width: 70%;
}

#faq h2,
#pricing h2 {
  text-align: center;
  color: #fff;
  font-size: xx-large;
  padding: 3rem 0 0 0;
}
/* Style for the payment plan container */
.payment-plan {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Style for individual payment plan cards */
.plan-card {
  position: relative;
  width: 500px;
  height: 550px;
  border: 1px solid #fdf7fb1a;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 2rem;
}

.plan-card ul {
  list-style-type: none;
  text-align: left;
  padding: 2rem;
}
.plan-card li {
  border-bottom: 1px solid rgba(25, 59, 250, 0.6);
}

.plan-card li::before {
  content: "\2713";
  position: absolute;
  left: 30px;
}

.plan-card h2 {
  font-size: large;
}
.plan-card p {
  font-size: x-large;
  font-weight: 900;
}
.pay-btn,
.pay-btn:hover {
  border-radius: 40px;
  padding: 0.5em 1em;
  margin: 0.75rem;
}
.extra {
  height: 300px;
  align-items: center;
  justify-content: center;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 600px;
  text-align: center;
  color: #fff;
  font-size: x-large;
}
.icn {
  font-size: xxx-large;
}
.icn span {
  padding: 0 0.5rem;
}
.second-card [class*="fa-"] {
  font-size: 550%;
  /* padding: 2rem; */
}

/* Style for the FAQ container */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

#faq {
  margin-bottom: 3rem;
}

/* Style for individual FAQ items */

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #fdf7fb1a;
  border-radius: 8px;
}

.question {
  padding: 10px;
  background-color: #fafdf708;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question::after {
  content: "▼"; /* Add a down arrow icon */
  font-size: 18px;
}

/* .answer {
    background-color: #000;
    max-height: 0;
    padding: 0 .75rem;
    color: #fff;
    overflow: hidden;
    transition: max-height 0.3s ease; 
} */

.answer {
  background-color: #000;
  /* max-height: 0; */
  color: #fff;
  overflow: hidden;
  padding: 10px;
  display: none;
}

.actives {
  display: block;
}

.question.active::after {
  content: "▲";
  font-size: 18px;
}

/* Add a class to change the arrow direction and max-height when the answer is shown */
.question.active::after {
  content: "▲"; /* Change to an up arrow icon */
}

/* footer section */

footer {
  background-color: #232323;
  text-align: center;
  padding: 4rem 0;
  color: #fff;
}
footer .fa-facebook-f:before,
footer .fa-instagram:before,
footer .fa-twitter::before,
footer .fa-whatsapp:before,
footer .fa-envelope::before {
  color: white;
}

footer .fa-facebook-f:hover::before,
footer .fa-instagram:hover::before,
footer .fa-twitter:hover::before,
footer .fa-whatsapp:hover::before,
footer .fa-envelope:hover::before {
  color: rgba(239, 72, 36, 255);
}

footer ul {
  list-style-type: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 3rem;
  font-size: 3rem;
}
/* -------------------------------------------
media queries 
----------------------------------------------*/

@media (max-width: 769px) {
  
  

  .hamburger {
    display: block;
    margin-top: 0;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .social-nav{
    display: none;
  }
  .main-nav {
    position: fixed;
    left: -200%;
    top: 70px;
    gap: 3rem;
    background-color: rgba(0, 0, 0);
    width: 100%;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    padding: 2rem 0 2rem 1%;
    flex-wrap: wrap;
  }
  .hide{
    display: inline-block;
  }
  .nav-item {
    margin: 16px 0;
  }

  .main-nav.active {
    left: 0;
  }
  
  .home-contain {
    padding-top: 8rem;
  }
  .home-contain h2 {
    font-size: 200%;
  }
  .home-hero {
    font-size: 80%;
  }
  .payment-plan,
  .card-container {
    flex-direction: column;
  }
 
  .card:first-child {
    border-radius: 15px 15px 0 0;
  }

  .card:last-child {
    border-radius: 0 0 15px 15px;
  }
  .card {
    height: 250px !important;
  }
  .card {
    width: 90%;
  }
  .movies-card img {
    height: 250px;
  }
  .swiper-wrapper {
    margin: auto;
  }

  .movies-heading {
    width: 100%;
  }
  .movies-card h2 {
    font-size: xx-large;
  }
  .plan-card ul {
    text-align: center;
  }
}
@media (max-width: 321px ){
  .plan-card {
    height: 730px !important;
  }
  .movies-card img {
    margin-left: 10px !important;
    
  }
  
}

@media (max-width: 480px ){
  .movies-card img {
    height: 200px !important;
  }
  .plan-card {
    height: 600px;
  }
  
} 

@media (max-width: 640px) {
  .home-contain {
    margin: auto;
  }
  .movies-card img {
    margin-left: 20px;
    
  }
  .card {
    height: 330px !important;
  }

  .movies-card h2 {
    font-size: x-large;
  }
  .plan-card {
    width: 400px;
  }
  
}

@media (max-width: 1024px) {
  .card {
    height: 315px;
  }

  .movies-card img {
    height: 300px;
  }
  .payment-plan {
    flex-direction: column;
  }
  .plan-card {
    width: 90%;
  }
  
  
  
}

/* -------------------------------------------
media queries end
----------------------------------------------*/



/* ============== Videos Page =================== */

.for-gap{
  height: 4rem;
}

.tutorial-container .video-heading{
  font-size: 3rem;
  margin: 2rem 0;
  text-transform: capitalize;
  color: #fff;
  text-align: center;
}

.video-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

}

.video-container .video{
  height: 15rem;
  width: 25rem;
  margin: 2rem;
  overflow: hidden;
  box-shadow: 0 .5rem 1rem #fff;
  border-radius: 1rem;
}

.video-container .video video{
  height: 100%;
  width: 100%;
  object-fit: cover;
  outline: none;
  border: none;
  cursor: pointer;
}

.video-container .video video:hover{
  transition: .1s linear;
  transform: scale(1.09);
}

.video-container .pop-up-video{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  width: 100%;
  display: none;
}

.video-container .pop-up-video video{
  width: 750px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  border: .3px solid #fff;
  object-fit: cover;
  
}

.video-container .pop-up-video span{
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 50px;
  color: #fff;
  font-weight: bolder;
  z-index: 100;
  cursor: pointer;
}

@media (max-width: 769px){
  .video-container .pop-up-video video{
    width: 95%;
  }
}