/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0.3);
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.3);
}

/* General Scrollable Elements */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.3);
}

*::-webkit-scrollbar {
    width: 6px;
}

*::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0px;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

html {
    font-size: 16px;
    line-height: 1.4;
    color: #111111;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Movie Poster Section with Banner Text */
.movie-poster-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.movie-poster {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.poster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
    display: block;
}

/* Banner Text Overlay */
.banner-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.banner-title {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;
}

.banner-subtitle {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 2px;
    margin: 0;
    opacity: 0.95;
    text-transform: uppercase;
    font-style: italic;
}

/* Advanced Animated Text Effects */
.animated-text {
    animation: fadeInScale 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.animated-subtitle {
    animation: fadeInSlide 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s both;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
        filter: blur(10px);
    }

    50% {
        opacity: 0.7;
        transform: translateY(20px) scale(0.95);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateX(-50px) translateY(30px);
        filter: blur(5px);
    }

    50% {
        opacity: 0.6;
        transform: translateX(-20px) translateY(15px);
        filter: blur(2px);
    }

    100% {
        opacity: 0.95;
        transform: translateX(0) translateY(0);
        filter: blur(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Text Glow Effect */
.banner-title:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    transition: text-shadow 0.3s ease;
}

/* Responsive Banner Text */
@media (max-width: 768px) {
    .banner-title {
        font-size: 3rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .banner-subtitle {
        font-size: 1.4rem;
        letter-spacing: 1.5px;
    }

    .banner-text-overlay {
        width: 95%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }

    .banner-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .banner-text-overlay {
        width: 98%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
}

/* Video Player Section Styles */
.video-player-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
    overflow: hidden;
}

.video-player {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-preview-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.play-button {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    color: #ffffff;
    text-decoration: none;
}

.play-button svg {
    width: 30px;
    height: 30px;
    margin-left: 3px;
}

.play-button .stroke-solid {
    stroke-width: 2;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: stroke-draw 2s ease-in-out infinite;
}

.play-button .stroke {
    stroke-width: 1;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: stroke-draw 2s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes stroke-draw {
    0% {
        stroke-dashoffset: 300;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -300;
    }
}

/* Video Player Hover Effects */
.video-player:hover .video-preview {
    opacity: 0.9;
}

.video-player:hover .play-button {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.15);
}

/* Responsive Video Player */
@media (max-width: 768px) {
    .video-player-section {
        height: 50vh;
        min-height: 300px;
        max-height: 400px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .video-player-section {
        height: 40vh;
        min-height: 200px;
        max-height: 300px;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button svg {
        width: 20px;
        height: 20px;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    letter-spacing: 0.35px;
    line-height: 1.4;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(0, 0, 0, 0.3);
}

/* Body Scrollbar Styles */
body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0px;
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 100%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



@keyframes logo-shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Film Scene Loader */
.film-scene-loader {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.film-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./src/assets/images/title-photo-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.film-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%), linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
    animation: film-flicker 0.1s ease-in-out infinite;
}

.film-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150vh;
}

.film-title {
    font-size: 5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 6px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.9), 0 0 80px rgba(255, 255, 255, 0.5), 0 0 120px rgba(255, 255, 255, 0.2);
    animation: title-glow 3s ease-in-out infinite alternate;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.film-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    border-radius: 0px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.film-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 80px;
    letter-spacing: 8px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    position: relative;
    opacity: 0.9;
}

.film-loading {
    margin-top: 60px;
    width: 100%;
    max-width: 400px;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2), inset 0 0 10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 0px;
    animation: loading-progress 3s ease-in-out;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.4);
    position: relative;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
    animation: loading-shimmer 2s ease-in-out infinite;
}

.loading-text {
    font-size: 1.4rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    animation: loading-pulse 2s ease-in-out infinite;
    text-transform: uppercase;
    position: relative;
}

.loading-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top: 2px solid transparent;
    border-radius: 0px;
    animation: loading-spin 1s linear infinite;
}

.loading-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-top: 2px solid transparent;
    border-radius: 0px;
    animation: loading-spin 1s linear infinite reverse;
}

/* Clapperboard Loader */
.clapperboard-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.clapperboard {
    position: relative;
    width: 600px;
    height: 450px;
    background: #000000;
    border-radius: 0px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 0 3px #333333;
    animation: clapperboard-flip 3s ease-in-out;
    transform-style: preserve-3d;
    transform-origin: bottom center;
}

.clapperboard-top {
    height: 90px;
    background: #ffffff;
    border-radius: 0px;
    position: relative;
    overflow: hidden;
    transform-origin: bottom center;
    animation: clapperboard-top-open 2s ease-in-out 1s forwards;
}

.clapperboard-stripe {
    height: 20px;
    background: #000000;
    margin: 0;
    position: relative;
}

.clapperboard-stripe:nth-child(1) {
    background: #000000;
}

.clapperboard-stripe:nth-child(2) {
    background: #333333;
}

.clapperboard-stripe:nth-child(3) {
    background: #000000;
}

.clapperboard-main {
    height: 300px;
    background: #000000;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: clapperboard-zoom 2s ease-in-out 1.5s forwards;
}

.clapperboard-text {
    text-align: center;
    color: #ffffff;
    width: 100%;
}

.movie-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
    animation: title-glow 2s ease-in-out infinite alternate;
}

.movie-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #cccccc;
    margin-bottom: 30px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.scene-info,
.take-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scene-number,
.take-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scene-count,
.take-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.clapperboard-handle {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 80px;
    background: #333333;
    border-radius: 0px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

.clapperboard-shadow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 320px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
    border-radius: 0px;
    z-index: -1;
    animation: shadow-pulse 2s ease-in-out infinite alternate;
}

