.body{
    margin:0;
    padding: 0;
    background-color: black !important;
    
    font-family: 'Montserrat';
  
}
.index{
     background-color: black !important;
}
.row{
  /*  border: 1px solid green;*/
    width:auto;
}
.col-6{
    border: 1px solid green;
    width:100%;  
}
.bg-area1{
    /*position: relative;*/
    background-color: black;
    background-size:100vw;
    background-position: center center;
    height: auto;
    width: 100vw;
    padding:230px 50px;
    /*align-items: center;
    justify-content: center;*/
    text-align: center;
    
   
}
.bg-area1::before{
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    background-image:url("pic/bg-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: blue;
}
.content{
    margin-top: -80px;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.heading{
    padding-top: 60px;
}
.navbar {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  z-index: 1000;
  ##background: transparent !important;
  box-shadow: none !important;
  color: white; 
  /*background-color: brown;*/
}
.box{
    display: flex;
}
.logo{
    padding-top: 25px;
    height: auto!important;
    width: 160px; 
}

/* Make dropdown background transparent */
.dropdown-menu {
  background-color: rgb(187, 183, 183);
  opacity: 0.9;  /* Black with 60% opacity */
  border: none;  /* Removes border */
  
}

/* Make dropdown text white */
.dropdown-menu li a {
  color:black;
  background-color: transparent;
  padding-right:5ch;
}

/* Hover effect */
.dropdown-menu li a:hover {
  box-shadow: none !important;
  color: white;
  background-color: transparent!important;
}
.btn{
    outline-color: #fff;
    color: #fff !important;
    box-shadow: none ;
}
.btn:hover{
    background-color:transparent !important;
    box-shadow: none;
}
.sign-in{
    padding-top: 10px;
    position:relative; 
    padding-left: 12px !important;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center !important;
    
}
.input[type="email"]{
    background: rgb(203, 22, 22) !important;
    border: none;

}

.sign-in .form-control{
    /*padding: 20px 10px !important;*/
    width: 450px !important;
    max-width: 90%;
   /*background-color: transparent !important;*/
    opacity: 0.5 !important;
     color: #fff !important;
    background-color: rgb(36, 35, 35, 0.4) !important;
    border: solid gray;
}

.sign-in .form-control:focus {
  border: 3px solid white;
  box-shadow: none !important;
}
.sign-in .form-floating label {
    color: #ccc !important;}
.form-floating{
    margin-right: -40px;
    color: rgb(177, 176, 176) !important;
}

/*.label {
            position: absolute;
            top: 50%;
            left: 10px;
            transform: translateY(-50%);
            color: #888;
            font-size: 16px;
            pointer-events: none;
            transition: 0.3s ease all;
        }
.input:focus+label,
.input:not(:placeholder-shown)+label {
            top: 0;
            left: 10px;
            font-size: 12px;
            color: #4a90e2;
            background-color: #f0f0f0;
            padding: 0 5px;
        }*/
.submit {
  background-color: #e0040f !important;
  color: white !important;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 28px;
  text-align: center !important;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  opacity: 1 !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  
}

.submit:hover {
  background-color: rgb(179, 1, 1) !important;
  
}

.curve-container{
 position: absolute;
    /* Negative top value moves the curve container up, overlapping the section above it. */
     
    left: 0;
    width: 100%;
    height: 6.25rem;
    z-index: 10; /* Ensures the curve is on top */
    overflow: hidden;
}
.curve-container::before{
content: '';
  position: absolute;
  top: 0;
  left: 0;
   width: 100%;
    height: 5px;
  
  background: linear-gradient(
        to right,
        rgb(33, 13, 22,1) 0%, 
        rgba(184, 40, 105, 1) 16%, 
        rgba(229, 9, 20, 1) 50%, 
        rgba(184, 40, 105, 1)84%, 
        rgb(33, 13,22 , 1) 100%
    );
 border-top-left-radius: 50% 7rem;
    border-top-right-radius: 50% 7rem;
}
.trending-content {
    /* Adjust padding as needed for spacing */
    padding: 20px;
    margin-left: 120px;
    margin-right: 120px;
}

.netflix-section {
    position: relative;
    background-color: black;
     /* This creates space for the curve to be placed */
     /* Prevents the curved line from spilling over */
}

.trending-section {
  
  background: black;
  padding: 40px 20px;
  position: relative; /* ADD THIS */
}

.section-title {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.trending-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto; 
  overflow-y: hidden;           /* horizontal scroll */
  scroll-behavior: smooth; 
   -ms-overflow-style: none;    /* IE & old Edge */
  scrollbar-width: none;    /* smooth scrolling */
  padding-bottom: 10px;
}

/* Hide scrollbar (optional) */
.trending-wrapper::-webkit-scrollbar {
  display: none;
}

.trending-card {
  min-width: 180px;
  margin-right: 25px;
  flex: 0 0 auto;             /* prevents shrinking */
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.trending-card:hover {
  transform: scale(1.07);     /* zoom on hover */
}

.trending-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}
.left { left: 0; }
.right { right: 0; }

.card-container{
    background-color: black;
    padding-bottom: 20px;
}
.card-deck {
  display: flex;
  flex-wrap: wrap;
  gap: 3px; /* spacing between cards */
}

.reason-card .col-sm-3{
  margin:25px;
  width: 20%;
}

.reason-card .row {
  --bs-gutter-x: 0;
}
.reason-card .card {
  flex: 1 1 20%; /* each card takes equal width */
  display: flex;
  width:290px;
  flex-direction: column;
  min-height: 200px;
  margin: 3px;
  border: none !important;
  border-radius: 8px !important;
  overflow: hidden;
  background: linear-gradient(to bottom, #150229, #18000f);
}
.card-icon {
  width: 40px;
  margin-top: 60px;
  margin-left: 200px;
  height: 50px;
  width: auto;
  margin-bottom: 15px;
}

.card-body {
    color: #fff;
  flex-grow: 1; /* make body stretch equally */
  background:transparent;
}
.card-title{
    font-size:24px;
  font-weight: bold; ;
}



/*body {
  height: 100vh;
  display:flex;
  justify-content:center;
  align-items:center;
}*/



.faq-container{
  background-color: #000;
  color:#fff;
}

body {
  background:#000;
  color:#fff;
  font-family:Arial, sans-serif;
}

.faq {
  
   margin-left: 40px;
   margin-right: 40px;
  padding:40px 20px;
}

.faq h2 {
  font-size:1.8rem;
  margin-bottom:20px;
}

/* each item separated with its own box and margin */
.faq-item {

  margin-bottom:10px;         /* space between questions */
  border-radius:4px;
  overflow:hidden;            /* keeps answer inside rounded corners */
}

.faq-question {
 
  width:100%;
  background:#303030;         /* individual grey box */
  color:#fff;
  text-align:left;
  padding:16px 19px;
  font-size:1.5rem;
  border:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  border-radius:4px;          /* rounded edges on button itself */
}

.faq-question .icon {
  font-size:2.5rem;
  transition:transform 0.3s;
}

.faq-answer {
  max-height:0;
  font-size:1.5rem;
  overflow:hidden;
  background:#303030;         /* same grey as question */
  padding:0 20px;
  transition:max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height:400px;
  padding:18px 20px;
}

.faq-item.active .faq-question .icon {
  transform:rotate(45deg);
}




/*
.footer-sign-in{
    padding-top: 10px;
    padding-bottom: 40px;
    position:relative; 
    padding-left: 12px !important;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center !important;
    background-color: black;

}
.footer-form-control{
    /*padding: 20px 10px !important;*/
    width: 600px !important;
    height: 55px;
    
   /*background-color: transparent !important;*/
   /* opacity: 0.5 !important;
    background-color: rgb(36, 35, 35) !important;
    border: 1px solid gray;
    border-radius: 4px;
    margin-top: 20px;
}
.footer-form-floating{
    margin-right: -40px;
    color: rgb(177, 176, 176) !important;
}

.footer-submit {
    margin-top: 50px;
  background-color: #e0040f !important;
  color: white !important;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 28px;
  text-align: center !important;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  opacity: 1 !important;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  
}*/

.footer-submit:hover {
  background-color: rgb(179, 1, 1) !important;
  
}


.footer-sign-in {
  background: black !important;
  padding: 20px;
  text-align: center;
}

/*.footer-sign-in .form-floating {
  min-width: 90px !important;
  margin-left: 23px;
  margin-right: -50px;
  
}
*/

.footer-sign-in .form-floating {
  flex-grow: 1; /* makes input take all remaining width */
  min-width: 450px; /* wider input */
  margin-right: 15px; /* adds space between input and button */
}

.footer-sign-in .form-control {
  background: transparent;
  color: white;
  border: 1px solid gray;
  max-width: 100%;
  padding: 14px 12px;
}

.footer-sign-in .form-control:focus {
  border: 3px solid white;
  box-shadow: none !important;
}

.footer-submit {
  background-color:  #e0040f;
  border: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 28px;
  border-radius: 5px;
/*  margin-right: 10px !important;*/
}

.footer{
    background-color: black;
    color: #fff;
    
}
.footer a{
    color:rgb(167, 164, 164) !important;
    }

@media (max-width: 768px){
    .box{
        max-width:90px;
    } 
    .logo{
        height: auto!important;
        max-width:90px;
    }

.card-body{
    flex-grow: 1;
}
.card-deck {
  display: flex;
  flex-wrap: wrap;
  gap: 5px; /* spacing between cards */
}

.card {
  flex: 1 1 22%; /* each card takes equal width */
  display: flex;
  flex-direction: column;
  min-height: 200px;}

}
.h{
    background-color: blueviolet;
}

.sign-in-form {
    display: flex;
    height: 770px;
    width: 500px;
    flex-direction: column;
    justify-content: baseline !important;
    align-items: center !important;
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent background */
    z-index: 1;
    position: relative;
    padding: 40px 30px;
    border-radius: 8px;
}

.sign-in-background{
    display: flex;
     position: relative;
    background-color: black;
    background-size:100vw;
    background-position: center center;
    height: auto;
    width: 100vw;
   /* z-index: 7;*/
    padding:230px 50px;
    align-items: center;
    justify-content: center;
    text-align: center;
    
   
}
.sign-in-background::before{
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 90%;
    z-index: 0;
    opacity: 0.3;
    background-image:url("pic/bg-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}
.sign-in-content{
    /*margin-top: -80px;*/
  position: relative;
/*  width: 100%;*/
  /*height: 100%;*/
  z-index: 2;
   justify-content: center !important;
    align-items: center !important;
}

.sign-in-form .form-floating .form-control {
    background-color:rgba(48, 48, 48, 0.3) !important;
    opacity: 3 !important;
    border: 1px solid rgb(87, 86, 86) !important;
    border-radius: 4px !important;
    color: #fff !important;
    padding: 25px 24px !important;
}

.sign-in-form .form-floating > .form-control:focus {
    background-color: #444 !important;
    border: 1px solid #e50914 !important;
    box-shadow: none !important;
}

/* Input labels */
.sign-in-form .form-floating > label {
    color: #fffefe !important;
}
.sign-in-form .form-floating > .form-control:focus ~ label,
.sign-in-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: #fff !important;
}

*/

.sign-in{
    background-color: #e0040f;
    text-align: left;
}
.sign-in-heading{
  text-align: left;   /* Align left */
    width: 100%; 
    margin-left: 90px; 
margin-top:40px;
margin-bottom: 30px;
}
/*
.sign-in-submit{
 background-color: #e0040f;
 opacity: 1 !important;
  border: none;
  color: white;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 28px;
   width: 410px !important;
    max-width: 90%;
  border-radius: 5px;   
}
*/

.sign-in-form button {
    background-color: #e50914; /* Netflix red */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px;
    opacity: 1 !important;
    width: 410px !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}



.sign-in-password-submit{
    background: rgba(128, 128, 128, 0.4) !important;
      border:1px solid #150229;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 10px 28px;
   width: 410px !important;
    max-width: 90%;
  border-radius: 5px;
}




@media (max-width: 768px) {
  .sign-in .d-flex,
  .footer-sign-in .d-flex {
   flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 14px;               /* space between input and button */
    padding: 0 16px;       /* reduce side padding */
  }

 .sign-in .form-floating,
 .sign-in .form-control,
  .footer-sign-in .form-control {
    background-color: rgba(36, 35, 35, 0.4) !important; /* dark bg */
    color: #fff !important;                            /* white text */
    opacity: 1 !important;   
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    flex: 1 1 100% !important;  /* force flex grow */
    box-sizing: border-box;
  }
  .sign-in .form-floating label {
    color: #b8b2b2 !important;
  }
  .form-floating {
    width: 100% !important;   /*let it shrink to screen */
    margin-right: 0 !important;
  
  }

  .sign-in .submit {
    width: 100% !important;
     max-width: none;      /* optional: limit max width */
    font-size: 20px;
    padding: 12px;
  }

  
  .footer-submit {
    width: 100% !important;
    font-size: 20px;
    padding: 12px;
  }

.reason-card .col-sm-3 {
    width: 100% !important;
    margin: 12px 0 !important;
  }

  .reason-card .card {
    width: 100% !important;
    margin: 0 auto 20px;
  }

}

/* Overlay */
.info-modal {
  display: none;
  position: fixed;
  inset: 0;
   top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

/* Modal container */
.info-modal .modal-content {
  background: #181818;
  color: #fff;
  height: 650px;
  width: 90%;
  max-width: 700px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  animation: fadeIn 0.3s ease-in-out;
  font-family: 'Montserrat', sans-serif;
}

/* Close button */
.info-modal .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
   z-index: 10000; 
  transition: color 0.3s;
}
.info-modal .close-btn:hover {
  color: #e50914;
}

/* Image */
.info-modal .modal-img {
  width: 100%;
  height: 400px;
  object-fit:contain;
}

.modal-img-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.modal-img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 30%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0.9);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Content */
.modal-details {
  padding: 25px 35px 40px;
}

.modal-details h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}
.tags span {
  background: #2a2a2a;
  color: #ccc;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 4px;
}

/* Description */
.modal-details p {
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 25px;
}

/* Button */
.get-started {
  background: #e50914;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.get-started:hover {
  background: #b0060f;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

