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

@font-face {
    font-family: dmsans-r;
    src: url(../fonts/DMSans-Regular.ttf);
}

@font-face {
    font-family: dmsans-b;
    src: url(../fonts/DMSans-Bold.ttf);
}

body {
    font-family: dmsans-r;
    background-color: #0F0F0F;
    color: #fff;
    min-height: 100vh;
}

a {
    text-decoration: none;
}

/* Navigation styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    /* z-index: 5; */
    z-index: 2;
    padding: 15px 0px;
}

header.fixed_header {
    background: linear-gradient(0deg, transparent, #000);
}

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

.menu-toggle {
    width: 35px;
    /* height: 24px; */
    padding: 0;
    /* margin-left: 38px; */
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.menu-toggle span {
    width: 35px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

.menu-toggle span:nth-child(2) {
    width: 29px;
}

.logo {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.logo a {
    height: 46px;
}

.logo img {
    width: 119px;
    height: 100%;
}

.login-btn {
    font-family: dmsans-b;
    font-weight: 700;
    background-color: #FF0059;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 17px;
    line-height: 22px;
    min-width: 80px;
    height: 36px;
    /* transition: background-color 0.3s; */
    transition: .3s all;
}

.login-btn:hover {
    /* background-color: #E6005C; */
    color: #0F0F0F;
}

.bottom-menu li a {
    font-size: 21px !important;
    line-height: 27px !important;
    color: #F7F7F7 !important;
    font-family: dmsans-r !important;
    letter-spacing: normal !important;

}

.bottom-menu {
    margin-top: 190px;
}

/* Hero section styles */
.hero {
    height: 100vh;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.hero-image.video-playing {
    z-index: 10;
}

.hero-image:hover.video-playing .hero-controls {
    opacity: 0;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    /* transform: translateY(-50%); */
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide.active video.playing {
    opacity: 1;
}

.video-close {
    position: absolute;
    top: 10%;
    right: 5%;
    z-index: 10;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-playing .video-close {
    opacity: 1;
    pointer-events: auto;
}

.video-close img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 40px;
}

.hero-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 100%;
    max-width: 1323px;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;

}

/* .hero-image:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.68) 0%, rgba(15, 15, 15, 0) 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
} */

.hero-image.video-playing:hover::after {
    opacity: 0;
}

.hero-image:hover .hero-controls {
    opacity: 1;
}

.banner-title {
    position: absolute;
    bottom: 65px;
    left: 14%;
    transform: translateX(-50%);
    color: #F5F5F5;
    font-size: 30px;
    line-height: 39px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 9;
}

.hero-image.video-playing .banner-title {
    left: 50%;
}

.hero-image:hover .banner-title {
    opacity: 1;
}

.nav-btn,
.play-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.nav-btn:hover {
    transform: scale(1.1);
}

.nav-btn img {
    height: 42px;
}

.nav-btn.prev img,
.popup-prev img {
    transform: rotate(180deg);
}

.play-btn {
    width: 91px;
    height: 91px;
    background-color: #FF0066;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}

.play-btn img {
    width: auto;
    height: auto;
    margin-left: 5px;
}

.play-btn:hover {
    /* transform: scale(1.1); */
    background-color: #E6005C;
}

.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    opacity: 0;
    z-index: 9;
}

.hero-image:hover .slide-indicators {
    opacity: 1;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #292929;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #F5F5F5;
}

/* Scrollable content styles */
.scrollable-content {
    position: relative;
    z-index: 1;
    background-color: #0F0F0F;
    margin-top: 100vh;
    width: 100%;
}

/* Menu Overlay styles */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    overflow: auto !important;
}

.close-menu {
    /* position: absolute; */
    top: 26px;
    left: 56px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    margin-bottom: 150px;
}

.menu-nav {
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    /* padding: 15px 0px; */
}

.menu-nav ul {
    list-style: none;
}

.menu-nav ul li {
    margin-bottom: 6px;
}

.menu-nav ul li a {
    color: #F5F5F5;
    font-size: 89px;
    line-height: 93px;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
}

.menu-nav ul li a:hover {
    /* color: rgba(255, 255, 255, 0.8); */
    opacity: .8;
}

.menu-nav ul li a.menu-login {
    color: #FF0059;
}

.menu-overlay .menu-nav {
    /* padding-top: 26px;
    padding-bottom: 26px; */
    padding: 26px 20px;
    margin-bottom: 30px;
}

/* Movie Grid Section */
.movie-section {
    width: 100%;
    padding-bottom: 150px;
    margin-top: 100vh;
}

.movie-grid {
    display: flex;
    flex-direction: column;
    background-color: #FF0059;
    max-width: 100%;
    margin: 0 auto;
}

.movie-items-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.load-more-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 63px;
}

.show-more,
.show-less {
    background: #FF0059;
    border: 1px solid #FF0059;
    border-radius: 37px;
    color: #F7F7F7;
    padding: 9px 28px;
    font-size: 24px;
    line-height: 32px;
    font-family: dmsans-b;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-less {
    background: transparent;
}

.show-less:hover {
    color: #FF0059;
}

.show-more:hover {
    color: #0F0F0F;
}

.hidden {
    display: none;
}

.loading-animation {
    display: none;
    text-align: center;
}

.loading-animation p {
    font-size: 60px;
    line-height: 82px;
    color: #ffffff;
    padding: 100px 0
}

.loading-animation.active {
    display: block;
}

.movie-item {
    position: relative;
    /* aspect-ratio: 16/9; */
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.movie-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.movie-item.hidden {
    display: none;
}

.movie-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform;
}

.movie-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    max-width: 65%;
    max-height: 55%;
    object-fit: contain;
    transition: all 0.8s ease;
    filter: brightness(0) invert(1);
    will-change: filter, transform;
}

.movie-item:hover .movie-logo {
    filter: none;
    transform: translate(-50%, -50%) scale(1.1);
}

.movie-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #0000003D;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.movie-item:hover::after {
    opacity: 1;
}

/* Clients section */
.clients-section {
    width: 100%;
    max-width: 1246px;
    margin: 0 auto;
    /* padding: 60px 40px; */
    padding: 0 20px;
    padding-bottom: 339px;
}
#clients-section{
    height: 80px;
    margin-top: -80px;
}
.clients-section h1 {
    font-size: 60px;
    line-height: 82px;
    font-weight: 400;
    color: #F5F5F5;
    letter-spacing: -0.01em;
    margin-bottom: 97px;
}

.clients-grid {
    max-width: 1024px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 60px;
    row-gap: 40px;
    align-items: center;
    justify-items: center;
}

.clients-grid img {
    width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}


/* Footer styles */
footer {
    background-color: #FF0059;
    color: #fff;
    padding: 148px 0 97px;
}

.container {
    max-width: 1363px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 105px;
}

.footer-left h2 {
    font-size: 89px;
    font-weight: 400;
    line-height: 93px;
    margin-bottom: 209px;
}

/* .contact-section h3,
.contact-section a {
    font-size: 26px;
    line-height: 35px;
    color: #F5F5F5;
    font-weight: 400;
} */

.contact-section a,
.company-info a,
.footer-links a {
    /* transition: opacity 0.3s ease; */
    transition: .3s all;
}

.contact-section {
    margin-bottom: 55px;
    padding-right: 130px;
}

.contact-section a:hover,
.company-info a:hover,
.footer-links a:hover {
    /* opacity: 0.8; */
    color: #0F0F0F !important;
}

.company-info p,
.company-links a {
    font-size: 17px;
    line-height: 22px;
    color: #fff;
    font-weight: 400;
}

.company-links a {
    text-decoration: underline;
}

.company-links {
    display: flex;
    flex-direction: column;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.footer-bottom p,
.footer-links a {
    color: #F7F7F7;
    font-size: 17px;
    line-height: 22px;
    font-family: dmsans-b;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    text-align: end;
}

.company-address {
    margin: 25px 0;
}

.footer-info {
    margin-top: 8px;
}

/* Contact page */
.contact-page .contact-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 45px;
}

.contact-page {
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    /* padding: 120px 0 60px; */
    position: relative;
    overflow: hidden;
}

.contact-left {
    /* flex: 1; */
    width: 54.87%
}

.contact-right {
    width: 38.85%;
    margin-top: 10px;
}

.contact-right .contact-img img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
    display: block;
}

