*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'poppins',sans-serif;
    height: 100vh;
    width: 100%;
    background-color: black;
    color: white;
}
.hero {
    position: relative;
    height: 90vh;
    background-image: url(img\ ui/netflixbanner.jpg);
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 2px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
.header {
    position: relative;
    z-index: 2;
    width: 90%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20PX;
}
.right {
    margin-right: 80px;
}
.left img {
    height: 170px;
    width: 300px;
}
.language {
    height: 35px;
    width: 130px;
    border: 0.2px solid white;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    line-height: 1.6;
    border-radius: 5px;
    font-weight: 700;
    padding: 6px;
}
.btn1 {
    height: 35px;
    width: 80px;
    background-color: #e50914;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    margin-left: 5px;
    font-weight: bold;
    padding: 8px 16px;
}
.btn1:hover {
    background-color: #f40612;
}
.hero-content {
    margin-top: 100px;
    height: 60%;
    width: 700px;
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-id{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-text h1 {
    font-size: 3.1rem;
    font-weight:900;
    margin-bottom: 20px;
}
.hero-text b {
    font-size: 1.3rem;
}
.hero-text p {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 520;
    color: rgb(255, 255, 255);
}
.email {
    height: 55px;
    width: 55%;
    background-color: rgba(19, 19, 19, 0.7);
    padding: 8px 16px;
    font-size: 1.1rem;
    font-weight: 530;
    border-radius: 5px;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    border: 0.5px solid rgba(255, 255, 255, 0.6);
}
.email-btn {
    height: 55px;
    width: 27%;
    background-color: #e50914;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 1.5rem;
    margin-left: 5px;
    font-weight: bold;
    padding: 8px 16px;
}
.email-btn:hover {
    background-color: #f40612;
}
.netflix-border-curve {
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #e50914, #db052c);
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 255, 0.6);
    margin-top: -6px;
}
.trending-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 60%;
    width: 100%;
}
.trending-section h1 {
    color: white;
    margin-top: 60px;
    font-size: 2rem;
    margin-left: 150px;
    margin-bottom: 0px;
}
.trending-card {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 300px; 
}
.card {
    height: 230px;
    width: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-left: 40px;
    transition: all 0.3s ease;
}
.card:hover {
    transform: scale(1.05);
    cursor: pointer;
}
.card h1 {
    margin-top: 110px;
    color: black;
    margin-left: -20px;
    font-size: 7rem;
    text-shadow: 
    -1px -1px 0px #fff,
    1px -1px 0px #fff,
    -1px 1px 0px #fff,
    1px 1px 0px #fff;
}
.reason-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 60%;
    margin-bottom: 40px;
    width: 100%;
}
.reason-section h1 {
    color: white;
    font-size: 1.9rem;
    margin-left: 150px;
    margin-bottom: 20px;
}
.reason-card{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80%;
}
.query-card {
    height: 320px;
    width: 250px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-left: 20px;
    background: linear-gradient(135deg, #0f0f2d, #330733);
    padding: 20px;
}
.query-card h2 {
    font-size: 1.3rem;
    font-weight: 750;
    margin-top: 20px;
    margin-bottom: 20px;
}
.query-card p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #c4c4c4;
}
.query-icon {
    margin-left: 140px;
    font-size: 3.5rem;
}
.faq-section {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    width: 100%;
}
.faq-section h1 {
    color: white;
    font-size: 1.6rem;
    margin-left: 150px;
    margin-bottom: 20px;
}
.faq-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80%;
}
.faq {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    height: 85px;
    width: 78%;
    font-size: 1.5rem;
    background-color:  #303030;
    margin-bottom: 8px;
}
.faq:hover {
    background-color: #404040;
}
.faq i {
    color: white;
    font-size: 5rem;
    font-weight: 100;
}
.last {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 150px;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
}
.last-content {
    margin-top: 0;
    height: 30%;
}
.last-email {
    height: 57px;
    width: 44%;
    background-color: rgba(19, 19, 19, 0.7);
    padding: 8px 16px;
    font-size: 1.1rem;
    font-weight: 530;
    border-radius: 3px;
    border: none;
    outline: none;
    color: rgb(255, 255, 255);
    border: 0.5px solid rgba(255, 247, 247, 0.3);
}
.last-id{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.last-btn{
    height: 57px;
    width: 17%;
    background-color: #e50914;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 1.5rem;
    margin-left: 5px;
    font-weight: bold;
    padding: 8px 16px;
}
.last-btn:hover {
    background-color: #f40612;
    cursor: pointer;
}
footer {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.foot-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    height: 50px;
    color: #757575;
    font-weight: 600;
}
.foot-text a {
    margin-left: 3px;
    text-decoration: underline;
    color: #757575;
    font-weight: 600;
}
.footer-link-pannel {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 50%;
}
.footer-links {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    height: 100%;
}
.footer-links a {
    font-size: 0.9rem;
    color: #757575;
    font-weight: 550;
}
.last-language{
    width: 80%;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 25px;
}
.foot-para{
    width: 80%;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    color: #adadad;
    font-weight: 600;
    margin-bottom: 10px;
}
.foot-para-last{
    width: 80%;
    height: 50px;
    display: flex;
    justify-content: flex-start;
    color: #757575;
    font-size: 0.9rem;
}
.foot-para-last a {
    margin-left: 3px;
    text-decoration: underline;
    color: blue;
}

/* Mobile Devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
    }

    .left img {
        height: 100px;
        width: 180px;
        margin-bottom: 10px;
    }

    .right {
        margin-right: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero-content {
        width: 90%;
        margin-top: 60px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text b {
        font-size: 1rem;
    }

    .hero-text p {
        font-size: 0.9rem;
        margin-top: 20px;
    }

    .hero-id {
        flex-direction: column;
    }

    .email {
        width: 100%;
        margin-bottom: 10px;
    }

    .email-btn {
        width: 100%;
    }

    .trending-section h1,
    .reason-section h1,
    .faq-section h1 {
        margin-left: 20px;
    }

    .trending-card {
        flex-direction: column;
        height: auto;
    }

    .card {
        width: 80%;
        height: 180px;
        margin: 10px 0;
    }

    .card h1 {
        font-size: 4rem;
        margin-top: 50px;
    }

    .reason-card {
        flex-direction: column;
    }

    .query-card {
        width: 90%;
        margin: 10px 0;
    }

    .faq {
        width: 90%;
        font-size: 1rem;
    }

    .faq i {
        font-size: 2rem;
    }

    .last-email {
        width: 100%;
        margin-bottom: 10px;
    }

    .last-btn {
        width: 100%;
    }

    .footer-link-pannel {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        width: 100%;
    }

    .last-language,
    .foot-text,
    .foot-para,
    .foot-para-last {
        width: 90%;
    }
}
