/*this is header section*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Manrope", sans-serif;
    background-color: #141414;
    color: white;
}
html{
    scroll-behavior: smooth;
}

header{
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 1.5rem 4rem;
    border-bottom: 1px solid rgba(225, 225, 225, 0.1) ;
    backdrop-filter: blur(10px);

}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;

}

/* logo display,align-items agulo abar deoyar karon onno device er jnno backup hisebe*/

.logo{
    display: flex;
    align-items: center;
}
.logo img{
    height: 50px;
}
.nav-links{
    display: flex;
    gap: 2.5rem;
    padding: 15px;
    background-color: black;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(133, 119, 119, .5);
}
.nav-links a{
    color: aliceblue;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    border-radius: 6px;
}
.nav-links a:hover{
    color: white;
    background-color: rgba(225, 225, 225, 0.1);

}
.nav-links a.active{
    color: white;
    background-color: rgba(225, 225, 225, 0.1);
}
.nav-icon{
    display: flex;
    gap: 1.5rem ;
}
.icon-btn{
    background:none;
    border: none;
    color: aliceblue;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.icon-btn:hover{
    color: aliceblue;
    background: rgba(225, 225, 225, 0.1);
}

/*this is hero section*/
.hero{
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding: 0;
    overflow: hidden;
    padding-top: 100px;
    background-image: url("image/hero.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 5rem;

}
.hero::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}
.hero-content{
    position: relative;
    z-index: 2;
    /* max-width: 800px; */
    margin: 0 auto;
    text-align: center;
    padding-top: 0;


}
.hero-content h1{
    font-size: 3.5em;
    font-weight: 800;
    margin-bottom: 1.3rem;
    /* line-height: 1.2rem; */
    
}
.hero-content p{
    color: #999;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    /* font-weight: 500; */
    line-height: 1.2rem;
}
.streamBtn{
    background-color: red;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 0 auto;
}
.streamBtn:hover{
    background-color: rgb(141, 2, 2);
}
/*this is Categories section*/
.categories{
    width: 80%;
    margin: 0 auto;
    padding: 4rem;
    background-color: #141414;
}
.categoriesContant{
    margin: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
}
.categoriesContant h2{
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
}
.categoriesContant p{
    font-size: 1rem;
    color: #999;
    padding-bottom: 1rem;
}
.categoriesNavi{
    position: relative;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.navBtn{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1); color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: backgroun-color 0.3s;
}
.navBtn:hover{
    background-color: rgba(255, 255, 255, 0.2);
}
.navIndicator{
    display: flex;
    align-items: center;
    gap: .5rem;
    
}
.indicator{
    width: 24px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}
.indicator.active{
    background-color: rgb(252, 28, 20);
}
.categoryGrid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.categoryCard{
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;

}
.categoryCard:hover{
    transform: translateY(-5px);

}
.moviePoster{
    padding: 30px;
}
.moviePoster img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}
.categoryTitle{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
  /*this is Support section*/
  .support{
    width: 100%;
    margin: 0 auto;
    background-color: #141414;
    padding: 4rem;
  }
.supportHeader{
    width: 80%;
    margin-bottom: 3rem;
    margin: 0 auto;



}
.supportHeader h3{
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    
}
.supportHeader p{
    color: #999;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}
.deviceGrid{
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
    justify-content: center;
    margin-top: 20px;

}
.devicesCard{
    background: linear-gradient(135deg, rgba(255,0,0,.1), transparent);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s;
    border: 1px solid rgba(255,0,0,.1);
}
.devicesCard:hover{
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(255,0,0,.3), transparent);
    border: 1px solid rgba(255,0,0,.2);
}
.devicesIcon{
    width: 40px;
    height: 40px;
    background-color: red;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;

}
.devicesIcon i{
    font-size: 1,5rem;
    color: white;
}
.devicesCard h5{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.devicesCard p{
    color: #999;
    font-size: 1rem;
    line-height: 1.6rem;

}

/*this is Question section*/
.faq{
    width: 80%;
    margin: 0 auto;
    padding: 4rem 3rem;
}
.headerSection{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}
.titleSection h2{
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem;
}
.titleSection p{
    color: #999;
    font-size: 1rem;
    max-width: 600px;
}
.questionBtn{
    background-color: red;
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}
.questionBtn:hover{
    background-color: rgb(165, 4, 4);
}
.faqGridSection{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faqItem{
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}
.faqQuestion{
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s;
}
.faqQuestion:hover{
    background: rgba(255, 255, 255, 0.1);
}
.questionNumber{
    color: #999;
    font-size: 1rem;
    font-weight: 500;
    margin-right: 1rem;  
}
.faqQuestion h3{
    flex: 1;
    font-size: 1.1rem;
    font-weight: 500;
}
.faqQuestion i{
    color: #999;
}
.faqQuestion.active i{
    transform: rotate(45deg);
}
.faqAns{
    max-height:0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    transition: max-height 0.3s ease-out;
    
    
}
.faqAns p{
    color: #999;
    line-height: 1.6;
    padding: 1.5rem;
}

/*this is Question section*/
.planSection{
    width: 74%;
    margin: 0 auto;
    padding: 4rem 1rem;
    margin-bottom: 5rem;
}
.plnHeader{
    margin-bottom: 3rem;
    text-align: center;
}
.plnHeader h2{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}
.plnHeader p{
    font-size: 1rem;
    font-weight: 500;
    color: #999;
    margin: 0 auto 2rem;
    
}
.plnBtn{
    background: 1rem 2rem rgba(255, 255, 255, 0.1);
    display: inline-flex;
    padding: 1rem 1rem;
    border-radius: 7px;
    gap: 2rem;
}
.toggleBtn{
    padding: .7rem 1.5rem;
    border-radius: 6px;
    border: none;
    background: #999;
    font-size: 1rem;
    font-weight: 500;
    color: white;
    cursor: pointer;
}
.toggleBtn.active{
    background: rgb(212, 1, 1);
    color: white;
}
.toggleBtn:hover{
    background-color: rgba(255, 255, 255, 0.1);
}
.plnGrid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.planCard{
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s;
    border: 1px solid rgba(255,0,0,.1);
    background: linear-gradient(135deg, rgba(255,0,0,.1), transparent);
}
.planCard:hover{
    transform: translateY(-5px);
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.2) 100%);
    border: 1 solid rgba(255, 0, 0, 0.2);
}
.cardContent h3{
    font-size: 1.7rem;
    font-weight: 600;
    padding-bottom: .8rem;
    color: white;
}
.cardContent p{
    font-size: 1rem;
    font-weight: 500;
    color: #999;
    min-height: 70px;
    margin-bottom: 2rem;
    line-height: 1.6;
}
.cardPrice{
    margin-bottom: 2rem;
}
.price{
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}
.period{
    color: #999;
    font-size: 1rem;
}
.cradBtn{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.freeBtn{
    background: none;
    border: 1 solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
}
.freeBtn:hover{
    background: rgba(255, 255, 255, 0.1);
}
.ChoosePlan{
    background: red;
    border: none;
    color: white;
    padding: 0.8rem;
    cursor: pointer;
    border-radius: 8px;
}
.ChoosePlan:hover{
    background-color: rgb(163, 0, 0);
}

/*this is Free Trial section*/

.freeTrailSection{
    width: 74%;
    margin: 0 auto;
    padding: 4rem;
    background-image: url(image/last.png);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(131, 126, 126, .1);
    border-radius: 12px;
    
}
.freeTrailSection::before{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) );
    

}
.trialContent{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    z-index: 2;
    max-width: 600;
}
.trialContent h3{
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    
}
.trialContent p{
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.6;
    
}
.trialBtn{
    background: red;
    color: white;
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
}
.trialBtn:hover{
    background-color: rgb(179, 2, 2);
}
/*footer section*/
.footer{
    background: black;
    padding: 4rem 0 2rem;
    
}
.footerContent{
    width: 74%;
    margin: 0 auto;
    margin-top: 4rem;
}
.footerLinks{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.footerCols h3{
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}
.footerCols a{
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 1rem;
    font-size: 14px;
}
.footerCols a:hover{
    color: white;
}
.socialLilk{
    display: flex;
    gap: 1rem;
}
.socialLilk a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(225, 225, 225, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    margin-top: 1rem;
}
.socialLilk a:hover{
    background: rgba(225, 225, 225, 0.2);
}
.footerBottom{
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footerLegal{
    display: flex;
    gap: 2rem;
}
.footerLegal a{
    color: #999;
    text-decoration: none;
    font-size: 14px;
}
.footerLegal a:hover{
    color: white;
}

/*for mobile device*/
@media (max-width:480px){
    .nav-links{
        display: none; 
        margin: 1rem;     
    }
    .logo img{
        margin-left: -1rem;
    }
    .hero-content{
        margin-bottom: 2.5rem ;
    }
    .categories{
        width: 100%;
        padding: 2px;
    }
    .categoriesNavi{
        display: none;
    }
    .categoryGrid{
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .moviePoster{
        padding: 1rem;
    }
    .moviePoster img{
        width: 100%;
        height: auto;
    }
    .support{
        width: 100%;
        padding: 0;
    }
    .supportHeader{
        width: 100%;
        padding: 0;
    }

    .deviceGrid{
        grid-template-columns: repeat(1, 1fr);
        gap: 0.5rem;
        width: 100%;
    }
    .devicesCard{
        margin: 1rem;
        padding: 2rem;
    }
    .faq{
        padding: 2.5rem;
        width: 100%;
    }
    .headerSection{
        width: 100%;
        flex-direction: column;
    }
    .questionBtn{
         margin-top: 1.5rem;
    }
    .planSection{
        width: 80%;
        padding: 3rem 0rem;
    }
    .plnGrid{
        
        grid-template-columns: repeat(1, 1fr);
        
        
    }
    .freeTrailSection{
        width: 80%;
    }
    
    .trialContent{
        width: 100%;
        /* margin: 0 auto; */
        flex-direction: column;

    }
    .footerContent{
        width: 80%;
        margin: 0 auto;
    }
    .footerLinks{
        grid-template-columns: repeat(2,1fr);
    }
    .footerLegal{
        display: none;
    }

}
