:root {
    /* --primary: #111111; */
    --primary: #141414;
    --light: #f3f3f3;
    --dark: #686868
}

html,
body {
    width: 100vw;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: var(--light);
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    line-height: 1.4
}

img {
    max-width: 100%
}

/* h1 {
    padding-top: 1rem
} */

.wrapper {
    margin: 0;
    padding: 0
}

header {
    padding: 20px 20px 0;
    position: fixed;
    top: 0;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 1fr 4fr 1fr;
    grid-template-areas: "nt mn mn sb . . . ";
    background-color: var(--primary);
    width: 100%;
    margin-bottom: 0
}

.netflixLogo {
    grid-area: nt;
    object-fit: cover;
    width: 100px;
    max-height: 100%;
    padding-left: 30px;
    padding-top: 0
}

.netflixLogo img {
    height: 35px
}

#logo {
    color: #e50914;
    margin: 0;
    padding: 0
}

.main-nav {
    grid-area: mn;
    padding: 0 30px 0 20px
}

.main-nav a {
    color: var(--light);
    text-decoration: none;
    margin: 5px
}

.main-nav a:hover {
    color: var(--dark)
}

.sub-nav {
    grid-area: sb;
    padding: 0 40px 0 40px
}

.sub-nav a {
    color: var(--light);
    text-decoration: none;
    margin: 5px
}

.sub-nav a:hover {
    color: var(--dark)
}


.box {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(5, minmax(100px, 1fr))
}

.box a {
    transition: transform .3s
}

.box a:hover {
    transition: transform .3s;
    -ms-transform: scale(1.4);
    -webkit-transform: scale(1.4);
    transform: scale(1.4)
}

.box img {
    border-radius: 2px
}

.link {
    padding: 50px
}

.sub-links ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(4, 1fr)
}

.sub-links a {
    color: var(--dark);
    text-decoration: none
}

.sub-links a:hover {
    color: var(--dark);
    text-decoration: underline
}

.logos a {
    padding: 10px
}

.logo {
    color: var(--dark)
}

footer {
    padding: 20px;
    text-align: center;
    color: var(--dark);
    margin: 10px
}

@media(max-width:900px) {
    header {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "nt nt nt . . . sb . . . " "mn mn mn mn mn mn mn mn mn mn"
    }

    .box {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(3, minmax(100px, 1fr))
    }

    .box-title {
        text-transform: uppercase;
        font-size: 1.5rem;
        /* color: #fb8f5b; */
        color: #fff;
    }

    .top-text {
        font-size: 1.5rem;
        line-height: 1.5rem;
        font-weight: bold;
        letter-spacing: 1px;
    }

    .main-container {
        padding: 2rem
    }
}

@media(max-width:700px) {
    header {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "nt nt nt . . . sb . . . " "mn mn mn mn mn mn mn mn mn mn"
    }

    .box {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(2, minmax(100px, 1fr))
    }

    .sub-links ul {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(3, 1fr)
    }

    .box-title {
        text-transform: uppercase;
        font-size: 1.5rem;
        color: #fb8f5b
    }

    .top-text {
        font-size: 1.5rem;
        line-height: 1.5rem;
        font-weight: bold;
        letter-spacing: 1px;
    }

    .main-container {
        padding: 1rem
    }
}

@media(max-width:500px) {
    .wrapper {
        font-size: 15px
    }

    .box-title {
        text-transform: uppercase;
        font-size: 1.5rem;
        color: #fb8f5b
    }

    header {
        margin: 0;
        padding: 20px 0 0;
        position: static;
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: "nt" "mn" "sb";
        text-align: center
    }

    .netflixLogo {
        max-width: 100%;
        margin: auto;
        padding-right: 20px
    }

    .main-nav {
        display: grid;
        grid-gap: 0;
        grid-template-columns: repeat(1, 1fr);
        text-align: center
    }

    h1 {
        text-align: center;
        font-size: 18px
    }

    .box {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(1, 1fr);
        text-align: center
    }

    .box a:hover {
        transition: transform .3s;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1.2)
    }

    .box div a:hover {
        transition: transform .3s;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1.2)
    }

    .logos {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        text-align: center
    }

    .sub-links ul {
        display: grid;
        grid-gap: 20px;
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
        font-size: 15px
    }

    .top-text {
        font-size: 1.5rem;
        line-height: 1.5rem;
        font-weight: bold;
        letter-spacing: 1px;
    }

    .main-container {
        padding: 1rem
    }

    .d-sm-none{
        display: none;
    }
}

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

