*{
    margin:0;padding:0;
    box-sizing:border-box;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#fff;
    color:#000;
    overflow-x:hidden;
}

/* ================= HEADER ================= */

header{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
align-items:center;
padding:20px 60px;
background:rgba(0,0,0,0.85);
backdrop-filter:blur(10px);
z-index:1000;
transition:0.3s;
}

header.scrolled{
padding:15px 60px;
background:rgba(0,0,0,0.95);
}

.logo{
font-size:22px;
font-weight:700;
color:#FFD700;
}

nav{
display:flex;
gap:30px;
}

nav a{
color:#fff;
text-decoration:none;
font-weight:500;
transition:0.3s;
position:relative;
}

nav a::after{
content:'';
position:absolute;
bottom:-5px;
left:0;
width:0;
height:2px;
background:#FFD700;
transition:0.3s;
}

nav a:hover::after{
width:100%;
}

nav a:hover{
color:#FFD700;
}

/* Hamburger */

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
}

.hamburger span{
height:3px;
width:25px;
background:#fff;
margin:4px 0;
transition:0.4s;
}

.hamburger.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
opacity:0;
}

.hamburger.active span:nth-child(3){
transform:rotate(-45deg) translate(7px,-6px);
}

/* Mobile Menu */

@media(max-width:900px){
nav{
position:absolute;
top:80px;
right:-100%;
flex-direction:column;
background:#111;
width:250px;
padding:30px;
transition:0.4s;
border-top:3px solid #FFD700;
}

nav.active{
right:0;
}

.hamburger{
display:flex;
}
}

/* ================= HERO ================= */

.hero{
height:100vh;
position:relative;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
overflow:hidden;
}

.hero-video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
z-index:-1;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
z-index:0;
}

.hero-content{
position:relative;
z-index:1;
max-width:900px;
padding:20px;
animation:fadeInUp 1s ease;
}

.hero h1{
font-size:55px;
color:#FFD700;
text-shadow:2px 2px 10px rgba(0,0,0,0.5);
margin-bottom:20px;
}

.hero p{
margin-top:20px;
font-size:22px;
opacity:0.9;
}

.hero-buttons{
margin-top:30px;
display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;
}

.btn{
padding:15px 35px;
border-radius:50px;
font-weight:600;
text-decoration:none;
transition:0.3s;
cursor:pointer;
display:inline-block;
}

.btn-primary{
background:#FFD700;
color:#000;
}

.btn-primary:hover{
background:#fff;
transform:translateY(-3px);
box-shadow:0 10px 30px rgba(255,215,0,0.3);
}

.btn-secondary{
border:2px solid #FFD700;
color:#FFD700;
}

.btn-secondary:hover{
background:#FFD700;
color:#000;
transform:translateY(-3px);
}

@keyframes fadeInUp{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* ================= SECTIONS ================= */

section{
padding:100px 60px;
}

.section-title{
font-size:40px;
margin-bottom:40px;
color:#FFD700;
text-align:center;
position:relative;
}

.section-title::after{
content:'';
position:absolute;
bottom:-15px;
left:50%;
transform:translateX(-50%);
width:80px;
height:3px;
background:#FFD700;
}

/* ================= ABOUT ================= */

.about{
display:flex;
gap:50px;
flex-wrap:wrap;
align-items:center;
}

.about img{
width:300px;
border-radius:10px;
box-shadow:0 20px 40px rgba(0,0,0,0.3);
}

.about-text{
flex:1;
}

.about-text p{
margin-bottom:20px;
line-height:1.8;
color:#ddd;
}

/* ================= SERVICES ================= */

.services-section{
background:#0a0a0a;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.service-card{
background:linear-gradient(145deg, #111, #1a1a1a);
padding:40px 30px;
border-radius:15px;
text-align:center;
transition:0.4s;
border:1px solid #222;
}

.service-card:hover{
transform:translateY(-10px);
border-color:#FFD700;
box-shadow:0 20px 40px rgba(255,215,0,0.1);
}

.service-icon{
font-size:50px;
color:#FFD700;
margin-bottom:20px;
}

.service-card h3{
font-size:22px;
margin-bottom:15px;
}

.service-card p{
color:#aaa;
line-height:1.7;
}

/* ================= PORTFOLIO ================= */

.portfolio{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:40px;
}

.movie-card{
background:#111;
border-radius:15px;
overflow:hidden;
transition:0.4s;
position:relative;
}

.movie-card:hover{
transform:translateY(-15px);
box-shadow:0 0 40px rgba(255,215,0,0.2);
}

.movie-card img{
width:100%;
height:250px;
object-fit:cover;
transition:0.4s;
}

.movie-card:hover img{
transform:scale(1.05);
}

.movie-info{
padding:20px;
}

.movie-info h3{
font-size:20px;
margin-bottom:10px;
color:#FFD700;
}

.movie-meta{
display:flex;
gap:15px;
margin-bottom:12px;
font-size:13px;
color:#888;
}

.movie-meta span{
display:flex;
align-items:center;
gap:5px;
}

.movie-desc{
color:#aaa;
font-size:14px;
line-height:1.6;
}

/* ================= GALLERY ================= */

.gallery-section{
background:#0a0a0a;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.gallery-item{
position:relative;
overflow:hidden;
border-radius:10px;
cursor:pointer;
}

.gallery-item img{
width:100%;
height:200px;
object-fit:cover;
transition:0.4s;
}

.gallery-item:hover img{
transform:scale(1.1);
}

.gallery-overlay{
position:absolute;
inset:0;
background:rgba(255,215,0,0.8);
display:flex;
align-items:center;
justify-content:center;
opacity:0;
transition:0.4s;
}

.gallery-item:hover .gallery-overlay{
opacity:1;
}

.gallery-overlay i{
font-size:30px;
color:#000;
}

/* ================= TESTIMONIALS ================= */

.testimonials{
background:#0a0a0a;
}

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;
}

.testimonial-card{
background:linear-gradient(145deg, #111, #1a1a1a);
padding:30px;
border-radius:15px;
position:relative;
}

.testimonial-card::before{
content:'"';
font-size:80px;
color:#FFD700;
opacity:0.2;
position:absolute;
top:10px;
left:20px;
font-family:serif;
}

.testimonial-text{
color:#aaa;
font-style:italic;
margin-bottom:20px;
line-height:1.7;
}

.testimonial-author{
display:flex;
align-items:center;
gap:15px;
}

.testimonial-author img{
width:50px;
height:50px;
border-radius:50%;
object-fit:cover;
}

.testimonial-author h4{
color:#FFD700;
font-size:16px;
}

/* ================= CONTACT ================= */

.contact{
background:#0a0a0a;
}

.contact-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(400px,1fr));
gap:50px;
}

