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

body{
color:white;
overflow-x:hidden;
background:#0b0b14;
}

.bg{
position:fixed;
width:100%;
height:100%;
background:
url("assets/bg.avif") center/cover no-repeat,
radial-gradient(circle at 20% 20%, rgba(255, 95, 69, 0.85), transparent 45%),
radial-gradient(circle at 70% 40%, rgba(61, 139, 255, 0.85), transparent 45%),
radial-gradient(circle at 40% 80%, rgba(0, 0, 0, 0.9), transparent 55%),
#0a0a0a;

z-index:-1;
}

/* NAVBAR */

.navbar{

display:flex;
justify-content:space-between;
align-items:center;

padding:26px 80px;

}

.logo-container{
display:flex;
align-items:center;
gap:10px;
font-weight:bold;
letter-spacing:1px;
font-size:16px;
white-space:nowrap;
}

.logo-container img{
height:44px;
display:block;
}

.logo-container span{
line-height:1;
}

.nav-links{

display:flex;
gap:64px;

}

.nav-links a{

text-decoration:none;
color:#ddd;
font-weight:bold;
letter-spacing:2px;
font-size:12px;

}

.cta{

background:#2f5cff;
padding:10px 22px;
border-radius:999px;
font-size:12px;
letter-spacing:1.5px;
cursor:pointer;
color:#0b0b14;
font-weight:700;
text-decoration:none;
box-shadow:0 8px 20px rgba(91,198,255,0.35);
transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;

}

.cta:hover{
transform:translateY(-2px);
box-shadow:0 14px 30px rgba(91,198,255,0.55);
background:linear-gradient(135deg, #4f9dff, #7ad9ff);
}


/* HERO */

.hero{

height:60vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
flex-direction:column;

}

.hero h1{

font-size:52px;
letter-spacing:3px;
font-weight:700;

}

.hero-actions{
display:flex;
gap:16px;
justify-content:center;
margin-top:20px;
flex-wrap:wrap;
}

.hero-btn{
text-decoration:none;
color:#0c0f1f;
background:#cfe7ff;
padding:10px 22px;
border-radius:999px;
font-size:12px;
letter-spacing:1.5px;
font-weight:bold;
transition:transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn.outline{
background:transparent;
color:#ffffff;
border:1px solid rgba(255,255,255,0.3);
}

.hero-btn:hover{
transform:translateY(-2px);
box-shadow:0 10px 24px rgba(207,231,255,0.35);
}


/* MARQUEE */

.marquee{

overflow:hidden;
border-top:1px solid rgba(255,255,255,0.15);
border-bottom:1px solid rgba(255,255,255,0.15);
background:rgba(0,0,0,0.35);
padding:8px 0;
position:relative;

}

.marquee-title{
text-align:center;
font-size:11px;
letter-spacing:2px;
text-transform:uppercase;
color:#cfcfe6;
margin-bottom:6px;
opacity:0.85;
animation:titleGlow 3s ease-in-out infinite;
}

.marquee-track{

display:flex;
gap:70px;
white-space:nowrap;
animation:scroll 18s linear infinite;
padding:10px 0 12px;
font-weight:bold;
font-size:15px;
letter-spacing:2.5px;
text-transform:uppercase;
text-shadow:0 0 12px rgba(168,85,247,0.28);
filter:drop-shadow(0 0 12px rgba(168,85,247,0.2));
mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);

}

.marquee-track.reverse{
animation-direction:reverse;
opacity:0.85;
margin-top:4px;
}

.marquee:hover .marquee-track{
animation-play-state:paused;
}

.marquee::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(90deg, rgba(8,8,12,0.6), transparent 18%, transparent 82%, rgba(8,8,12,0.6));
pointer-events:none;
}

@keyframes titleGlow{
  0%,100%{opacity:0.7; text-shadow:0 0 8px rgba(168,85,247,0.25);}
  50%{opacity:1; text-shadow:0 0 16px rgba(168,85,247,0.55);}
}

@keyframes scroll{

0%{transform:translateX(0)}
100%{transform:translateX(-50%)}

}


/* CONTACT */

.contact{

display:flex;
justify-content:center;
padding:90px 0 110px;

}