body {
    background-color: #000;
    color: #fff;
    font-family: "Poppins", sans-serif
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 3% 5%;
    z-index: 10
}

.navbar__brand {
    width: 100px;
    height: 100%
}

.brand__logo {
    width: 4rem
}

.language__drop__down {
    background: transparent;
    border: 0;
    color: white
}

.language__drop__down:focus {
    outline: 0
}

.language__drop__down option {
    background-color: black
}

.dropdown__container {
    border: 1px solid #fff;
    padding: .4rem;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.4)
}

.signin__button {
    background-color: darkorange;
    border: 1px solid darkorange;
    color: #fff;
    padding: .25rem .5rem;
    border-radius: 4px
}

.navbar__nav__items {
    display: flex;
    gap: 10px
}

.hero__bg__image__container {
    width: 100%;
    /* height: 80vh */
}

.hero__bg__image {
    width: 100%;
    /* height: 100%; */
    object-fit: cover
}

.hero__bg__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 80vh;
    background: rgba(0, 0, 0, 0.4);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%)
}

.hero__card {
    position: absolute;
    top: 20%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.hero__title {
    font-weight: 600;
    font-size: 2rem
}

.hero__subtitle,
.hero__description {
    font-weight: 400;
    font-size: 1rem
}

.hero__description {
    margin: 0 50px
}

.email__input {
    border: 0;
    background: transparent;
    width: 100%;
    height: 100%;
    padding-left: 7px
}

.email__label {
    color: #000;
    position: absolute;
    top: 28%;
    left: 2%;
    color: #999595;
    transition: .5s
}

.email__form__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px
}

.form__container {
    background-color: #fff;
    width: 90%;
    height: 50px;
    position: relative
}

.email__input:focus+.email__label {
    top: .2rem;
    font-size: 10px
}

.email__input:not(:placeholder-shown).email__input:not(:focus)+.email__label {
    top: .2rem;
    font-size: 10px
}

.email__input:focus-visible {
    outline: 0
}

.primary__button {
    background-color: #fb8f5b;
    border: 1px solid #ffffff;
    color: #fff;
    padding: .8rem 1.2rem;
    border-radius: 2px;
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
}

.feature {
    border-top: 8px solid #222;
    padding: 2rem 1rem
}

.feature__details {
    text-align: center
}

.feature__title {
    font-size: 25px;
    font-weight: 600;
    margin: 10px 0
}

.feature__sub__title {
    font-size: 15px;
    font-weight: 400
}

.feature__image__container {
    width: 100%;
    position: relative
}

.feature__image {
    width: 100%
}

.feature__backgroud__video__container {
    position: absolute;
    width: 100%;
    top: 20%;
    left: 13%;
    height: 100%;
    max-width: 73%;
    max-height: 54%;
    z-index: -2
}

.feature__backgroud__video {
    width: 100%
}

.feature__2__poster__container {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 16em;
    display: flex;
    align-items: center;
    background-color: #000;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    height: 60px;
    padding: .25rem .6rem;
    gap: 15px
}

.poster__container {
    width: 20%
}

.poster {
    width: 100%;
    height: 100%
}

.poster__details {
    width: 60%
}

.poster__details>h4 {
    font-size: 13px;
    font-weight: 500
}

.poster__details>h6 {
    font-size: 12px;
    font-weight: 400;
    color: #3f3ff6
}

.download__gif__container {
    width: 20%;
    height: 100%
}

.gif {
    width: 100%;
    height: 100%
}

.feature__3__backgroud__video__container {
    max-width: 63%;
    max-height: 47%;
    z-index: -2;
    top: 9%;
    left: 19%
}

.FAQ__accordian {
    width: 100%
}

.FAQ__title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    font-size: 18px;
    background-color: #303030;
    border: 1px solid #303030;
    color: white
}

.FAQ__visible {
    background-color: #303030;
    border-top: 1px solid #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s ease-in-out
}

.FAQ__visible>p {
    margin: 1rem
}

.FAQ__list__container {
    border-top: 8px solid #222;
    padding: 2rem 0
}

.FAQ__heading {
    font-size: 20px;
    text-align: center;
    font-weight: 600;
    margin: 1rem 3rem
}

.FAQ__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px
}

.FAQ__get__started__email {
    text-align: center
}

