:root {
    --primaryColor: #9A5AE3;
    --buttonbg: linear-gradient(90deg, #9B5BE4, #F0A6FF);
    --footerColor:#9C93FF;
    --white: #ffffff;
    --black: #000000; 
    --heroFont: 60px;
    --sectionTitle: 29px;
    --hbText: 25px;
    --mHbText: 20px;
    --aboutTitle: 35px;
    --regularText: 20px;
    --menuText: 23px;
    --smallText: 19px;
    --bannerText: 30px;
    --TransparentBg:#ffffff69;
    --borderColor:#ffffff82;

  }
  @font-face {
    font-family: myFont;
    src: url(../font/NotoSerifBengali-Regular.ttf);
  }
*{
    margin: 0;
    padding: 0;
}
body{
    font-family: "myFont";
    overflow-x: hidden;
    margin-top: 40px;
}
nav {
    /* height: 5rem; */
    /* width: 1300px; */
    display: flex;
    /* position: fixed; */
    z-index: 10;
    align-items: center;
    justify-content: space-between;
}
/*Styling logo*/
.logo{
    padding:1vh 1vw;
    text-align: center;
}
.logo img {
    height: 4rem;
    width: 4rem;
    border-radius: 100%;
}
img{width: 100%;height: auto;}
/*Styling Links*/
.nav-links {
    display: flex;
    list-style: none;
    /* width: 88vw; */
    padding: 0 0.7vw;
    /* justify-content: space-evenly; */
    align-items: center;
    text-transform: uppercase;
    margin: 0;
}
.nav-links li a{
    text-decoration: none;
    margin: 0 25px;
    font-size: var(--menuText);
    color:var(--primaryColor)
}

.nav-links li {
    position: relative;
}


/*Styling Hamburger Icon*/
.hamburger div{
    width: 30px;
    height:3px;
    background: var(--primaryColor);
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px){
    nav{
        position: unset;
        z-index: 3;
        width: 100%;
    }
    .menuwrp {
        display: flex;
        gap: 100px;
        width: 80%;
        justify-content: end;
  
    }
    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 15px;
        top: 36px;
        transform: translate(-5%, -50%);
        z-index: 99999;
        transition: all 0.7s ease;
    }
    /* .nav-links{
        position: fixed;
        background: var(--white);
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        z-index: 9999;
    } */
    .nav-links {
        position: fixed;
        background: var(--white);
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
        z-index: 9999;
        right: 0;
        top: -55px;
        padding-top: 100px;
    }
    .profile {
        margin-right: 35px;
    }
    .nav-links.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li{
        opacity: 0;
    }
    .nav-links li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4){
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5){
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
    }
    li.fade{
        opacity: 1!important;
    }
    .nav-links {
gap:20px;
        align-items: start;

    }ul.nav-links a {
        border: none!important;
    }
    
}
/*Animating Hamburger Icon on Click*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}
  
  
  /* #slider {
    position: relative;
    width: 50%;
    height: 12vw;
    margin: 50px auto;
    font-family: 'Helvetica Neue', sans-serif;
    perspective: 1400px;
    transform-style: preserve-3d;
  } */

