*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

:root{
--primary:#ff4d6d;
--secondary:#7c3aed;
--gold:#fbbf24;
--dark:#060816;
--card:rgba(255,255,255,0.08);
--text:#f8fafc;
--muted:#cbd5e1;
}

html{
scroll-behavior:smooth;
}

body{
background:
radial-gradient(circle at top left,#1e1b4b 0%,#0f172a 35%,#020617 100%);
color:white;
overflow-x:hidden;
min-height:100vh;
position:relative;
}

/* =========================
ANIMATED BACKGROUND
========================= */

body::before{
content:'';
position:fixed;
inset:0;
background:
radial-gradient(circle at 20% 20%, rgba(255,77,109,.18), transparent 30%),
radial-gradient(circle at 80% 30%, rgba(124,58,237,.16), transparent 30%),
radial-gradient(circle at 50% 80%, rgba(251,191,36,.12), transparent 30%);
animation:moveBg 12s linear infinite;
z-index:-1;
}

@keyframes moveBg{
0%{transform:translateY(0px);}
50%{transform:translateY(-30px);}
100%{transform:translateY(0px);}
}

/* =========================
HEADER
========================= */

.site-header{
position:fixed;
top:0;
left:0;
width:100%;
height:90px;
backdrop-filter:blur(18px);
background:rgba(2,6,23,0.78);
border-bottom:1px solid rgba(255,255,255,0.08);
z-index:9999;
}

.header-inner{
width:92%;
max-width:1450px;
margin:auto;
height:100%;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
}

/* =========================
BRAND
========================= */

.brand{
display:flex;
align-items:center;
gap:14px;
text-decoration:none;
}

.brand img{
width:72px;
height:72px;
border-radius:18px;
background:white;
padding:6px;
object-fit:cover;
box-shadow:0 10px 35px rgba(255,77,109,.3);
flex-shrink:0;
}

.brand-text h1{
font-size:26px;
font-weight:700;
line-height:1.1;
color:white;
}

.brand-text span{
font-size:13px;
color:var(--muted);
display:block;
margin-top:2px;
}

/* =========================
NAVIGATION
========================= */

.nav{
display:flex;
align-items:center;
gap:10px;
}

.nav a,
.dropbtn{
text-decoration:none;
color:white;
background:none;
border:none;
padding:12px 18px;
border-radius:14px;
font-size:15px;
font-weight:500;
cursor:pointer;
transition:.3s;
display:flex;
align-items:center;
gap:8px;
white-space:nowrap;
}

.nav a:hover,
.dropbtn:hover{
background:rgba(255,255,255,0.08);
color:var(--gold);
}

/* =========================
DROPDOWN
========================= */

.dropdown{
position:relative;
}

.dropdown-content{
position:absolute;
top:58px;
left:0;
min-width:260px;
display:none;
flex-direction:column;
background:#111827;
border-radius:22px;
overflow:hidden;
border:1px solid rgba(255,255,255,.08);
box-shadow:0 25px 50px rgba(0,0,0,.45);
padding:8px 0;
z-index:999;
}

.dropdown-content a{
padding:14px 20px;
width:100%;
border-radius:0;
}

.dropdown-content a:hover{
background:rgba(255,255,255,.06);
padding-left:28px;
}

.dropdown:hover .dropdown-content{
display:flex;
}

/* =========================
MOBILE MENU BUTTON
========================= */

.menu-toggle{
display:none;
width:52px;
height:52px;
background:rgba(255,255,255,.08);
border:none;
border-radius:14px;
font-size:28px;
color:white;
cursor:pointer;
transition:.3s;
align-items:center;
justify-content:center;
}

.menu-toggle:hover{
background:rgba(255,255,255,.14);
}

/* =========================
HERO
========================= */

.hero{
min-height:100vh;
padding:150px 5% 100px;
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
position:relative;
}

.hero-content{
flex:1;
max-width:650px;
z-index:2;
}

.hero-badge{
display:inline-block;
padding:10px 18px;
border-radius:50px;
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.1);
margin-bottom:25px;
font-size:14px;
color:#fbbf24;
backdrop-filter:blur(12px);
}

