*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins;
}

body{
background:#050505;
color:white;
overflow-x:hidden;
}

/* NAV */
.nav{
display:flex;
justify-content:space-between;
padding:20px 60px;
position:fixed;
width:100%;
backdrop-filter:blur(15px);
background:#000000aa;
z-index:1000;
}

.logo span{color:#00e5ff}

.links{
display:flex;
gap:25px;
list-style:none;
}

.links a{
color:white;
text-decoration:none;
opacity:0.7;
}

.links a:hover{
opacity:1;
color:#00e5ff;
}

/* HERO */
.hero{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:0 20px;
}

.hero h1{
font-size:55px;
}

.hero span{
color:#00e5ff;
}

/* SECTIONS */
.section{
padding:100px 60px;
text-align:center;
}

.section.dark{
background:#0a0a0a;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:40px;
}

/* CARDS */
.card{
background:#111;
padding:25px;
border-radius:12px;
transition:0.3s;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,229,255,0.2);
}

.highlight{
border:1px solid #00e5ff;
}

/* BUTTONS */
.btn{
padding:12px 25px;
background:#00e5ff;
color:black;
text-decoration:none;
display:inline-block;
margin:10px;
border-radius:8px;
}

.btn.outline{
background:transparent;
border:1px solid #00e5ff;
color:white;
}

/* FORM */
form{
display:flex;
flex-direction:column;
gap:15px;
max-width:500px;
margin:auto;
}

input,textarea{
padding:12px;
background:#111;
border:none;
color:white;
border-radius:8px;
}

button{
padding:12px;
background:#00e5ff;
border:none;
cursor:pointer;
}

/* CURSOR */
.cursor{
width:15px;
height:15px;
background:#00e5ff;
border-radius:50%;
position:fixed;
pointer-events:none;
}

.video-card iframe{
width:100%;
height:250px;
border:0;
border-radius:12px;
display:block;
}

.video-card{
background:#111;
border-radius:12px;
overflow:hidden;
transition:0.3s;
}

.video-card:hover{
transform:scale(1.03);
box-shadow:0 10px 30px rgba(0,229,255,0.25);
}


.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;

/* your image */
background-image: url("https://img.magnific.com/premium-vector/abstract-black-background-dynamic-black-landing-page_249611-4935.jpg");

background-size: cover;
background-position: center;
background-repeat: no-repeat;

/* dark overlay for text visibility */
position: relative;
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background: rgba(0,0,0,0.6);
}

.hero-content{
position: relative;
z-index: 2;
}

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:20px;
}

.gallery img{
width:320px;
display:block;
border-radius:12px;
transition:0.3s;
height: auto;
margin: 0 auto;
}

.gallery img:hover{
transform:scale(1.05);
box-shadow:0 10px 25px rgba(0,229,255,0.2);
}

.pricing-grid{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    margin-top:50px;
}

.price-card{
    width:320px;
    background:#171717;
    border:1px solid #2a2a2a;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.3s;
}

.price-card:hover{
    transform:translateY(-10px);
    border-color:#00e5ff;
    box-shadow:0 0 25px rgba(0,229,255,.3);
}

.featured{
    border:2px solid #00e5ff;
}

.price-card h1{
    font-size:42px;
    color:#00e5ff;
    margin:15px 0;
}

.price-card h3{
    margin-bottom:10px;
}

.price-card ul{
    list-style:none;
    padding:0;
    margin-top:25px;
}

.price-card li{
    margin:12px 0;
    color:#ccc;
}

.price-list{
    margin-top:20px;
}

.price-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 15px;
    margin-bottom:10px;
    background:#1b1b1b;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.08);
}

.price-item span:last-child{
    color:#00e5ff;
    font-weight:700;
}

.offer{
    margin-top:20px;
    color:#00e5ff;
    font-weight:600;
}

.insta-icon{
    width:24px;
    height:24px;
    margin-right:10px;
}


.instagram-button{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:14px 28px;
    background:linear-gradient(135deg,#833AB4,#C13584,#E1306C,#FD1D1D,#FCAF45);
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    font-family:'Poppins',sans-serif;
    border-radius:50px;
    box-shadow:0 10px 25px rgba(193,53,132,.35);
    transition:.3s ease;
}

.instagram-button img{
    width:24px;
    height:24px;
}

.instagram-button:hover{
    transform:translateY(-3px) scale(1.03);
    box-shadow:0 15px 35px rgba(193,53,132,.5);
}

html{
    scroll-behavior:smooth;
}

.video-card {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.video-card video {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 9/16;
    border-radius: 15px;
    object-fit: cover;
}

.view-work-btn{
    display:inline-block;
    padding:15px 40px;
    background:linear-gradient(135deg,#00e5ff,#00ff99);
    color:#000;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    border-radius:50px;
    box-shadow:0 0 5px #00e5ff,
               0 0 10px #00ff99;
    transition:0.4s ease;
}

.view-work-btn:hover{
    transform:scale(1.08);
    box-shadow:0 0 30px #00e5ff,
               0 0 60px #00ff99,
               0 0 100px #00e5ff;
}

.hero h1{
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow:
        0 0 5px rgba(255,255,255,0.35),
        0 0 10px rgba(0,229,255,0.20),
        0 0 20px rgba(0,229,255,0.12);
}


.hero p{
    color: #d8d8d8;
    text-shadow:
        0 0 4px rgba(255,255,255,0.25),
        0 0 10px rgba(0,229,255,0.12);
}