/* New media query for desktop, laptop, or big screen views */
@media screen and (min-width: 1024px) {
    #slider {
        min-height: 300px;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    #slider {
        min-height: 170px;
        min-width: 70%;
    }
}

  
  
  input[type=radio] {
    position: relative;
    top: 112%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: 0 15px 0 0;
    opacity: 0.4;
    transform: translateX(-83px);
    cursor: pointer;
  }
  
  
  input[type=radio]:nth-child(5) {
    margin-right: 0px;
  }
  
  input[type=radio]:checked {
    opacity: 1;
  }
  #slider label,
  #slider label img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: white;
    font-size: 70px;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 400ms ease;
  }
  /* Slider Functionality */
  
  /* Active Slide */
  #s1:checked ~ #slide1,
   #s2:checked ~ #slide2,
    #s3:checked ~ #slide3,
     #s4:checked ~ #slide4,
      #s5:checked ~ #slide5 {
    box-shadow: 0 13px 26px rgba(0,0,0, 0.3), 0 12px 6px rgba(0,0,0, 0.2);
    transform: translate3d(0%, 0, 0px);
  }
  
  /* Next Slide */
  #s1:checked ~ #slide2,
   #s2:checked ~ #slide3,
    #s3:checked ~ #slide4,
     #s4:checked ~ #slide5,
      #s5:checked ~ #slide1 {
    box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2);
    transform: translate3d(20%, 0, -100px);
  }
  
  
  /* Next to Next Slide */
  #s1:checked ~ #slide3,
   #s2:checked ~ #slide4,
    #s3:checked ~ #slide5,
     #s4:checked ~ #slide1,
      #s5:checked ~ #slide2 {
    box-shadow: 0 1px 4px rgba(0,0,0, 0.4);
    transform: translate3d(40%, 0, -250px);
  }
  
  /* Previous to Previous Slide */
  #s1:checked ~ #slide4,
   #s2:checked ~ #slide5,
    #s3:checked ~ #slide1,
     #s4:checked ~ #slide2,
      #s5:checked ~ #slide3 {
    box-shadow: 0 1px 4px rgba(0,0,0, 0.4);
    transform: translate3d(-40%, 0, -250px);
  }
  
  /* Previous Slide */
  #s1:checked ~ #slide5,
   #s2:checked ~ #slide1,
    #s3:checked ~ #slide2,
     #s4:checked ~ #slide3,
      #s5:checked ~ #slide4 {
    box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2);
    transform: translate3d(-20%, 0, -100px);
  }
  
  .profile img {
    width: 32px;
    border-radius: 100px;
    margin-left: 10px;
}
.menuwrp {
    display: flex;
    gap: 100px;
}


body.home {
    background-image: url(../images/mainbg2.webp);
    background-size: cover;
}
body.others {
    background-image: url(../images/mainbg2.webp);
}
ul.nav-links a {
    border: 1px solid;
    padding: 2px 17px 1px;
    border-radius: 30px;
}
a.login{
    border: 1px solid;
    padding: 2px 17px 1px;
    border-radius: 30px;
    font-size: var(--menuText);
    color:var(--primaryColor);
    text-decoration: none;
}
#slider {
    position: relative;
    width: 50%;
    height: 12vw;
    margin: 50px auto;
    font-family: 'Helvetica Neue', sans-serif;
    perspective: 1400px;
    transform-style: preserve-3d;
}
@media (max-width:1100px)and (min-width:800px){
    .menuwrp {
        display: flex;
        gap: 24px;
    }
    ul.nav-links a {

        padding: 2px 8px 1px;
   
    }
    .nav-links li a {

        margin: 0 17px;

    }
    .profile {
        width: 142px;
    }
    #slider {
        height: 200px;
    }
}
@media  (max-width:800px){

    #slider {
        height: 200px;
    }
}
h1.heroTitle.text-center {
    font-size: var(--heroFont);
    margin-top: 80px;
    margin-bottom: 20px;
    color:var(--primaryColor);
    width: 100%;
}
#slider label, #slider label img {
    border-radius: 25px;
}
input[type=radio]:checked {
    opacity: 1;
    width: 20px;
    accent-color: var(--primaryColor);
}
input[type=radio] {
    width: 14px;
}