.contact-page h1 {
    color: #F5F5F5;
    font-size: 89px;
    line-height: 93px;
    letter-spacing: -0.02em;
    font-weight: 400;
    padding-bottom: 80px;
}

.contact-left p {
    color: #F5F5F5;
    font-size: 25px;
    line-height: 33px;
    padding-bottom: 71px;
}

.contact-left a {
    color: #fff;
    font-size: 19px;
    line-height: 25px;
    font-family: dmsans-b;
    font-weight: 700;
    background: #FF0059;
    border-radius: 6px;
    padding: 11px 31px;
    transition: all 0.3s ease;
}

.contact-left a:hover {
    /* opacity: 0.8; */
    color: #0F0F0F;
}

.contact-right p,
.contact-right a {
    color: #F5F5F5;
    font-size: 17px;
    line-height: 22px;
}

.contact-right a {
    color: #ffffff
}

.contact-right a:hover {
    color: #FF0059;
}

.contact-right .contact-details {
    margin-bottom: 30px;
}

.contact-right .contact-details:last-child {
    margin-bottom: 0 !important;
}

.contact-right .contact-img {
    margin-top: 119px;
}

.contact-page.inner-page {
    padding: 150px 0px;
    display: block;
}
.contact-page.error{
    padding: 200px 0px 150px;
}





.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
}

.video-popup.show {
    display: flex;
}

#popup-video {
    width: 80%;
    max-width: 900px;
    /* height: auto; */
    height: 500px;
    background: black;
}

.video-popup button {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
}

.popup-close {
    top: 20px;
    right: 30px;
}

.popup-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.popup-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.popup-prev img,
.popup-next img {
    height: 40px;
}

.popup-close img {
    height: 30px;
}

.contact-page.error h1 {
    color: #F5F5F5;
    font-size: 76px;
    line-height: 82px;
    letter-spacing: -0.02em;
    font-weight: 400;
    padding-bottom: 0;
    max-width: 68%;
    margin: 0 auto;
    text-align: center;
}

.contact-page.error a {
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    background: #FF0059;
    border: 1px solid #FF0059;
    border-radius: 37px;
    color: #F7F7F7;
    padding: 9px 28px;
    font-size: 24px;
    line-height: 32px;
    font-family: dmsans-b;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-page.error a:hover {
    color: #0F0F0F;
}

.contact-page.error .contact-inner {
    flex-direction: column;
}
footer a,footer p,footer h1,footer h2,footer h3,footer h4,footer h5,footer h6,footer strong{
    font-size: 26px;
     line-height: 35px;
     color: #F5F5F5;
     font-weight: 400;
     transition: .3s all;
 }
 footer a:hover,footer a:hover strong{
     color: #0F0F0F;
 }

 