/* Animations */
@keyframes clapperboard-flip {
    0% {
        transform: rotateY(-90deg) rotateX(20deg);
        opacity: 0;
    }

    50% {
        transform: rotateY(0deg) rotateX(0deg);
        opacity: 1;
    }

    100% {
        transform: rotateY(0deg) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes title-glow {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    }
}

@keyframes shadow-pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes clapperboard-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes clapperboard-top-open {
    0% {
        transform: rotateX(0deg);
    }

    100% {
        transform: rotateX(-90deg);
    }
}

@keyframes clapperboard-zoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes site-fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes film-flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.95;
    }
}

@keyframes loading-progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes loading-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes loading-shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes loading-spin {
    0% {
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes countdown-pulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes cinema-glow {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }

    100% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.6);
    }
}

@keyframes curtain-open-left {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes curtain-open-right {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Screen flicker effect */
.cinema-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    animation: screen-flicker 0.1s ease-in-out infinite;
    pointer-events: none;
}

@keyframes screen-flicker {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
}

.header-transparent {
    background: rgba(0, 0, 0, 0.95);
}

.header-light {
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
}

.header-dark {
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo */
.logo img {
    height: 21px;
    width: auto;
}

.logo a.logo-text,
.logo-text,
a.logo-text {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    color: #ffffff !important;
    text-decoration: none !important;
    letter-spacing: 4px !important;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.6) !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
    text-transform: uppercase !important;
    position: relative !important;
    display: inline-block !important;
    border: none !important;
    outline: none !important;
    background: none !important;
}

.logo a.logo-text:visited,
.logo-text:visited,
a.logo-text:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

.logo a.logo-text:focus,
.logo-text:focus,
a.logo-text:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    outline: none !important;
}

.logo a.logo-text:active,
.logo-text:active,
a.logo-text:active {
    color: #ffffff !important;
    text-decoration: none !important;
}

.logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ffffff, #cccccc, #ffffff);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    z-index: -1;
    animation: logo-shimmer 3s ease-in-out infinite;
}

.logo a.logo-text:hover,
.logo-text:hover,
a.logo-text:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8), 0 0 60px rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.08) !important;
    letter-spacing: 6px !important;
}

/* Force Logo Styles */
.header .logo a,
.header .logo a:link,
.header .logo a:visited,
.header .logo a:hover,
.header .logo a:active,
.header .logo a:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    font-weight: 900 !important;
    letter-spacing: 1px !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase !important;
    font-family: 'Inter', sans-serif !important;
    border: none !important;
    outline: none !important;
    background: none !important;
    transition: all 0.3s ease !important;
}

/* Mobile Logo */
@media (max-width: 768px) {
    .header .logo a {
        font-size: 1rem !important;
        letter-spacing: 0.5px !important;
    }

    /* Hide duplicate mobile header */
    .header-mobile {
        display: none !important;
    }

    /* Show only main header */
    .header:not(.header-mobile) {
        display: block !important;
    }
}

.header .logo a:hover {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: none !important;
    letter-spacing: 1px !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6) !important;
}

/* Menu Toggle */
.menu-toggle {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 0px;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
    color: #ffffff;
}

.menu-toggle:focus,
.menu-toggle:active {
    outline: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 16px;
    transition: all 0.3s ease;
    border-radius: 0px;
    outline: none !important;
    box-shadow: none !important;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-link:focus,
.nav-link:active {
    outline: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 0px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-menu a.active {
    color: #ffffff;
}

/* User Box & Search */
.user-box,
.search-box {
    position: relative;
}

.user-btn,
.search-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 0px;
    transition: all 0.3s ease;
    outline: none !important;
    box-shadow: none !important;
}

.user-btn:hover,
.search-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
    color: #ffffff;
}

.user-btn:focus,
.user-btn:active,
.search-btn:focus,
.search-btn:active {
    outline: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.1);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #ffffff;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.1);
}

/* Mobile Header */
.header-mobile {
    display: none;
}

/* Main Content */
.main-content {
    margin-top: 0;
}

/* Movie Poster Section */
.movie-poster-section {
    background: #111111;
    padding: 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
}

.movie-poster {
    text-align: center;
    width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.poster-image {
    width: 100vw;
    height: auto;
    display: block;
    max-width: none;
    margin: 0;
    padding: 0;
    object-fit: cover;
}

/* Video Player Section */
.video-player-section {
    background: #000000;
    padding: 0;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.video-player {
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100vw;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.play-button {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    color: #000000;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    color: #000000;
}

.play-button svg {
    width: 100%;
    height: 100%;
}

.stroke-solid {
    stroke-width: 2;
}

.stroke {
    stroke-width: 1;
    opacity: 0.5;
}

/* Description Section */
.description-section {
    background: #000000;
    padding: 80px 0;
}

.description-content {
    max-width: 1200px;
    margin: 0 auto;
}

.description-text {
    text-align: center;
    margin-bottom: 60px;
}

.description-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.description-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.description-column p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 0px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #ffffff;
    color: #ffffff;
}

.btn-primary:hover {
    background: #cccccc;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #111111;
    transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
    padding: 0;
    background: #000000;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-header {
    text-align: center;
    padding: 80px 0 60px 0;
    position: relative;
    z-index: 2;
}

.gallery-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.gallery-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    font-weight: 300;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin: 0;
    padding: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.modern-gallery-item {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}

.modern-gallery-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.modern-gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.2);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.modern-gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    color: #ffffff;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.modern-gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.gallery-item-desc {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 20px;
    font-weight: 300;
}