.contact-card{

width:460px;

background:rgba(255,255,255,0.15);
backdrop-filter:blur(20px);

padding:44px;
border-radius:22px;

}


.contact-card input,
.contact-card select,
.contact-card textarea{

width:100%;

padding:16px;

margin-bottom:15px;

background:#1e1e1e;

border:none;

border-radius:12px;

color:white;

text-align:center;

font-weight:bold;
font-size:13px;
letter-spacing:1px;
appearance:none;
background-image:
  linear-gradient(45deg, transparent 50%, #b9c7ff 50%),
  linear-gradient(135deg, #b9c7ff 50%, transparent 50%);
background-position:
  calc(100% - 22px) calc(50% - 2px),
  calc(100% - 16px) calc(50% - 2px);
background-size:6px 6px, 6px 6px;
background-repeat:no-repeat;
padding-right:46px;

}

.contact-card textarea{
resize:vertical;
min-height:110px;
padding-right:16px;
}


.contact-card button{

margin-top:10px;

padding:12px 34px;

background:#a7b6d7;

border:none;

border-radius:20px;

font-weight:bold;
letter-spacing:1.5px;

cursor:pointer;

display:block;

margin-left:auto;
margin-right:auto;

}

.form-status{
min-height:18px;
margin-top:12px;
text-align:center;
font-size:11px;
letter-spacing:1px;
text-transform:uppercase;
color:#cfd2ff;
opacity:0;
transition:opacity 0.2s ease, transform 0.2s ease;
transform:translateY(4px);
}

.form-status.show{
opacity:1;
transform:translateY(0);
}

.form-status.success{
color:#9fffd1;
}

.form-status.error{
color:#ffb3b3;
}

.form-status.success{
animation:statusPulse 1.2s ease-out 1;
}

@keyframes statusPulse{
0%{ text-shadow:0 0 0 rgba(159,255,209,0); }
50%{ text-shadow:0 0 18px rgba(159,255,209,0.6); }
100%{ text-shadow:0 0 0 rgba(159,255,209,0); }
}

@media (max-width: 900px){
  .navbar{ padding:22px 28px; }
  .nav-links{ gap:28px; }
  .hero h1{ font-size:40px; }
}

@media (max-width: 600px){
  .navbar{ flex-direction:column; gap:12px; }
  .nav-links{ flex-wrap:wrap; justify-content:center; }
  .hero{ height:50vh; padding:30px 16px; }
  .hero h1{ font-size:32px; letter-spacing:2px; }
  .contact-card{ width:92vw; padding:32px; }
}

/* PORTFOLIO PAGE */

.page-hero{
text-align:center;
padding:70px 20px 30px;
}

.page-hero h1{
font-size:46px;
letter-spacing:5px;
font-weight:700;
}

.page-hero p{
margin-top:10px;
color:#d7d7e8;
letter-spacing:1px;
font-size:14px;
}

.portfolio-section{
padding:24px 60px 60px;
margin:18px auto 0;
width:min(1100px, 94vw);
background:rgba(10,10,18,0.35);
border:1px solid rgba(255,255,255,0.08);
border-radius:18px;
backdrop-filter:blur(12px);
box-shadow:0 24px 60px rgba(0,0,0,0.35);
}

.section-title{
margin:8px 0 6px;
letter-spacing:4px;
font-size:20px;
text-transform:uppercase;
}

.section-head{
display:flex;
flex-direction:column;
gap:6px;
margin-bottom:14px;
}

.section-sub{
font-size:12px;
color:#cfd2ff;
letter-spacing:1px;
text-transform:uppercase;
}

.portfolio-section{
padding:24px 60px 60px;
margin:18px auto 0;
width:min(1100px, 94vw);
background:rgba(10,10,18,0.35);
border:1px solid rgba(255,255,255,0.08);
border-radius:18px;
backdrop-filter:blur(12px);
box-shadow:0 24px 60px rgba(0,0,0,0.35);
}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
gap:22px;
}

.portfolio-card{
position:relative;
border-radius:16px;
overflow:hidden;
background:rgba(255,255,255,0.06);
border:1px solid rgba(255,255,255,0.12);
box-shadow:0 16px 40px rgba(0,0,0,0.35);
cursor:pointer;
transition:transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.portfolio-card::before{
content:"";
position:absolute;
inset:0;
background:radial-gradient(circle at 30% 20%, rgba(91,198,255,0.18), transparent 60%);
opacity:0;
transition:opacity 0.25s ease;
pointer-events:none;
z-index:1;
}

.portfolio-img{
width:100%;
height:260px;
object-fit:cover;
display:block;
transition:transform 0.4s ease;
}

.portfolio-overlay{
position:absolute;
inset:0;
display:flex;
flex-direction:column;
justify-content:flex-end;
padding:16px;
background:linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.75));
opacity:0;
transition:opacity 0.3s ease;
z-index:2;
}

