@font-face {
    font-family: Basher;
    src:
      url(fonts/LHF\ Basher\ REG\ Regular.woff) format('woff');
  }
li {
    list-style-type: none;
}

a {
    text-decoration: none;
}

.wrapper {
    width: 900px;
    margin: 0 auto;
    background: url(images/main-bg.jpg) no-repeat top -40% center;
    background-size: 100%;
}
.grey-bg{
    background: url(images/grey-back.jpg) no-repeat top -40% center;
    background-size: 100%;
}

.menu-row {
    margin-right: 160px;
    justify-content: end;
}

.menu {
    width: 184px;
    position: absolute;
    top: -152px;
    transition: all 0.5s ease;
    z-index: 2;
}

.menu .main-ul {
    text-align: end;
    /* width: 129px; */
    width: 142px;
    padding-left: 0px;
    margin-bottom: 0;
}

.menu-btn {
    cursor: pointer;
    /* margin-left: 3px; */
    /* width: 169px; */
    margin-left: 7px;
    width: 164px;

}

.menu-btn:hover .menu {
    top: 0;
}

.menu .main-ul li {
    background-color: #000;
    transition: transform 0.2s linear;
    margin-bottom: 2px;
}

.menu .main-ul li:last-child {
    margin-bottom: 0;
}

.menu .main-ul li:hover {
    background-color: #fff;
    transform: rotateX(180deg);
}

.menu .main-ul li a {
    padding: 1px 10px;
    color: #fff;
    display: block;
    font-size: 12px;
}

.menu .main-ul li:hover a {
    color: #000;
    transform: rotateX(180deg);
}

.menu-bg {
    /* width: 145px; */
    width: 158px;
    background-color: #402987;
    border-left: 8px solid #cc3793;
    border-right: 8px solid #51c0eb;
    display: inline-block;
}

.sub-menu {
    position: absolute;
    background-color: #ffff7f;
    padding: 0;
    margin: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.sub-1 {
    top: 65px;
    right: -142px;
}

.sub-2 {
    top: 110px;
    right: -142px;
    width: inherit;
}

.sub-menu li {
    background-color: #ffff00;
    margin-bottom: 2px;
    padding: 1px 5px;
    transition: all 0.5s ease;
}

.sub-menu li:hover {
    background-color: #000;
}

.sub-menu li:last-child {
    margin-bottom: 0px;
}

.sub-menu li a {
    display: block;
    font-size: 12px;
    color: #000;
}

.sub-menu li:hover a {
    color: #ffff00;
}

/* ------------------------ */
.main-content {
    margin-top: 20px;
    /* background: url(images/background.jpg) no-repeat; */
    /* background-size: cover; */
    position: relative;
}

.logo {
    display: block;
    width: 160px;
}
.logo-home {
    position: absolute;
    width: 250px;
    top: 0;
    left: 15px;
    /* z-index: 1; */
}

.logo img {
    width: 100%;
}

.move-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%; /* Responsive width */
    max-width: 600px; /* Maximum width for larger screens */
    margin: auto;
}

.tilt img{
    width: 100%;
    height: auto;
    margin-top: 60px;
}

.tag {
    background-color: #ffff00;
    color: #000;
    font-size: 12px;
    display: inline-block;
    padding: 1px 5px;
    font-weight: bold;
}
.films{
    margin-left: 10px;
    margin-top: 20px;
}

/* ------------------footer style------------------------ */
.footer {
    border-top: 1px solid #ccc;
    padding: 20px 10px;
}

.footer a,
.footer p {
    font-size: 10px;
    font-weight: bold;
    color: #000;
}

.footer a:hover {
    color: #2cb7ee;
}

.link-container a:not(:last-child)::after {
    content: "|";
    color: #eb62b2;
    margin-left: 5px;
    margin-right: 1px;
}

.footer-col-2 p {
    font-weight: normal;
}

.social,
.contact,
.links {
    line-height: 15px;
}

/* ---------------logo-slider-css------------------------ */
.awards {
    position: absolute;
    bottom: 50px;
    right: 40px;
    cursor: pointer;
}

.awards .tag {
    transition: all ease-in-out 0.3s;
}

.awards:hover .tag {
    background-color: #cc3793;
    color: #ffff00;
}

.logo-slider {
    position: relative;
    width: 95px;
    height: 68px;
    overflow: hidden;
}