.gallery-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.gallery-btn {
    width: 45px;
    height: 45px;
    border-radius: 0px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.gallery-btn i {
    font-size: 16px;
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.gallery-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.gallery-modal-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.gallery-modal-counter {
    text-align: center;
}

/* Mobile Gallery Modal */
@media (max-width: 768px) {
    .gallery-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .gallery-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .gallery-modal-prev,
    .gallery-modal-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }

    .gallery-modal-info {
        bottom: 10px;
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Cast Section */
.videos-section {
    padding: 0;
    background: #000000;
}

.videos-content {
    width: 100%;
    margin: 0;
    padding: 0;
}

.videos-description {
    text-align: center;
    margin-bottom: 0;
    padding: 40px 20px;
    background: #000000;
}

.videos-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.videos-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100vw;
    margin: 0;
    padding: 0;
}

.video-item {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1/1;
}

.video-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-item:hover .video-thumbnail img {
    transform: scale(1.1);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.play-button i {
    color: #000000;
    font-size: 24px;
    margin-left: 4px;
}


/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: 2% auto;
    width: 90%;
    max-width: 1200px;
    background: #000;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ffffff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff0000;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Custom Video Controls */
.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .custom-controls {
    opacity: 1;
}

.progress-container {
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0px;
    cursor: pointer;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: #ff0000;
    border-radius: 0px;
    width: 0%;
    transition: width 0.1s ease;
}

.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-controls,
.right-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-pause-btn,
.mute-btn,
.fullscreen-btn {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 0px;
    transition: background-color 0.3s ease;
}

.play-pause-btn:hover,
.mute-btn:hover,
.fullscreen-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.time-display {
    color: #ffffff;
    font-size: 14px;
    font-family: monospace;
}

.time-separator {
    margin: 0 5px;
    opacity: 0.7;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.volume-bar {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0px;
    cursor: pointer;
    position: relative;
}

.volume-fill {
    height: 100%;
    background: #ff0000;
    border-radius: 0px;
    width: 100%;
    transition: width 0.1s ease;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../images/services.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transform: scale(1);
    transition: opacity 1s ease-out, transform 0.8s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
    transform: scale(10);
    transition: opacity 1s ease-out, transform 1.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.loading-container {
    text-align: center;
    color: #ffffff;
    max-width: 500px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loading-logo {
    animation: logoFadeIn 2s ease-out;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.loading-screen.fade-out .loading-logo {
    opacity: 0;
    transform: scale(0.8);
    transition-delay: 0.1s;
}

.loading-title {
    font-size: 7rem;
    font-weight: 900;
    margin: 0;
    color: #ffffff;
    letter-spacing: 6px;
    text-transform: uppercase;
    animation: titlePulse 2s ease-in-out infinite;
    white-space: nowrap;
    line-height: 1;
    text-shadow: 0 0 10px #ffffff;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.loading-screen.fade-out .loading-title {
    opacity: 0;
    transform: scale(0.8);
    transition-delay: 0.2s;
}

.loading-subtitle {
    font-size: 1.6rem;
    color: #cccccc;
    margin-top: 20px;
    font-weight: 300;
    letter-spacing: 3px;
    animation: subtitleFadeIn 2.5s ease-out;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.loading-screen.fade-out .loading-subtitle {
    opacity: 0;
    transform: scale(0.8);
    transition-delay: 0.3s;
}

.loading-progress-container {
    margin-top: 80px;
    width: 100%;
    max-width: 500px;
    animation: progressFadeIn 3s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.loading-screen.fade-out .loading-progress-container {
    opacity: 0;
    transform: scale(0.8);
    transition-delay: 0.4s;
}

.loading-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.loading-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    background-size: 200% 100%;
    border-radius: 0px;
    width: 0%;
    position: relative;
    animation: progressShimmer 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transition: width 0.3s ease-out;
}

.loading-progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    animation: progressGlow 1.5s ease-in-out infinite;
}

.loading-percentage {
    font-size: 1.4rem;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    text-align: center;
    margin-top: 20px;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Loading Animations */
@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    50% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}





@keyframes titlePulse {
    0% {
        opacity: 0.9;
        text-shadow: 0 0 8px #ffffff;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 15px #ffffff;
    }

    100% {
        opacity: 0.9;
        text-shadow: 0 0 8px #ffffff;
    }
}

@keyframes progressFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressShimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes progressGlow {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes progressFill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}


/* Responsive Loading Screen */
@media (max-width: 1024px) {
    .loading-title {
        font-size: 6rem;
        letter-spacing: 5px;
    }

    .loading-subtitle {
        font-size: 1.4rem;
        letter-spacing: 2.5px;
    }

    .loading-progress-container {
        max-width: 450px;
        margin-top: 70px;
    }
}

@media (max-width: 768px) {
    .loading-container {
        max-width: 90%;
        padding: 0 20px;
    }

    .loading-title {
        font-size: 4.5rem;
        letter-spacing: 3px;
        text-shadow: 0 0 8px #ffffff;
        line-height: 1.1;
    }

    .loading-subtitle {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
        margin-top: 15px;
    }

    .loading-progress-container {
        max-width: 350px;
        margin-top: 50px;
    }

    .loading-progress-bar {
        height: 5px;
    }

    .loading-percentage {
        font-size: 1.1rem;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .loading-container {
        max-width: 95%;
        padding: 0 15px;
    }

    .loading-title {
        font-size: 3.5rem;
        letter-spacing: 2px;
        text-shadow: 0 0 6px #ffffff;
        line-height: 1;
    }

    .loading-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-top: 12px;
    }

    .loading-progress-container {
        max-width: 300px;
        margin-top: 40px;
    }

    .loading-progress-bar {
        height: 4px;
    }

    .loading-percentage {
        font-size: 0.9rem;
        margin-top: 12px;
    }
}

@media (max-width: 360px) {
    .loading-container {
        max-width: 98%;
        padding: 0 10px;
    }

    .loading-title {
        font-size: 3rem;
        letter-spacing: 1.5px;
        text-shadow: 0 0 5px #ffffff;
    }

    .loading-subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        margin-top: 10px;
    }

    .loading-progress-container {
        max-width: 280px;
        margin-top: 35px;
    }

    .loading-progress-bar {
        height: 3px;
    }

    .loading-percentage {
        font-size: 0.8rem;
        margin-top: 10px;
    }
}

/* New Sidebar Styles */
.new-sidebar {
    position: fixed;
    top: 0;
    left: -240px;
    width: 300px;
    height: 150vh;
    background: #000000;
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.8);
    border-right: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.new-sidebar.active {
    left: 0;
    width: 300px;
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Sidebar Icon Mode */
.new-sidebar.icon-mode {
    left: 0;
    width: 80px;
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.new-sidebar.icon-mode .sidebar-content {
    padding: 0;
    padding-top: 100px;
}

.new-sidebar.icon-mode .sidebar-brand {
    display: none;
}

.new-sidebar.icon-mode .nav-label {
    display: none;
}

.new-sidebar.icon-mode .nav-item {
    padding: 15px 0;
    justify-content: center;
    border-left: 3px solid transparent;
    margin: 0;
}

.new-sidebar.icon-mode .nav-item:hover {
    border-left-color: #ffffff;
    transform: scale(1.05);
}

.new-sidebar.icon-mode .nav-icon {
    margin-right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 0px;
}

.new-sidebar.icon-mode .nav-item:hover .nav-icon {
    background: transparent;
    transform: scale(1.1);
    box-shadow: none;
}

.new-sidebar.icon-mode .sidebar-footer {
    display: none;
}

/* Tooltip for icon mode */
.nav-item {
    position: relative;
}

.nav-item .tooltip {
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 10px 15px;
    border-radius: 0px;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
    margin-left: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.nav-item .tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-right-color: rgba(0, 0, 0, 0.95);
}

.new-sidebar.icon-mode .nav-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Tooltips only show on hover in icon mode */

/* Mouse Follow Zoom Animation for Banner */
.movie-poster {
    position: relative;
    overflow: hidden;
    cursor: none;
}

.poster-image {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center center;
    will-change: transform;
    transform: scale(1);
}

/* Mouse cursor replacement */
.movie-poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    pointer-events: none;
}

/* Custom cursor for poster area - show cursor */
.movie-poster-section {
    cursor: pointer;
}

.movie-poster-section .poster-image {
    cursor: pointer;
}

/* Enhanced zoom effect */
.movie-poster {
    border-radius: 0px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.poster-image {
    border-radius: 0px;
    filter: brightness(0.9) contrast(1.1);
}

/* Smooth zoom transition */
.movie-poster:hover .poster-image {
    filter: brightness(1) contrast(1.2);
}

/* Contact Form Section */
.contact-form-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-form-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0px;
    padding: 15px 20px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    border: none;
    padding: 18px 40px;
    border-radius: 0px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

.contact-submit-btn:active {
    transform: translateY(-1px);
}

.contact-submit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-title {
        font-size: 2.5rem;
    }

    .contact-form-subtitle {
        font-size: 1.1rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form-title {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
        margin: 0 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
    }
}

/* Service Modal Styles */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-modal.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-modal.active .modal-overlay {
    backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.2);
}

.modal-content {
    position: relative;
    background: #000000;
    border: 2px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    margin: auto;
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.service-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.modal-body {
    padding: 40px;
    text-align: center;
}

.service-modal-icon {
    margin-bottom: 30px;
}

.service-modal-icon i {
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 30px;
}

.modal-features {
    text-align: left;
    margin-bottom: 30px;
}

.modal-features h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    color: #cccccc;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 1rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.1rem;
}

.cta-button {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #000000;
    border: none;
    padding: 15px 30px;
    border-radius: 0px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

/* Responsive Service Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }

    .modal-body {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 2rem;
    }

    .service-modal-icon i {
        font-size: 3rem;
    }

    .modal-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modal-body {
        padding: 20px 15px;
    }

    .modal-title {
        font-size: 1.8rem;
    }

    .service-modal-icon i {
        font-size: 2.5rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* About Section Styles */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    font-size: 1rem;
    color: #cccccc;
    margin: 0;
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text h3 {
        font-size: 2.2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 20px;
    }

    .stat-item {
        flex: 1;
        padding: 20px 15px;
    }

    .stat-item h4 {
        font-size: 2.2rem;
    }

    /* Section header responsive */
    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-text h3 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 15px;
    }

    .stat-item {
        flex: 1;
        padding: 15px 10px;
    }

    .stat-item h4 {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .stat-item p {
        font-size: 0.9rem;
    }

    /* Section header responsive */
    .section-header {
        text-align: center;
        margin-bottom: 35px;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .about-content {
        gap: 25px;
        margin-top: 30px;
    }

    .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .about-stats {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
        width: 100%;
    }

    .stat-item h4 {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    /* Section header responsive */
    .section-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

.new-sidebar.icon-mode .sidebar-toggle-btn {
    right: -25px;
    opacity: 1;
    visibility: visible;
}

/* Sidebar Toggle Button */
.sidebar-toggle-btn {
    position: absolute;
    top: 30px;
    right: -25px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 0px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1001;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid #ffffff;
}

.sidebar-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
}

.sidebar-toggle-btn::before {
    content: '▶';
    font-size: 20px;
    color: #ffffff;
    font-weight: bold;
    transition: all 0.1s ease;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.sidebar-toggle-btn.active::before {
    content: '◀';
    transform: scale(1.1);
}

/* Toggle button stays attached to sidebar */
.new-sidebar.active .sidebar-toggle-btn {
    right: -25px;
}

/* Sidebar Content */
.sidebar-content {
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Sidebar Brand */
.sidebar-brand {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-brand h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.sidebar-brand p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

/* Hide subtitle when sidebar is open */
.new-sidebar.active .sidebar-brand p {
    opacity: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}

/* Sidebar Navigation */
.sidebar-navigation {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    color: #ccc;
    text-decoration: none;
    border-radius: 0px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    margin: 0;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-item:hover::before {
    left: 100%;
}

.nav-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #ffffff;
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border-left-color: #ffffff;
}

.nav-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.nav-item:hover .nav-icon {
    background: transparent;
    transform: scale(1.1);
    box-shadow: none;
}

.nav-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.nav-label {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Sidebar Footer */
.sidebar-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-item {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-item:hover {
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.social-item i {
    font-size: 1.1rem;
}

/* Main Content */
.main-content {
    transition: margin-left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-left: 80px;
    /* Icon mode width */
}

.main-content.sidebar-open {
    margin-left: 300px;
}

/* New Sidebar Responsive */
@media (max-width: 768px) {
    .new-sidebar {
        width: 100%;
        left: -100%;
        height: 100vh;
    }

    .new-sidebar.icon-mode {
        width: 100%;
        left: -100%;
        height: 100vh;
    }

    .new-sidebar.active {
        left: 0;
        width: 100%;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    }

    /* Mobile backdrop */
    .new-sidebar.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

    .main-content {
        margin-left: 0;
    }

    .main-content.sidebar-open {
        margin-left: 0;
    }

    .sidebar-toggle-btn {
        top: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #000000 0%, #333333 100%);
        border: 2px solid #ffffff;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        z-index: 1002;
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* Hide tooltips on mobile */
    .nav-item .tooltip {
        display: none;
    }

    .sidebar-toggle-btn:hover {
        background: linear-gradient(135deg, #333333 0%, #000000 100%);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
    }

    /* Mobile: button doesn't move with sidebar */
    .new-sidebar.active .sidebar-toggle-btn {
        right: 20px;
        left: auto;
    }

    .sidebar-content {
        padding: 30px 20px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .sidebar-brand h2 {
        font-size: 1.5rem;
    }

    .nav-item {
        padding: 15px 0;
        border-left: 3px solid transparent;
        margin: 0;
    }

    .nav-item:hover {
        border-left-color: #ffffff;
        transform: translateX(5px) scale(1.02);
    }

    .nav-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
        background: transparent;
        border-radius: 0px;
    }

    .nav-item:hover .nav-icon {
        background: transparent;
        transform: scale(1.1);
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    .sidebar-toggle-btn {
        top: 15px;
        right: -20px;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #000000 0%, #333333 100%);
        border: 2px solid #ffffff;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .sidebar-toggle-btn:hover {
        background: linear-gradient(135deg, #333333 0%, #000000 100%);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
    }

    .sidebar-toggle-btn::before {
        font-size: 18px;
    }

    /* Mobile: button doesn't move with sidebar */
    .new-sidebar.active~.sidebar-toggle-btn,
    .sidebar-toggle-btn.sidebar-open {
        left: 15px;
        /* Stays in place on mobile */
    }

    .sidebar-brand h2 {
        font-size: 1.3rem;
    }

    .nav-item {
        padding: 12px 15px;
    }

    .nav-label {
        font-size: 0.9rem;
    }
}

/* Lazy Loading and Fade In Animations */
.lazy-img {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.lazy-img.loaded {
    opacity: 1;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Section animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Credits Section */
.credits-section {
    background: #000000;
    padding: 40px 0;
}

.credits-content {
    text-align: center;
}

.credits-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
}

/* Cinema Section */
.cinema-section {
    background: #000000;
    padding: 80px 0;
}

.cinema-listing {
    max-width: 1200px;
    margin: 0 auto;
}

.cinema-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cinema-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0px;
    transition: background 0.3s ease;
}

.cinema-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cinema-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    min-width: 150px;
}

.cinema-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
    margin: 0 20px;
}

.cinema-address {
    color: #888888;
    min-width: 100px;
}

.cinema-button {
    min-width: 120px;
}

/* Service Boxes Section */
/* Services Section */
.services-section {
    padding: 120px 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.8) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.7) 0%, transparent 60%), radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.6) 0%, transparent 40%), linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/service4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.about-section {
    padding: 120px 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.8) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.7) 0%, transparent 60%), radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.6) 0%, transparent 40%), linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/services.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    letter-spacing: -0.02em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    border-radius: 0px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    padding: 40px 30px;
    border-radius: 0px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}


.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0px;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 0px;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.service-description {
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #aaaaaa;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #4ecdc4;
    font-weight: bold;
    font-size: 16px;
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.service-modal-content {
    position: relative;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(20px);
    margin: 8% auto;
    padding: 0;
    border-radius: 0px;
    width: 70%;
    max-width: 600px;
    max-height: 75vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modal Scrollbar Styles */
.service-modal-content::-webkit-scrollbar {
    width: 6px;
}

.service-modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0px;
}

.service-modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 100%);
    border-radius: 0px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 100%);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.service-modal-header {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 40px 30px;
    border-radius: 0px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.service-modal-icon {
    font-size: 60px;
    margin-bottom: 15px;
    display: block;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.service-modal-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.service-modal-body {
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
}

.service-modal-description {
    color: #cccccc;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.service-modal-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-modal-features li {
    color: #aaaaaa;
    padding: 12px 0;
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.service-modal-features li:hover {
    color: #ffffff;
}

.service-modal-features li:last-child {
    border-bottom: none;
}

.service-modal-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .service-modal-content {
        width: 85%;
        margin: 12% auto;
        max-width: 450px;
    }

    .service-modal-header {
        padding: 20px;
    }

    .service-modal-body {
        padding: 30px 20px;
    }

    .service-modal-title {
        font-size: 24px;
    }

    .service-modal-icon {
        font-size: 48px;
    }
}

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

.service-subtitle {
    font-size: 1rem;
    color: #888888;
    margin-bottom: 10px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-item p {
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: #000000;
    overflow: hidden;
}

.partners-slider {
    overflow: hidden;
    width: 100%;
}

.partners-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.partners-slider .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 200px;
    padding: 0 30px;
    transform: scale(1);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.2);
    z-index: 10;
    position: relative;
}

.partner-logo img {
    max-height: 100px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Footer */
.footer {
    position: relative;
    background: #000000;
    color: #ffffff;
    padding: 80px 0 20px;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo img {
    height: 30px;
    width: auto;
    margin-bottom: 20px;
}

.footer-description {
    color: #888888;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #888888;
}

.contact-info i {
    color: #ffffff;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333333;
    color: #888888;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .movie-poster-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .movie-poster {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .poster-image {
        width: 100vw;
    }

    .video-player-section,
    .gallery-section {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .gallery-grid {
        width: 100%;
    }

    .video-player {
        height: 50vh;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        width: 100vw;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    .videos-title {
        font-size: 2.2rem;
    }

    .modal-content {
        width: 90%;
        margin: 3% auto;
    }

    .video-container {
        padding-bottom: 56.25%;
    }

    .custom-controls {
        padding: 18px;
    }

    .play-pause-btn,
    .mute-btn,
    .fullscreen-btn {
        font-size: 17px;
        padding: 7px;
    }

    .time-display {
        font-size: 13px;
    }

    .volume-bar {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .movie-poster-section {
        width: 100vw;
        height: auto;
        min-height: 0;
        margin: 0;
        padding: 0;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .movie-poster {
        width: 100vw;
        height: auto;
        margin: 0;
        padding: 0;
        margin-left: -50vw;
        margin-right: -50vw;
        display: block;
    }

    .poster-image {
        width: 100vw;
        height: auto;
        display: block;
        margin: 0;
        padding: 0;
        object-fit: cover;
        object-position: center;
    }

    .video-player {
        height: 40vh;
        width: 100%;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 90vh;
    }

    .video-container {
        padding-bottom: 56.25%;
    }

    .custom-controls {
        padding: 15px;
    }

    .play-pause-btn,
    .mute-btn,
    .fullscreen-btn {
        font-size: 16px;
        padding: 6px;
    }

    .time-display {
        font-size: 12px;
    }

    .volume-bar {
        width: 40px;
    }

    .progress-bar {
        height: 3px;
    }

    .close-modal {
        font-size: 30px;
        top: 10px;
        right: 15px;
    }

    .video-player-section {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .gallery-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        width: 100vw;
        height: auto;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .gallery-title {
        font-size: 2.5rem;
    }

    .video-player {
        height: 50vh;
        width: 100%;
    }

    .description-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        width: 100vw;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    .videos-title {
        font-size: 2.2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 0;
        width: 100%;
        height: auto;
    }

    .cinema-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cinema-date,
    .cinema-name,
    .cinema-address {
        min-width: auto;
        margin: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .service-card {
        padding: 30px 20px;
        min-height: 220px;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .video-player {
        height: 30vh;
        width: 100%;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .modal-content {
        width: 98%;
        margin: 1% auto;
        max-height: 95vh;
    }

    .video-container {
        padding-bottom: 56.25%;
    }

    .custom-controls {
        padding: 12px;
    }

    .play-pause-btn,
    .mute-btn,
    .fullscreen-btn {
        font-size: 14px;
        padding: 5px;
    }

    .time-display {
        font-size: 11px;
    }

    .volume-bar {
        width: 35px;
    }

    .progress-bar {
        height: 2px;
    }

    .close-modal {
        font-size: 25px;
        top: 8px;
        right: 12px;
    }

    .controls-row {
        gap: 10px;
    }

    .left-controls,
    .right-controls {
        gap: 10px;
    }

    .partners-section {
        padding: 80px 0;
    }

    .services-section {
        background-attachment: scroll;
    }

    .partner-logo {
        height: 120px;
        min-width: 180px;
        padding: 0 25px;
    }

    .partner-logo:hover {
        transform: scale(1.15);
    }

    .partner-logo img {
        max-height: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .movie-poster-section {
        width: 100vw;
        height: auto;
        min-height: 0;
        margin: 0;
        padding: 0;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
    }

    .movie-poster {
        width: 100vw;
        height: auto;
        margin: 0;
        padding: 0;
        margin-left: -50vw;
        margin-right: -50vw;
        display: block;
    }

    .poster-image {
        width: 100vw;
        height: auto;
        display: block;
        margin: 0;
        padding: 0;
        object-fit: cover;
        object-position: center;
    }

    .video-player-section {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .gallery-section {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .video-player {
        height: 40vh;
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        width: 100vw;
        height: auto;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .gallery-item {
        width: 100%;
        height: 100%;
        aspect-ratio: 1/1;
    }

    .description-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .description-column p {
        font-size: 1rem;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        width: 100vw;
        gap: 0;
        margin: 0;
        padding: 0;
    }

    .videos-title {
        font-size: 2rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.9);
    }

    .play-button:hover {
        background: #ffffff;
    }

    .play-button i {
        font-size: 18px;
        color: #000000;
    }


    .modal-content {
        width: 95%;
        margin: 5% auto;
    }

    .video-container {
        padding-bottom: 56.25%;
    }

    .custom-controls {
        padding: 15px;
    }

    .play-pause-btn,
    .mute-btn,
    .fullscreen-btn {
        font-size: 16px;
        padding: 6px;
    }

    .time-display {
        font-size: 12px;
    }

    .volume-bar {
        width: 40px;
    }

    .progress-bar {
        height: 3px;
    }

    .cinema-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 25px 15px;
        min-height: 200px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .partners-section {
        padding: 60px 0;
    }

    .partner-logo {
        height: 100px;
        min-width: 150px;
        padding: 0 20px;
    }

    .partner-logo:hover {
        transform: scale(1.1);
    }

    .partner-logo img {
        max-height: 60px;
    }

    .service-item {
        padding: 20px 15px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* References Section */
.references-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.references-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.references-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.references-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.references-section .section-subtitle {
    font-size: 1.1rem;
    color: #b8c5d1;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.references-section .reference-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    min-height: 120px;
}

.references-section .reference-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.references-section .reference-logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.references-section .reference-item:hover .reference-logo {
    transform: scale(1.05);
}

/* Responsive Design for References */
@media (max-width: 768px) {
    .references-section {
        padding: 60px 0;
    }

    .references-section .section-title {
        font-size: 2rem;
    }

    .references-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .references-section .reference-item {
        padding: 1.5rem;
        min-height: 100px;
    }

    .references-section .reference-logo {
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .references-section .reference-item {
        padding: 1rem;
        min-height: 80px;
    }

    .references-section .reference-logo {
        max-height: 40px;
    }
}


/* Video Preview Container */
.video-preview-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 5;
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

/* Video Controls Styling */
.video-preview::-webkit-media-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px 0 10px 0;
}

.video-preview::-webkit-media-controls-panel {
    background: transparent;
}

.video-preview::-webkit-media-controls-play-button,
.video-preview::-webkit-media-controls-timeline,
.video-preview::-webkit-media-controls-current-time-display,
.video-preview::-webkit-media-controls-time-remaining-display,
.video-preview::-webkit-media-controls-mute-button,
.video-preview::-webkit-media-controls-volume-slider,
.video-preview::-webkit-media-controls-fullscreen-button {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    margin: 0 2px;
}

/* Ensure controls are visible */
.video-preview:focus {
    outline: none;
}

.video-preview:hover::-webkit-media-controls {
    opacity: 1;
}

/* Video Player Section - Full Width Design */
.video-player-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    margin-left: calc(-50vw + 50%);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-player {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}

.play-button {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999 !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    margin: 0 !important;
    padding: 0 !important;
}

.play-button:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: translate(-50%, -50%) scale(1.1) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    text-decoration: none !important;
}

.play-button svg {
    width: 32px;
    height: 32px;
    color: #333;
    margin-left: 4px;
}

/* Section Width Standardization */
.video-player-section,
.description-section,
.gallery-section,
.videos-section,
.services-section,
.references-section {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
}

/* Prevent horizontal overflow */
body {
    overflow-x: hidden;
    width: 100%;
}

* {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}


/* Responsive */
@media (max-width: 768px) {
    .video-player {
        height: 60vh;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 24px;
        height: 24px;
    }

    .container {
        padding: 0 15px;
    }

}

@media (max-width: 480px) {
    .video-player {
        height: 50vh;
    }

    .play-button {
        width: 50px;
        height: 50px;
    }

    .play-button svg {
        width: 20px;
        height: 20px;
    }

    .container {
        padding: 0 10px;
    }


    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    * {
        box-sizing: border-box;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.1) 25%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 75%,
            rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
    transition: all 0.4s ease;
}

.video-player:hover .video-overlay {
    background: linear-gradient(45deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 25%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0.2) 75%,
            rgba(0, 0, 0, 0.4) 100%);
}

.play-button {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.play-button:hover {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.play-button svg {
    width: 40px;
    height: 40px;
    fill: rgba(255, 255, 255, 0.9);
    margin-left: 4px;
    transition: all 0.3s ease;
}

.play-button:hover svg {
    fill: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Custom Video Modal */
.custom-video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.98) 100%);
    backdrop-filter: blur(15px);
    animation: modalFadeIn 0.4s ease-out;
}

.custom-video-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80%;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: modalSlideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.custom-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.custom-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.custom-modal-close:hover {
    background: rgba(255, 107, 107, 0.9);
    border-color: #ff6b6b;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.custom-fullscreen-btn {
    position: absolute;
    top: 20px;
    right: 80px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.custom-fullscreen-btn:hover {
    background: rgba(74, 144, 226, 0.9);
    border-color: #4a90e2;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

.custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-video-container:hover .custom-video-controls {
    opacity: 1;
}

.custom-control-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.custom-control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .video-player-section {
        height: 80vh;
    }

    .play-button {
        width: 100px;
        height: 100px;
    }

    .play-button svg {
        width: 35px;
        height: 35px;
    }

    .custom-modal-content {
        width: 95%;
        height: 75%;
    }
}

@media (max-width: 768px) {
    .video-player-section {
        height: 70vh;
    }

    .play-button {
        width: 80px;
        height: 80px;
    }

    .play-button svg {
        width: 30px;
        height: 30px;
    }

    .custom-modal-content {
        width: 98%;
        height: 70%;
        border-radius: 15px;
    }

    .custom-modal-close,
    .custom-fullscreen-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .custom-modal-close {
        top: 15px;
        right: 15px;
    }

    .custom-fullscreen-btn {
        top: 15px;
        right: 70px;
    }
}

/* No Gallery Images */
.no-gallery-images {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.no-gallery-images p {
    margin: 0;
    opacity: 0.8;
}

.no-videos {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
}

.no-videos p {
    margin: 0;
    opacity: 0.8;
}

/* Video Gallery Styles */
.lazy-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail video {
    transform: scale(1.05);
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active,
.video-modal[style*="flex"] {
    display: flex !important;
}

.video-modal .modal-content {
    position: relative;
    width: 95%;
    max-width: 1400px;
    height: 90%;
    max-height: 900px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#videoModal .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10001;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#videoModal .close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Custom Video Controls */
.custom-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    z-index: 10001;
}

.progress-container {
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s ease;
}

.controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left-controls,
.right-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-pause-btn,
.mute-btn,
.fullscreen-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.play-pause-btn:hover,
.mute-btn:hover,
.fullscreen-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.time-display {
    color: white;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.volume-bar {
    width: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
}

.volume-fill {
    height: 100%;
    background: #fff;
    border-radius: 2px;
    width: 100%;
    transition: width 0.1s ease;
}

/* Responsive Video Modal */
@media (max-width: 1024px) {
    .video-modal .modal-content {
        width: 98%;
        height: 90%;
        max-height: 700px;
    }

    #videoModal .close-modal {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .video-modal .modal-content {
        width: 100%;
        height: 95%;
        max-height: 600px;
        border-radius: 15px;
    }

    #videoModal .close-modal {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .custom-controls {
        padding: 15px;
    }

    .controls-row {
        gap: 10px;
    }

    .left-controls,
    .right-controls {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .video-modal .modal-content {
        width: 100%;
        height: 100%;
        max-height: none;
        border-radius: 0;
    }

    #videoModal .close-modal {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .custom-controls {
        padding: 10px;
    }

    .time-display {
        font-size: 12px;
    }

    .volume-bar {
        width: 60px;
    }
}

/* About Section Padding */
#about {
    padding: 100px 20px !important;
}

@media (max-width: 768px) {
    #about {
        padding: 80px 15px !important;
    }
}

@media (max-width: 480px) {
    #about {
        padding: 60px 10px !important;
    }
}

/* New Video Modal Styles */
.new-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.new-video-modal.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.new-video-modal[style*="flex"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.new-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
}

.new-modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 80%;
    max-height: 800px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}

.new-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #2a2a2a;
    border-bottom: 1px solid #333;
}

.new-modal-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.new-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.new-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.new-modal-body {
    flex: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-modal-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* Responsive New Video Modal */
@media (max-width: 1024px) {
    .new-modal-container {
        width: 95%;
        height: 85%;
        max-height: 700px;
    }

    .new-modal-header {
        padding: 15px 20px;
    }

    .new-modal-title {
        font-size: 1.3rem;
    }

    .new-modal-close {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .new-modal-container {
        width: 98%;
        height: 90%;
        max-height: 600px;
        border-radius: 15px;
    }

    .new-modal-header {
        padding: 12px 15px;
    }

    .new-modal-title {
        font-size: 1.2rem;
    }

    .new-modal-close {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .new-modal-container {
        width: 100%;
        height: 100%;
        max-height: none;
        border-radius: 0;
    }

    .new-modal-header {
        padding: 10px 15px;
    }

    .new-modal-title {
        font-size: 1.1rem;
    }

    .new-modal-close {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}


/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-modal-close:hover {
    background: rgba(255, 0, 0, 0.8);
    transform: scale(1.1);
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-info {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-modal-content {
        max-width: 95%;
        max-height: 95%;
    }

    .gallery-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .gallery-modal-prev,
    .gallery-modal-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .gallery-modal-prev {
        left: 10px;
    }

    .gallery-modal-next {
        right: 10px;
    }

    .gallery-modal-info {
        bottom: 10px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .video-player-section {
        height: 60vh;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .play-button svg {
        width: 25px;
        height: 25px;
    }

    .custom-modal-content {
        width: 100%;
        height: 60%;
        border-radius: 10px;
    }

    .custom-modal-close,
    .custom-fullscreen-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .custom-modal-close {
        top: 10px;
        right: 10px;
    }

    .custom-fullscreen-btn {
        top: 10px;
        right: 60px;
    }
}

/* Service Modal Styles */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-modal.active {
    display: flex;
    opacity: 1;
}

.service-modal-content {
    background: #000000;
    border-radius: 0;
    padding: 15px;
    max-width: 450px;
    width: 100%;
    max-height: 65vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 0 1px #ffffff, 0 4px 20px rgba(0, 0, 0, 0.8);
    border: 1px solid #ffffff;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.service-modal-header {
    text-align: center;
    margin-bottom: 10px;
    position: relative;
}

.service-modal-close {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 0;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10001;
}

.service-modal-close:hover {
    background: #000000;
    color: #ffffff;
    transform: scale(1.05);
}

.service-modal-icon {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
}

.service-modal-icon i {
    font-size: 40px;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.service-modal-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.5px;
}

.service-modal-body {
    color: #ffffff;
}

.service-modal-description {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 10px;
    text-align: left;
}

.service-modal-description p {
    margin: 3px 0;
}

.service-modal-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-modal-features li {
    padding: 3px 0;
    font-size: 12px;
    position: relative;
    padding-left: 12px;
    color: #ffffff;
    transition: all 0.2s ease;
}

.service-modal-features li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
    font-size: 10px;
}

.service-modal-features li:hover {
    color: #ffffff;
    padding-left: 15px;
    background: rgba(255, 255, 255, 0.05);
}

/* Responsive Design for Service Modal */
@media (max-width: 768px) {
    .service-modal-content {
        padding: 12px;
        margin: 10px;
        max-height: 85vh;
        max-width: 95%;
    }

    .service-modal-title {
        font-size: 18px;
    }

    .service-modal-icon i {
        font-size: 35px;
    }

    .service-modal-close {
        top: -6px;
        right: -6px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .service-modal-description {
        font-size: 12px;
        text-align: left;
    }

    .service-modal-features li {
        font-size: 11px;
        padding: 2px 0;
    }
}

/* Loading Spinner Styles */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #ff6b6b;
    font-size: 16px;
    gap: 10px;
}

.loading-spinner i {
    font-size: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* No Services Message */
.no-services {
    text-align: center;
    padding: 40px 20px;
    color: #ccc;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}

.no-services p {
    margin: 0;
    font-size: 16px;
}

.contact-item span,
.contact-item a {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 0;
    font-weight: 400;
    text-decoration: none;
    text-underline: none;
}