.hero-content h2{
font-size:78px;
line-height:1.05;
margin-bottom:24px;
font-weight:800;
}

.hero-content h2 span{
background:linear-gradient(to right,#ff4d6d,#fbbf24);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero-content p{
font-size:18px;
line-height:1.9;
color:#dbe4f0;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:18px;
flex-wrap:wrap;
}

.btn{
padding:16px 32px;
border-radius:16px;
text-decoration:none;
font-weight:600;
transition:.35s;
display:inline-flex;
align-items:center;
gap:10px;
}

.btn-primary{
background:linear-gradient(to right,#ff4d6d,#7c3aed);
color:white;
box-shadow:0 15px 40px rgba(255,77,109,.35);
}

.btn-secondary{
border:1px solid rgba(255,255,255,.14);
background:rgba(255,255,255,.05);
color:white;
backdrop-filter:blur(10px);
}

.btn:hover{
transform:translateY(-5px);
}

/* =========================
MOVING PHOTO GALLERY
========================= */

.hero-gallery{
flex:1;
position:relative;
height:620px;
overflow:hidden;
display:flex;
justify-content:center;
align-items:center;
}

.photo-track{
position:absolute;
display:flex;
flex-direction:column;
gap:18px;
will-change:transform;
animation:scrollPhotos 18s linear infinite;
}

.photo-track img{
width:240px;
height:170px;
object-fit:cover;
border-radius:24px;
border:2px solid rgba(255,255,255,.1);
box-shadow:0 15px 40px rgba(0,0,0,.35);
transition:.4s;
display:block;
}

.photo-track img:hover{
transform:scale(1.05);
}

.track-left{
left:0;
top:0;
}

.track-right{
right:0;
top:-50%;
animation-direction:reverse;
}

.track-center{
left:50%;
top:-25%;
transform:translateX(-50%);
animation-duration:22s;
}

@keyframes scrollPhotos{

0%{
transform:translateY(0);
}

100%{
transform:translateY(-50%);
}

}

/* =========================
FLOATING LOGO
========================= */

.floating-logo{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:180px;
height:180px;
border-radius:50%;
background:rgba(255,255,255,.08);
backdrop-filter:blur(18px);
border:2px solid rgba(255,255,255,.15);
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 20px 60px rgba(0,0,0,.45);
z-index:10;
}

.floating-logo img{
width:130px;
height:130px;
object-fit:contain;
}

/* =========================
SECTION
========================= */

.section{
width:92%;
max-width:1450px;
margin:auto;
padding:90px 0;
}

.section-title{
text-align:center;
margin-bottom:55px;
}

.section-title h2{
font-size:48px;
margin-bottom:15px;
}

.section-title p{
max-width:760px;
margin:auto;
color:#cbd5e1;
line-height:1.9;
}

/* =========================
SERVICES
========================= */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:28px;
}

.service-card{
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.08);
border-radius:28px;
padding:35px;
backdrop-filter:blur(12px);
transition:.35s;
position:relative;
overflow:hidden;
}

.service-card:hover{
transform:translateY(-12px);
}

.service-icon{
width:75px;
height:75px;
border-radius:20px;
background:linear-gradient(to right,#ff4d6d,#7c3aed);
display:flex;
align-items:center;
justify-content:center;
margin-bottom:22px;
}

.service-icon i{
font-size:28px;
}

.service-card h3{
font-size:24px;
margin-bottom:12px;
}

.service-card p{
color:#dbe4f0;
line-height:1.8;
}

/* =========================
GALLERY
========================= */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:24px;
}

.gallery-item{
position:relative;
overflow:hidden;
border-radius:26px;
}