.logo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.5);
    /* Initial scale for pop-up effect */
    transition: opacity 0.5s, transform 0.5s;
}

.logo-slide.active {
    opacity: 1;
    transform: scale(1);
    /* Pop-up to full size */
}

.logo-slide img {
    width: 100%;
    height: auto;
}

/* ------------------------------awards poup css--------------------------- */
/* Popup Styles */
.popup {
    display: none;
    /* display: flex; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-y: auto;
    z-index: 3;
    flex-wrap: wrap;
}

.popup-content {
    position: relative;
    /* background: #222; */
    padding: 20px;
    border-radius: 8px;
    max-width: 625px;
    width: 100%;
}

.close {
    position: absolute;
    top: 19px;
    right: 20px;
    color: #000;
    cursor: pointer;
    padding: 0 12px;
    background-color: #ffff00;
    font-size: 11px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}
.close:hover{
    transform: scale(1.2);
    transform-origin: center;
    background-color: #cc3793;
}
.popup h2 {
    color: #ffff00;
    margin-bottom: 20px;
    font-size: 12px;
}
.popup h2::after {
    display: inline-block;
    content: "";
    border-top: 1px solid #ffff00;
    width: 87%;
    margin: 0 5px;
    transform: translateY(-4px);
}
.wet-dreams h2::after{
    width: 56%;
}
.guarantee h2::after{
    width: 82%;
}
.popup img {
    width: 100px;
    height: fit-content;
    object-fit: contain;
    margin-right: 17px;
}
.popup-content .section{
    margin-bottom: 25px;
}
/* -------------------------------------- */
.video-btn{
    position: absolute;
    width: 25px;
    height: 25px;
    /* background: #000; */
    cursor: pointer;
    z-index: 5;
    background: url(images/dot.png) no-repeat;
    background-size: contain;
    transition: all 0.3s ease-in-out;
}
.video-btn:hover{
    background: url(images/dot-up.png) no-repeat;
    background-size: contain;
    transform: scale(1.5);

}
.video-1 { top: 52%;
    left: 2%; }
.video-2 { top: 38%;
    left: 13%; }
.video-3 { top: 21%; left: 40%; }
.video-4 { top: 54%; left: 42%; }
.video-5 { top: 58%; left: 65%; }
.video-6 { top: 37%; right: 10%; }
.video-7 { top: 31%; right: 1%; }
/* -----------------------------------videos popup css------------------------------------ */
.video-popup-content iframe{
    width: 100%;
    height: auto;
}
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.video-popup-content {
    position: relative;
    background: #fff;
    padding: 20px;
    max-width: 80%;
    max-height: 80%;
}

#popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    cursor: pointer;
    padding: 0 12px;
    background-color: #ffff00;
    font-size: 11px;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}
#popup-close:hover{
    transform: scale(1.2);
    transform-origin: center;
    background-color: #cc3793;
}
/* --------------------------------news feeds silder----------------------------------- */
.news-feeds{
    position: absolute;
    bottom: 12px;
    right: 190px;
    overflow: hidden;
}
.news-date{
    display: inline-block;
    margin: 0;
    font-size: 12px;
    background: black;
    color: #fff;
    padding: 0px 5px;
    transition: all 0.4s ease-in-out;
}
.news-date:hover, .news-para:hover{
    color: #cc3793;
}
.news-para{
    margin: 0;
    font-size: 10px;
    color: black;
    background-color: #ffff00;
    margin-top: 5px;
    transition: all 0.4s ease-in-out;
}
.news-heading{
    font-size: 12px;
    margin: 0;
    text-align: center;
}
.news-slider {
    position: relative;
    width: 100%;
    max-width: 200px;
    overflow: hidden;
}