section.herobottom {
    background: var(--TransparentBg);
    padding:30px 0;
    border-top:2px solid var(--borderColor);
    border-bottom:2px solid var(--borderColor);
}
.buttongrp a {
    text-decoration: none;
    display: block;
    text-align: center;
    color: var(--primaryColor);
    border: 2px solid var(--borderColor);
    border-radius: 9px;
    background: var(--TransparentBg);
    padding: 12px;
    font-size: var(--hbText);
}
section.notice {
    padding: 30px 0;
}
.noticebord {
    border: 2px solid var(--borderColor);
    border-radius: 10px;
    padding: 30px;
    background: var(--TransparentBg);
}
span.date {
    font-size: var(--regularText);
}
h6.nocietitle {
    text-align: center;
    margin-top: -23px;
    font-size: var(--hbText);
    color: var(--primaryColor);
}
.details.d-flex {
    padding: 7px 14px 5px;
    width: 94%;
    border: 1px solid var(--primaryColor);
    border-radius: 6px;
    gap: 40px;
    color: var(--black);
    font-size: var(--regularText);
}
.nitem.d-flex {
    margin: 15px 0px;
}
.nitem.d-flex img {
    width: 17px;
    height: 17px;
    margin-right: 15px;
    margin-top: 10px;
}
.aboutheader.d-flex img {
    width: 55px;
    border-radius: 10px;
    border-right: 2px solid  var(--borderColor);
    height: 55px;
}
.aboutheader.d-flex img {
    width: 60px;
    border-radius: 10px;
    border-right: 1px solid var(--borderColor);
    height: 60px;
}
.about {
    background-color: var(--TransparentBg);
}
.aboutheader.d-flex {
    border-bottom: 2px solid var(--borderColor);
    border-radius: 10px;
    height: 62px;
}
.name.text-center {
    font-size: 22px;
    line-height: 22px;
    margin-top: 10px;
    color:var(--primaryColor)
}
.aboutmessage {
    padding: 24px;
}
.about .text-end a {
    text-decoration: none;
    color:var(--black);
}
.about {
    background-color: var(--TransparentBg);
    border: 2px solid var(--borderColor);
    border-radius: 10px;
}
.aboutmessage {
    padding: 24px;
    font-size:var(--regularText)
}
.col-lg-4.col-md-6.col-sm-12.itembg.ml-3.mr-3 p{
    font-size: var(--smallText);
    line-height: 25px;
}
.col-lg-4.col-md-6.col-sm-12.itembg.ml-3.mr-3 {
    width: 32%;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid var(--borderColor);
}
h3.vivagtitle {
    text-align: center;
    font-size: var(--hbText);
    color: var(--primaryColor);
}
section.amader-vivag {
    padding: 30px 0;
    background: var(--TransparentBg);
    border-top: 2px solid var(--borderColor);
    border-bottom: 2px solid var(--borderColor);
}
h2.section-title {
    font-size: var(--sectionTitle);
    color: var(--primaryColor);
    margin-bottom: 15px;
    margin-top: 10px;
}
section.download .col-lg-11 .row {
    align-items: center;
    background: var(--TransparentBg);
    border-radius: 10px;
    padding: 10px;
    border: 2px solid var(--borderColor);
}
section.download img {
    width: 95px;
}
.download{
    padding: 30px 0;
}
.text-center.bannertext {
    font-size: var(--bannerText);
    line-height: 30px;
    color: var(--primaryColor);
}
a.downloadbtn {
    background:var(--buttonbg) ;
    color: var(--white);

}
a.downloadbtn {
    background: var(--buttonbg);
    color: var(--white);
    padding: 6px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: var(--hbText);
}
@media (min-width:578px) and (max-width:991px){
    .col-lg-4.col-md-6.col-sm-12.itembg.ml-3.mr-3 {
        width: 48%;
       
    }
}
@media (max-width:600px){
    .menuwrp {
        margin-right: 22px;
    }
    #slider {
        height: 165px;
    }
    h1.heroTitle.text-center {
        font-size: 40px;
        margin-top: 40px;
        margin-bottom: 0px;
    }
  
    .buttongrp a {
        font-size: var(--mHbText);
    }
    .aboutheader.d-flex {
        gap: 20px;
    }
        .col-lg-4.col-md-6.col-sm-12.itembg.ml-3.mr-3 {
        width: 96%;
       
    }
    section.amader-vivag .row.g-4.justify-content-between {
        justify-content: center!important;
    }
    section{
        padding-left: 10px!important;
        padding-right: 10px!important;
    }
    section.download .col-lg-11 .row {
        padding: 20px 10px!important;
        gap: 26px!important;
    }
}
.middleiconwrp {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
}
.vpop {
    position: relative;
}
.middleiconwrp {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    top: 0;
}

    
#video-popup-container {
    display:none;
    position: fixed;
    z-index: 996;
    width: 60%;
    left: 50%;
    margin-left: -30%;
    top: 20%;
    background-color: var(--whitecolor);
  }
  
  #video-popup-close {
    cursor: pointer;
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 998;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    text-align: center;
    font-size: 12px;
    background-color: var(--blackcolor);
    line-height: 25px;
    color: var(--whitecolor);
  }
  
  #video-popup-iframe-container {
    position: absolute;
    z-index: 997;
    width: 100%;
    padding-bottom: 56.25%;
    border: 2px solid var(--blackcolor);
    border-radius: 2px;
    background-color: var(--blackcolor);
  }
  
  #video-popup-iframe {
    z-index: 999;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--blackcolor);
  }
  
  #video-popup-overlay {
    display: none;
    position: fixed;
    z-index: 995;
    top: 0;
    background-color: var(--blackcolor);
    opacity: 0.8;
    width: 100%;
    height: 100%;
  }
  
  #video-popup-close:hover {
    color: #DE0023;
  }