.contact-info h3{
font-size:28px;
color:#FFD700;
margin-bottom:20px;
}

.contact-info p{
color:#aaa;
margin-bottom:30px;
line-height:1.8;
}

.contact-item{
display:flex;
align-items:center;
gap:15px;
margin-bottom:20px;
}

.contact-item i{
width:45px;
height:45px;
background:#222;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#FFD700;
}

.social-links{
display:flex;
gap:15px;
margin-top:30px;
}

.social-links a{
width:50px;
height:50px;
background:#222;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
text-decoration:none;
transition:0.3s;
font-size:20px;
}

.social-links a:hover{
background:#FFD700;
color:#000;
transform:translateY(-5px);
}

.contact-form{
background:linear-gradient(145deg, #111, #1a1a1a);
padding:40px;
border-radius:15px;
}

.contact-form h3{
font-size:28px;
color:#FFD700;
margin-bottom:25px;
}

.form-group{
margin-bottom:20px;
}

.form-group input,
.form-group textarea{
width:100%;
padding:15px;
background:#0a0a0a;
border:1px solid #222;
border-radius:8px;
color:#fff;
font-size:16px;
transition:0.3s;
}

.form-group input:focus,
.form-group textarea:focus{
outline:none;
border-color:#FFD700;
}

.form-group textarea{
height:120px;
resize:none;
}

.btn-submit{
width:100%;
padding:15px;
background:#FFD700;
color:#000;
border:none;
border-radius:8px;
font-size:18px;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.btn-submit:hover{
background:#fff;
}

/* ================= FOOTER ================= */

footer{
background:#050505;
padding:40px 60px;
text-align:center;
border-top:1px solid #111;
}

.footer-content{
max-width:1200px;
margin:0 auto;
}

.footer-logo{
font-size:24px;
font-weight:700;
color:#FFD700;
margin-bottom:20px;
}

.footer-links{
display:flex;
justify-content:center;
gap:30px;
margin-bottom:20px;
}

.footer-links a{
color:#aaa;
text-decoration:none;
transition:0.3s;
}

.footer-links a:hover{
color:#FFD700;
}

.footer-social{
display:flex;
justify-content:center;
gap:15px;
margin-bottom:20px;
}

.footer-social a{
width:40px;
height:40px;
background:#111;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
transition:0.3s;
}

.footer-social a:hover{
background:#FFD700;
color:#000;
}

.copyright{
color:#666;
font-size:14px;
}

/* ================= SCROLL ANIMATIONS ================= */

.reveal{
opacity:0;
transform:translateY(50px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
section{
padding:60px 20px;
}

.hero h1{
font-size:32px;
}

.hero p{
font-size:16px;
}

.section-title{
font-size:28px;
}

.contact-container{
grid-template-columns:1fr;
}

.about{
flex-direction:column;
}

.about img{
width:100%;
max-width:350px;
}
}


body{
  font-family:Arial, sans-serif;
  background:#000;
  color:#fff;
  line-height:1.7;
}

/* HERO */
.hero{
  height:100vh;
  position:relative;
}
.hero video{
  width:100%;
  height:100%;
  object-fit:cover;
}
.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.65);
}
.hero-content{
  position:absolute;
  top:50%;
  left:10%;
  transform:translateY(-50%);
}
.hero h1{font-size:48px;}
.hero p{font-size:18px;margin-top:15px;}

/* SECTIONS */
.section{
  padding:80px 10%;
}
.section h2{
  color:#f5c77a;
  margin-bottom:15px;
}
.section h4{margin-bottom:20px;color:#ccc;}
.section p{margin-bottom:15px;color:#ddd;}

.dark{
  background:#111;
}

/* SPLIT */
.split{
  display:flex;
  gap:40px;
  align-items:center;
}
.split img{
  width:100%;
  max-width:350px;
  border-radius:10px;
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}
.card{
  background:#000;
  padding:30px;
  border-left:4px solid #f5c77a;
}

/* PORTFOLIO */
.portfolio{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}
.movie img{
  width:100%;
  border-radius:8px;
}
.movie h4{margin-top:10px;}
.movie span{color:#aaa;}

/* FOOTER */
footer{
  text-align:center;
  padding:50px 10%;
  background:#000;
}
footer a{color:#f5c77a;text-decoration:none;}

/* RESPONSIVE */
@media(max-width:768px){
  .hero h1{font-size:34px;}
  .split{flex-direction:column;}
}