.portfolio-overlay h3{
font-size:16px;
letter-spacing:1px;
}

.portfolio-overlay span{
font-size:12px;
color:#cfd2ff;
letter-spacing:1px;
}

.portfolio-card:hover .portfolio-img{
transform:scale(1.05);
}

.portfolio-card:hover .portfolio-overlay{
opacity:1;
}

.portfolio-card:hover{
transform:translateY(-6px);
border-color:rgba(91,198,255,0.35);
box-shadow:0 24px 60px rgba(91,198,255,0.18);
}

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

/* LIGHTBOX */

.lightbox{
position:fixed;
inset:0;
display:none;
align-items:center;
justify-content:center;
z-index:50;
}

.lightbox.active{
display:flex;
}

.lightbox-backdrop{
position:absolute;
inset:0;
background:rgba(0,0,0,0.8);
backdrop-filter:blur(6px);
}

.lightbox-content{
position:relative;
z-index:1;
width:min(900px, 92vw);
max-height:85vh;
background:rgba(15,15,25,0.8);
border:1px solid rgba(255,255,255,0.12);
border-radius:18px;
padding:14px;
box-shadow:0 30px 80px rgba(0,0,0,0.5);
}

.lightbox-media img,
.lightbox-media video{
width:100%;
height:auto;
max-height:78vh;
border-radius:12px;
display:block;
object-fit:contain;
background:#0a0a0f;
}

.lightbox-link{
display:inline-block;
margin-top:10px;
padding:8px 14px;
border-radius:999px;
background:rgba(122,215,255,0.2);
border:1px solid rgba(122,215,255,0.4);
color:#e8f6ff;
text-decoration:none;
font-size:12px;
letter-spacing:1px;
text-transform:uppercase;
}

.lightbox-media video{
background:#000;
}

.lightbox-close{
position:absolute;
top:8px;
right:12px;
background:rgba(255,255,255,0.12);
border:none;
color:white;
font-size:22px;
width:32px;
height:32px;
border-radius:50%;
cursor:pointer;
}

.lightbox-nav{
position:absolute;
top:50%;
transform:translateY(-50%);
width:36px;
height:36px;
border-radius:50%;
border:none;
background:rgba(255,255,255,0.12);
color:#fff;
font-size:22px;
cursor:pointer;
}

.lightbox-nav.prev{ left:10px; }
.lightbox-nav.next{ right:10px; }

.lightbox-nav:hover,
.lightbox-close:hover{
background:rgba(122,215,255,0.3);
}

@media (max-width: 900px){
  .portfolio-section{ padding:20px 22px 50px; }
  .page-hero h1{ font-size:36px; }
}

@media (max-width: 600px){
  .portfolio-section{ padding:18px 16px 50px; }
  .portfolio-img{ height:210px; }
}

/* SERVICES PAGE */

.services-section{
padding:30px 60px 90px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
gap:18px;
}