.FAQ__get__started__email>h3 {
    font-size: 18px;
    font-weight: 400;
    margin: 2rem 0
}

footer {
    border-top: 8px solid #333;
    padding: 2rem 1rem;
    color: #757575;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer__row__2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px
}

.footer__row__1>h4 {
    font-size: 15px;
    font-weight: 500
}

.footer__row__3>.dropdown__container {
    width: fit-content;
    border: 1px solid #757575;
    color: #757575
}

.footer__row__3>.dropdown__container>.language__drop__down {
    color: #757575
}

@media(min-width:768px) {
    .hero__bg__image__container {
        /* height: 100vh */
        width: 100%;
    }

    .hero__bg__overlay {
        height: 100vh
    }

    .hero__card {
        top: 40%;
        left: 30%;
        transform: translate(-20%, -20%)
    }

    .hero__title {
        font-size: 3rem
    }

    .hero__subtitle,
    .hero__description {
        font-size: 1.3rem
    }

    .feature {
        padding: 4rem
    }

    .feature__title {
        font-size: 35px
    }

    .feature__sub__title {
        font-size: 20px
    }

    .feature__2__poster__container {
        max-width: 26em;
        height: 85px
    }

    .poster__container {
        width: 15%
    }

    .download__gif__container {
        width: 3rem;
        height: 3rem
    }

    .poster__details>h4 {
        font-size: 18px
    }

    .poster__details>h6 {
        font-size: 14px
    }

    .FAQ__title {
        font-size: 20px
    }

    .FAQ__heading {
        font-size: 38px;
        font-weight: 500;
        letter-spacing: 1px
    }

    .FAQ__list {
        padding: 1rem 5rem
    }

    .FAQ__get__started__email {
        width: 75%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transform: translateX(15%)
    }
}

@media(min-width:1024px) {
    .navbar {
        padding: 2% 5%
    }

    .navbar__brand {
        width: 150px
    }

    .signin__button {
        padding: 10px 20px;
        font-size: 18px
    }

    .dropdown__container {
        padding: 10px 5px
    }

    .navbar__nav__items {
        gap: 30px
    }

    .hero__card {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%)
    }

    .form__container {
        width: 50%
    }

    .email__form__container {
        flex-direction: row;
        align-items: center;
        gap: 1px
    }

    .primary__button {
        height: 50px
    }

    .feature {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px
    }

    .feature__details {
        text-align: left;
        padding: 0 6rem
    }

    .feature__title {
        font-size: 50px
    }

    .feature__sub__title {
        font-size: 25px
    }

    .feature__image__container {
        max-width: 500px
    }

    .feature:nth-child(even) {
        flex-direction: row-reverse
    }

    .feature__2__poster__container {
        max-width: 20em;
        height: 100px;
        padding: 1rem
    }

    .poster__container {
        width: 20%
    }

    .FAQ__list {
        padding: 1rem 25rem
    }

    .FAQ__get__started__email {
        transform: translateX(16%)
    }

    footer {
        padding: 2rem 20rem;
        justify-content: flex-start;
        text-align: left;
        align-items: flex-start
    }

    .footer__row__2 {
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: nowrap
    }

    .footer__row__1,
    .footer__row__3,
    .footer__row__4 {
        align-self: flex-start
    }

    .top-text {
        font-size: 1.5rem;
        line-height: 1.5rem;
        font-weight: bold;
        letter-spacing: 1px;
    }


    .main-container {
        padding: 3rem
    }
}

.image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: all .3s ease-in-out;
    z-index: 20;
    box-shadow: 10px 10px 53px 0 rgba(0, 0, 0, 0.49)
}

.card-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: all .3s ease-in-out;

    &:hover {
        .image {
            filter: blur(1.4px);
            transform: scale(1.5);
            overflow: hidden;
            transition: all .3s linear;
            box-shadow: inset -6px -1px 32px 0 rgba(0, 0, 0, 0.75)
        }

        .card-bottom {
            transform: translate(0%, -50%);
            transition: all .8s ease;
            /* background-color: rgba(110, 122, 92, 0.7) */
            background-color: darkorange;
        }
    }

    box-shadow:10px 10px 53px 0 rgba(0, 0, 0, 0.49)
}

.card-top {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1
}

.card-bottom {
    text-align: center;
    width: 100%;
    position: absolute;
    z-index: 20;
    top: 50%;
    background-color: rgba(110, 122, 92, 0);
    padding: 1rem;
    color: #fff;
    transform: translate(100%, -50%)
}