.news-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.news-slide {
    min-width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

button {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #51c0eb;
    border: none;
    /* padding: 10px 15px; */
    cursor: pointer;
    border-radius: 50%;
    z-index: 3;
}

button:hover {
    /* background-color: rgba(0, 0, 0, 0.8); */
}

.prev {
    left: 50px;
}

.next {
    right: 50px;
}

/* -----------------------about css--------------------------------- */
.about-img{
    width: 100%;
    height: fit-content;
    mix-blend-mode: multiply;
}
.flim-img{
    position: absolute;
    width: 140%;
    height: fit-content;
    mix-blend-mode: multiply;
    top: 12px;
    left: -50px;
}
.heading1{
    width: 90%;
    height: fit-content;
    position: absolute;
    top: -38px;
}
.thirtyfour{
    top:-55px
}
.about-heading{
    position: absolute;
    left: 55px;
    top: -20px;
}
.about-col-1,.about-col-2{
    width: 45%;
}
.bth-btn{
    padding: 1px 16px;
    float: right;
    margin-top: -20px;
    transition: all 0.2s ease-in-out;
}
.bth-btn:hover{
    background-color: #cc3793;
    color: #ffff00;
}
.about-links{
    margin-top: 10px;
    margin-bottom: 0;
    display: inline-block;
}
.about-links li{
    display: inline-block;
}
.about-links li a{
    font-size: 15px;
    padding: 3px 12px;
    height: 25px;
    display: block;
    overflow: hidden;
}

.link-1, .link-2{
    position: relative;
    transition: top 0.3s ease;
    font-family: Basher;
}
.link-1{
    color: #8854a0;
    top: 0;
}
.link-2{
    /* color: #aeaeae; */
    color: #51c0eb;
    top: 100%;
}
.about-links li a:hover .link-1{
    top: -20px;
}
.about-links li a:hover .link-2{
    top: -22px;
}
.about-links li a.active .link-1 {
    top: -20px;
}

.about-links li a.active .link-2 {
    top: -22px;
    color: #aeaeae;
}
.about-tabs{
    min-height: 250px;
    max-height: 250px;
    overflow-y: scroll;
    /* overflow-y: hidden; */
}
.about-para{
    font-size: 12px;
    margin: 10px;
    
}
hr{
    margin: 0;
}
/* Specific div ke liye scrollbar style */
.about-tabs::-webkit-scrollbar {
    width: 8px; /* Scrollbar ki width */
}

.about-tabs::-webkit-scrollbar-thumb {
    background-color: #8854a0; /* Scrollbar ka color */
    /* border-radius: 10px; Rounded corners */
    border: 1px solid #a1a1a1; /* Border around the thumb */
}

.about-tabs::-webkit-scrollbar-thumb:hover {
    background-color: #8854a0; /* Hover effect color */
}

.about-tabs::-webkit-scrollbar-track {
    background: #a1a1a1; /* Background of the track */
    /* border-radius: 10px; Rounded corners */
}
.blog-btn{
    display: inline-block;
    position: absolute;
    width: 74px;
    height: 74px;
    bottom: 22px;
    font-size: 12px;
    letter-spacing: 5px;
    font-weight: bold;
    /* text-align: center; */
    text-indent: 14px;
    line-height: 74px;
    right: 15px;
    color: #949494;
    background: #000;
    border-radius: 100%;
    transition: all 0.3s ease;
}
.blog-btn:hover{
    transform: scale(1.2);
}
.info-btn {
    display: inline-block;
    position: absolute;
    bottom: -6px;
    right: 75px;
    transition: all 0.3s ease;
    z-index: 1;
}
.info-btn img{
    width: 55px;
}

.info-btn:hover{
    transform: scale(1.1);
}
.trailer-btn {
    display: inline-block;
    position: absolute;
    bottom: 22px;
    right: 0px;
    transition: all 0.3s ease;
}
.trailer-btn img{
    width: 95px;
}

.trailer-btn:hover{
    transform: scale(1.1);
}

/* ----------------------------------------dropdown css----------------------- */
.dropdown {
    position: relative;
    display: inline-block;
    width: 95%;
}

.dropdown-content {
    position: absolute;
    background-color: #fff;
    min-width: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}
.dropdown-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    min-width: 100%;
}
.dropdown-content a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    transition: all 0.4s ease;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #000;
}

.dropdown-content img,.dropdown-btn img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.dropdown-content .text-container {
    display: flex;
    flex-direction: column;
}

.dropdown-content h4,.dropdown-btn h4 {
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    color: #2cb7ee;
}

.dropdown-content p,.dropdown-btn p {
    margin: 0;
    font-size: 18px;
    color: #000;
}

.dropdown:hover .dropdown-content {
    max-height: 500px;
    /* Set to a value large enough to fit all content */
}
.dropdown-content a:hover .text-container h4{
    color: #fff;
}
.dropdown-content a:hover .text-container p{
    color: #fff;
}
#paragraph4 iframe{
    width: -webkit-fill-available;
}