.service-card{
background:rgba(255,255,255,0.06);
border:1px solid rgba(255,255,255,0.12);
border-radius:16px;
padding:20px;
box-shadow:0 16px 40px rgba(0,0,0,0.35);
transition:transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.service-card h3{
font-size:15px;
letter-spacing:1px;
margin-bottom:6px;
}

.service-card p{
font-size:12px;
color:#cfd2ff;
letter-spacing:0.5px;
}

.service-card:hover{
transform:translateY(-6px);
border-color:rgba(91,198,255,0.45);
box-shadow:0 20px 50px rgba(91,198,255,0.2);
}

@media (max-width: 900px){
  .services-section{ padding:20px 28px 60px; }
}

@media (max-width: 600px){
  .services-section{ padding:20px 16px 60px; }
}

/* CONTACT PAGE */

.contact-page{
padding:20px 60px 90px;
}

.contact-wrap{
display:grid;
grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
gap:24px;
align-items:start;
}

.contact-info{
background:rgba(255,255,255,0.06);
border:1px solid rgba(255,255,255,0.12);
border-radius:18px;
padding:26px;
box-shadow:0 16px 40px rgba(0,0,0,0.35);
}

.contact-info h2{
font-size:20px;
letter-spacing:1px;
margin-bottom:8px;
}

.contact-info p{
font-size:13px;
color:#d6d8f2;
letter-spacing:0.5px;
line-height:1.6;
margin-bottom:16px;
}

.info-card{
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.14);
border-radius:14px;
padding:12px 14px;
margin-bottom:12px;
}

.info-card span{
display:block;
font-size:11px;
letter-spacing:1px;
color:#c7c9ea;
text-transform:uppercase;
}

.info-card strong{
display:block;
margin-top:4px;
font-size:13px;
letter-spacing:0.5px;
}

.contact-page .contact-card{
width:100%;
}

.contact-page textarea{
width:100%;
padding:16px;
border:none;
border-radius:12px;
background:#1e1e1e;
color:white;
text-align:center;
font-weight:bold;
font-size:13px;
letter-spacing:1px;
}

.contact-page button{
margin-top:8px;
}

@media (max-width: 900px){
  .contact-page{ padding:20px 28px 60px; }
}

@media (max-width: 600px){
  .contact-page{ padding:20px 16px 60px; }
}

/* BRAND MARQUEE */

.brand-marquee{
padding:50px 0 70px;
position:relative;
color:#fff;
}

.brand-title{
text-align:center;
font-size:12px;
letter-spacing:3px;
text-transform:uppercase;
opacity:0.85;
margin-bottom:16px;
}

.marquee-wrap{
position:relative;
overflow:hidden;
padding:16px 0;
backdrop-filter:blur(12px);
background:rgba(255,255,255,0.04);
border-top:1px solid rgba(255,255,255,0.1);
border-bottom:1px solid rgba(255,255,255,0.1);
}

.fade-edge{
position:absolute;
top:0;
bottom:0;
width:80px;
z-index:2;
pointer-events:none;
}

.fade-edge.left{
left:0;
background:linear-gradient(to right, rgba(10,10,20,0.9), transparent);
}

.fade-edge.right{
right:0;
background:linear-gradient(to left, rgba(10,10,20,0.9), transparent);
}

.marquee-row{
overflow:hidden;
display:flex;
white-space:nowrap;
}

.marquee-track{
display:flex;
gap:36px;
width:max-content;
animation:scroll-left 40s linear infinite;
}

.row-2 .marquee-track{
animation:scroll-right 40s linear infinite;
}

.brand-pill{
display:inline-flex;
align-items:center;
gap:10px;
padding:10px 18px;
border-radius:999px;
background:rgba(255,255,255,0.08);
border:1px solid rgba(255,255,255,0.15);
box-shadow:0 8px 20px rgba(0,0,0,0.35);
text-transform:uppercase;
letter-spacing:1.5px;
font-size:12px;
transition:all 0.3s ease;
}

.brand-pill:hover{
box-shadow:0 0 18px rgba(122,215,255,0.6);
border-color:rgba(122,215,255,0.6);
transform:scale(1.08);
}

.logo{
width:28px;
height:28px;
border-radius:8px;
background:linear-gradient(135deg, #ff5f45, #3d8bff);
display:grid;
place-items:center;
font-size:10px;
font-weight:700;
color:#0b0b14;
}

.marquee-wrap:hover .marquee-track{
animation-play-state:paused;
}

@keyframes scroll-left{
0%{ transform:translateX(0); }
100%{ transform:translateX(-50%); }
}

@keyframes scroll-right{
0%{ transform:translateX(-50%); }
100%{ transform:translateX(0); }
}

@media (max-width: 768px){
  .marquee-track{ gap:20px; animation-duration:55s; }
  .brand-pill{ font-size:11px; padding:8px 14px; }
  .logo{ width:24px; height:24px; }
}