.bottom-text {
    font-size: 16px;
    color: #f5f5f5;
    margin: 0;
}

.button {
    position: relative;
    display: block;
    outline: 0;
    cursor: pointer;
    margin-top: 25px;
    border: 0;
    border-radius: 3px;
    background-color: #f8961e;
    color: #fff;
    max-width: fit-content;
    width: fit-content;
    padding: 5px 20px
}

.button1 {
    position: relative;
    display: block;
    outline: 0;
    cursor: pointer;
    margin-top: 25px;
    border: 0;
    border-radius: 1rem;
    background-color: #f8961e;
    color: #fff;
    padding: 5px 20px
}

.info-card {
    border: solid 2px #fff;
    padding: .5rem
}

.info-card:hover {
    border: solid 3px #ff0;
    padding: .5rem
}

.card-h3 {
    color: #fb8f5b;
    padding-top: .25rem;
    padding-bottom: .25rem;
    text-decoration: none
}

.card-a {
    text-decoration: none;
    margin: auto;
    margin-top: 1rem;
    white-space: nowrap;
}

.card-a:hover {
    transform: none;
    text-decoration: none
}

.top-30 {
    margin-top: 10vh
}

.box-title {
    text-transform: uppercase;
    font-size: 1.5rem;
    /* color: #3f3ff6 */
    color: #fb8f5b
}

.trailer-title {
    font-size: 2rem;
    padding-bottom: 1rem
}

body {
    overflow-x: hidden;
    /* background: #B1B2FF;  */
}

.banner-text {
    text-transform: uppercase;
    font-size: 2.5em;
    font-weight: 600;
    color: #f5f5f5;
    text-shadow: 1px 1px 1px #919191, 1px 2px 1px #919191, 1px 3px 1px #919191, 1px 4px 1px #919191, 1px 5px 1px #919191, 1px 6px 1px #919191, 1px 7px 1px #919191, 1px 8px 1px #919191, 1px 9px 1px #919191, 1px 10px 1px #919191, 1px 18px 6px rgba(16, 16, 16, 0.4), 1px 22px 10px rgba(16, 16, 16, 0.2), 1px 25px 35px rgba(16, 16, 16, 0.2), 1px 30px 60px rgba(16, 16, 16, 0.4)
}

.banner-sub {
    text-transform: uppercase;
    font-size: 1em;
    font-weight: 600;
    color: #f5f5f5
}

.hero {
    position: relative
}

.header {
    z-index: 1000
}

/* CUSTOM CSS */

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

.text-right {
    text-align: right;
}

.main-link {
    color: #fb8f5b;
}

.text-left {
    text-align: left !important;
}

.heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.image-poster {
    height: 450px !important;
    width: 400px !important;
}

.bg-sec {
    background-color: #303030;
}

.value-prop-with-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FF7043;
    padding: 0.5rem;
    color: white;
    text-align: center;
    white-space: nowrap; /* Prevent wrapping */
    max-width: 100% !important;
}

.value-prop-logo {
    width: 3rem;
    height: auto;
    margin-bottom: 1rem;
}

.home-titles {
    font-size: x-large;
    text-align: left;
    margin-bottom: 1rem;
}

.home-para {
    font-size: larger;
}

@media (max-width: 767.98px) { /* Mobile devices */
    .value-prop-with-cta {
        flex-wrap: nowrap;
    }

    .value-prop-logo {
        display: none; /* Hide logo on mobile */
    }

    .value-prop-with-cta .col-md-2,
    .value-prop-with-cta .col-md-8,
    .value-prop-with-cta .col-md-2 {
        flex: none; /* Prevent columns from shrinking */
    }

    .value-prop-with-cta .col-md-8 {
        flex-grow: 1; /* Allow the main content to take up available space */
    }

    .value-prop-with-cta .col-md-2:last-child {
        flex-shrink: 0; /* Ensure the button does not shrink */
    }
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes zoomIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* Initial State */
  .animate-fade-in,
  .animate-slide-in,
  .animate-zoom-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  /* When Visible */
  .visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    animation-fill-mode: forwards;
  }
  
  .animate-fade-in.visible {
    animation: fadeIn 1s ease-out;
  }
  
  .animate-slide-in.visible {
    animation: slideIn 1s ease-out;
  }
  
  .animate-zoom-in.visible {
    animation: zoomIn 1s ease-out;
  }
  