.gallery-item img{
width:100%;
height:280px;
object-fit:cover;
transition:.45s;
display:block;
}

.gallery-item:hover img{
transform:scale(1.08);
}

.gallery-overlay{
position:absolute;
inset:0;
background:linear-gradient(to top,rgba(0,0,0,.85),transparent);
display:flex;
align-items:flex-end;
padding:22px;
}

.gallery-overlay h4{
font-size:22px;
}

/* =========================
CTA
========================= */

.cta-box{
background:linear-gradient(
135deg,
rgba(255,77,109,.16),
rgba(124,58,237,.16),
rgba(251,191,36,.16)
);
padding:70px 40px;
border-radius:40px;
text-align:center;
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(18px);
}

.cta-box h2{
font-size:54px;
margin-bottom:20px;
}

.cta-box p{
max-width:760px;
margin:auto auto 30px;
line-height:1.9;
color:#dbe4f0;
}

/* =========================
FOOTER
========================= */

.site-footer{
margin-top:80px;
padding:35px 20px;
background:#020617;
text-align:center;
color:#94a3b8;
border-top:1px solid rgba(255,255,255,.08);
}

/* =========================
TABLET
========================= */

@media(max-width:1100px){

.hero{
flex-direction:column;
text-align:center;
padding-top:140px;
}

.hero-content{
max-width:100%;
}

.hero-gallery{
width:100%;
height:520px;
}

.hero-content h2{
font-size:58px;
}

.header-inner{
width:95%;
}

}

/* =========================
MOBILE
========================= */

@media(max-width:850px){

.site-header{
height:82px;
}

.header-inner{
height:82px;
}

.brand img{
width:58px;
height:58px;
}

.brand-text h1{
font-size:22px;
}

.brand-text span{
font-size:11px;
}

.menu-toggle{
display:flex;
}

.nav{
display:none;
position:absolute;
top:82px;
left:0;
width:100%;
background:#0f172a;
flex-direction:column;
padding:20px;
align-items:flex-start;
gap:10px;
border-top:1px solid rgba(255,255,255,.08);
max-height:calc(100vh - 82px);
overflow-y:auto;
z-index:999;
}

.nav.active{
display:flex;
}

.nav a,
.dropbtn{
width:100%;
justify-content:space-between;
padding:14px 16px;
border-radius:12px;
}

.dropdown{
width:100%;
}

.dropdown-content{
position:static;
display:none;
width:100%;
margin-top:10px;
border-radius:16px;
background:rgba(255,255,255,.04);
box-shadow:none;
border:1px solid rgba(255,255,255,.06);
}

.dropdown.active .dropdown-content{
display:flex;
}

.hero{
flex-direction:column;
text-align:center;
padding-top:130px;
gap:50px;
}

.hero-content{
max-width:100%;
}

.hero-content h2{
font-size:42px;
}

.hero-buttons{
justify-content:center;
}

.hero-gallery{
width:100%;
height:420px;
overflow:hidden;
position:relative;
}

.photo-track{
animation-play-state:running !important;
}

.photo-track img{
width:180px;
height:130px;
}

.track-center{
display:none;
}

.section-title h2,
.cta-box h2{
font-size:36px;
}

}

/* =========================
SMALL MOBILE
========================= */

@media(max-width:600px){

.hero{
padding-top:120px;
padding-left:20px;
padding-right:20px;
}

.hero-content h2{
font-size:34px;
line-height:1.15;
}

.hero-content p{
font-size:16px;
line-height:1.8;
}

.hero-gallery{
height:340px;
}

.photo-track{
animation-duration:14s;
}

.photo-track img{
width:140px;
height:100px;
border-radius:18px;
}

.floating-logo{
width:120px;
height:120px;
}

.floating-logo img{
width:82px;
height:82px;
}

.btn{
width:100%;
justify-content:center;
}

.section{
padding:70px 0;
}

}