@media (min-width:991px){
    .loopoop2 {
        width: 50%;
    }
}
.blogtitle h2 {
    margin: 0;
}
.blogtitle {
    background: var(--TransparentBg);
    padding: 13px;
    border-radius: 10px;
    border: 2px solid var(--borderColor);
    margin-bottom: 15px;
}
h4.title {
    font-size: var(--regularText);
    line-height: 25px;
}
.padding {
    padding: 20px;
}
.avater img {
    width: 40px;
    border-radius: 100%;
    margin-right: 10px;
}
.avater {
    width: 60%;
    font-size: var(--smallText);
}.readmore {
    width: 40%;
    display: flex;
    justify-content: end;
    align-items: center;
}
.readmore a {
    text-decoration: none;
    background: var(--primaryColor);
    color: var(--white);
    padding: 2px 12px;
    font-size: var(--smallText);
    border-radius: 5px;
}
.blogs {
    height: 500px;
    overflow-y: scroll;
    overflow-x: hidden;
}
/* width */
::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px var(--white); 
    border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--primaryColor); 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--primaryColor); 
  }
  .blog{
    padding-bottom: 30px;
  }
  img.footerlogo {
    border-radius: 15px;
    border: 2px solid var(--footerColor);
}
footer.footer .footerlink img {
    margin-top: 3px;
}
img.icon1 {
    width: 15px;
    height: 20px;
}
img.icon2 {
    width: 15px;
    height: 19px;
}
.footerlink ul {
    list-style: none;
}
.footerlink li a {
    display: flex;
    text-decoration: none;
    gap: 10px;
    margin-bottom: 10px;
    font-size: var(--regularText);
    color: var(--black);
}
.text-center.contact p {
    font-size: var(--smallText);
}img.icon3 {
    width: 16px;
    height: 14px;
}
a.button {
    text-decoration: none;
    color: var(--white);
    background: var(--footerColor);
    padding: 4px 12px;
    border-radius: 7px;
}
footer.footer {
    padding-top: 30px;
    background: var(--TransparentBg);
    border-top: 2px solid var(--borderColor);
}
p.copy-right.text-center {
    font-size: var(--smallText);
}
.col-lg-4.col-md-6.col-sm-12.itembg.ml-3.mr-3 {
    background: var(--TransparentBg);
}
@media (max-width:991px){
    .blogtitle{
        margin-top: 20px;
    }
}
img.footerlogo {
    width: 80px;
    padding: 0;
}
.row.align-items-center.footerlogowidget p.text-center {
    width: 300px;
}
.row.align-items-center.footerlogowidget.justify-content-center {
    margin-bottom: 25px;
}
.footerlink {
    margin-bottom: 25px;
}
.text-center.contact {
    padding: 25px;
}
body.others {
    background-image: url(../images/mainbg2.webp);
    background-size: cover;
    background-position: center;
}
.contents {
    min-height: 500px;
    border: 2px solid var(--borderColor);
    border-radius: 10px;
    background: var(--TransparentBg);
    margin: 50px 0;
    padding: 25px;
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1 0 auto;
}

.footer {
    flex-shrink: 0;
}

.white-box {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

/* Add these styles at the end of the file */

.dashboard-container {
  padding: 30px;
}

.white-box {
  background-color: var(--TransparentBg);
  border: 2px solid var(--borderColor);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.dashboard-title {
  color: var(--primaryColor);
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--borderColor);
  border-radius: 8px;
  padding: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primaryColor);
  box-shadow: 0 0 0 0.2rem rgba(154, 90, 227, 0.25);
}

.btn {
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: var(--buttonbg);
  border: none;
}

.btn-primary:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .download-form-container {
    padding: 20px;
  }

  .form-title {
    font-size: 2rem;
  }

  .btn-primary {
    width: 100%;
  }
}

.video-thumbnail {
  overflow: hidden;
}

.video-thumbnail img {
  transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-icon {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.video-item:hover .play-icon {
  opacity: 1;
}

.video-title {
  font-size: 0.9rem;
  line-height: 1.2;
  height: 2.4em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}