:root{

--orange:#ff6b00;
--orange2:#ff8c32;

--bg:#050505;

--card:#111111;

--text:#ffffff;

--muted:#b8b8b8;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:var(--bg);
color:white;
overflow-x:hidden;
}

/* LOADER */

.loader{
position:fixed;
width:100%;
height:100%;
background:#000;
z-index:9999;
display:flex;
justify-content:center;
align-items:center;
}

.loader-content{
text-align:center;
}

.loader-content h1{
font-size:60px;
letter-spacing:5px;
}

.loader-line{
height:3px;
width:0;
background:var(--orange);
margin-top:20px;
animation:loading 2s forwards;
}

@keyframes loading{
100%{
width:250px;
}
}

/* CURSOR */

.cursor-glow{
position:fixed;
width:400px;
height:400px;
border-radius:50%;
background:
radial-gradient(circle,
rgba(255,107,0,.25),
transparent 70%);
pointer-events:none;
transform:translate(-50%,-50%);
z-index:-1;
}

/* NAV */

nav{
position:fixed;
top:20px;
left:50%;
transform:translateX(-50%);
width:90%;
max-width:1400px;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 30px;
background:rgba(255,255,255,.04);
backdrop-filter:blur(20px);
border:1px solid rgba(255,255,255,.08);
border-radius:20px;
z-index:999;
}

.logo{
font-size:28px;
font-weight:800;
}

.logo span{
color:var(--orange);
}

nav ul{
display:flex;
gap:30px;
list-style:none;
}

nav a{
text-decoration:none;
color:white;
}

.resume-btn{
background:var(--orange);
padding:12px 20px;
border-radius:50px;
}

/* HERO */

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:140px 8%;
}

.hero-left{
max-width:700px;
}

.availability{
display:inline-flex;
gap:10px;
padding:10px 20px;
border-radius:50px;
background:#111;
margin-bottom:20px;
}

.availability span{
width:10px;
height:10px;
border-radius:50%;
background:#00ff88;
}

.hero h3{
color:var(--orange);
}

.hero h1{
font-size:100px;
line-height:1;
margin:20px 0;
}

.hero h1 span{
color:var(--orange);
}

.hero p{
color:var(--muted);
max-width:550px;
}

.hero-buttons{
margin-top:40px;
display:flex;
gap:20px;
}

.primary-btn{
background:var(--orange);
padding:15px 35px;
border-radius:50px;
color:white;
text-decoration:none;
}

.secondary-btn{
padding:15px 35px;
border-radius:50px;
border:1px solid rgba(255,255,255,.2);
color:white;
text-decoration:none;
}

.hero-info{
margin-top:40px;
display:grid;
gap:15px;
}

.hero-right{
position:relative;
}

.hero-right img{
width:500px;
position:relative;
z-index:2;
}

.hero-glow{
position:absolute;
width:500px;
height:500px;
background:
radial-gradient(circle,
var(--orange),
transparent 70%);
filter:blur(80px);
}

/* SECTIONS */

section{
padding:120px 8%;
}

.section-title{
color:var(--orange);
margin-bottom:15px;
text-transform:uppercase;
}

h2{
font-size:50px;
margin-bottom:20px;
}

/* =========================
STATS
========================= */

.stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.stat-card{
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(20px);
padding:40px;
border-radius:20px;
text-align:center;
transition:.4s;
}

.stat-card:hover{
transform:translateY(-10px);
border-color:var(--orange);
}

.stat-card h2{
font-size:60px;
color:var(--orange);
}

/* ==========================================
SERVICES SECTION
========================================== */

.services-preview{
padding:100px 8%;
text-align:center;
}

.services-preview h2{
font-size:56px;
font-weight:700;
margin-bottom:20px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:60px;
}

.service-link{
text-decoration:none;
color:white;
}

.service-card{
background:rgba(255,255,255,.03);
border:1px solid rgba(255,255,255,.08);
border-radius:25px;
padding:35px 25px;
height:280px;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

text-align:center;

transition:.35s ease;
backdrop-filter:blur(15px);
}

.service-card:hover{
transform:translateY(-10px);
border-color:var(--orange);
box-shadow:0 10px 30px rgba(255,107,0,.15);
}

.service-card i{
font-size:34px;
color:var(--orange);
margin-bottom:20px;
}

.service-card h3{
font-size:24px;
font-weight:700;
margin-bottom:15px;
line-height:1.3;
}

.service-card p{
font-size:15px;
line-height:1.7;
color:#b8b8b8;
max-width:220px;
}

/* ==========================================
FEATURED PROJECTS
========================================== */

.featured-projects{
padding:120px 8%;
text-align:center;
}

.featured-projects h2{
font-size:56px;
font-weight:700;
margin-bottom:20px;
}

.bento-grid{
margin-top:60px;

display:grid;
grid-template-columns:2fr 1fr 1fr;
grid-template-rows:280px 280px;

gap:20px;
}

.project{
position:relative;
overflow:hidden;
border-radius:25px;
cursor:pointer;
background:#111;
border:1px solid rgba(255,255,255,.06);

transition:.4s ease;
}

.project:hover{
transform:translateY(-6px);
}

.project.large{
grid-row:span 2;
}

.project.wide{
grid-column:span 2;
}

.project img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s ease;
}

.project:hover img{
transform:scale(1.08);
}

.project::after{
content:'';
position:absolute;
inset:0;

background:
linear-gradient(
to top,
rgba(0,0,0,.9),
rgba(0,0,0,.1)
);

z-index:1;
}

.overlay{
position:absolute;
bottom:25px;
left:25px;
z-index:2;
text-align:left;
}

.overlay h3{
font-size:24px;
font-weight:600;
}

/* ==========================================
SECTION TITLES
========================================== */

.section-title{
font-size:16px;
font-weight:600;
color:var(--orange);
text-transform:uppercase;
letter-spacing:2px;
margin-bottom:15px;
}

/* ==========================================
TABLET
========================================== */

@media(max-width:1200px){

.service-grid{
grid-template-columns:repeat(2,1fr);
}

.bento-grid{
grid-template-columns:1fr 1fr;
grid-template-rows:auto;
}

.project.large{
grid-row:auto;
}

.project.wide{
grid-column:auto;
}

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

.services-preview h2,
.featured-projects h2{
font-size:40px;
}

.service-grid{
grid-template-columns:1fr;
}

.bento-grid{
grid-template-columns:1fr;
}

.service-card{
height:auto;
padding:30px;
}

.project{
height:280px;
}

}

/* =========================
CTA
========================= */

.cta{
text-align:center;
padding:140px 8%;
}

.cta h2{
margin-bottom:40px;
}

/* =========================
FOOTER
========================= */

footer{
border-top:1px solid rgba(255,255,255,.08);
padding:50px;
text-align:center;
}

.footer-logo{
font-size:32px;
font-weight:700;
margin-bottom:20px;
}

.footer-logo span{
color:var(--orange);
}

.socials{
display:flex;
justify-content:center;
gap:20px;
margin-bottom:20px;
}

.socials a{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
background:#111;
border-radius:50%;
color:white;
text-decoration:none;
transition:.4s;
}

.socials a:hover{
background:var(--orange);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

.hero{
flex-direction:column;
text-align:center;
gap:60px;
}

.hero-left{
max-width:100%;
}

.hero-buttons{
justify-content:center;
}

.hero-info{
justify-content:center;
}

.service-grid{
grid-template-columns:repeat(2,1fr);
}

.stats{
grid-template-columns:1fr;
}

.bento-grid{
display:grid;
grid-template-columns:2fr 1fr;
grid-template-rows:250px 250px;
gap:20px;
margin-top:60px;
}

.project.large,
.project.wide{
grid-row:auto;
grid-column:auto;
}

}

@media(max-width:768px){

.hero h1{
font-size:60px;
}

.hero-right img{
width:300px;
}

nav ul{
display:none;
}

.service-grid{
grid-template-columns:1fr;
}

h2{
font-size:36px;
}

}

/* =========================
PROJECT FILTER
========================= */

.filter-buttons{
display:flex;
justify-content:center;
gap:15px;
margin:40px 0;
flex-wrap:wrap;
}

.filter-btn{
padding:12px 25px;
border:none;
background:#111;
color:white;
border-radius:50px;
cursor:pointer;
transition:.3s;
}

.filter-btn.active,
.filter-btn:hover{
background:var(--orange);
}

.project-gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.project-card{
height:300px;
background:#111;
border-radius:25px;
overflow:hidden;
position:relative;
cursor:pointer;
transition:.4s;
}

.project-card:hover{
transform:translateY(-10px);
}

.project-card img{
width:100%;
height:100%;
object-fit:cover;
}

.project-content{
position:absolute;
bottom:0;
width:100%;
padding:25px;
background:linear-gradient(
to top,
rgba(0,0,0,.9),
transparent
);
}

/* =========================
TIMELINE
========================= */

.timeline{
position:relative;
max-width:900px;
margin:auto;
}

.timeline::before{
content:'';
position:absolute;
left:50%;
width:4px;
height:100%;
background:var(--orange);
transform:translateX(-50%);
}

.timeline-item{
width:50%;
padding:30px;
position:relative;
}

.timeline-item:nth-child(odd){
left:0;
text-align:right;
}

.timeline-item:nth-child(even){
left:50%;
}

.timeline-card{
background:#111;
padding:25px;
border-radius:20px;
border:1px solid rgba(255,255,255,.08);
}

.timeline-card h3{
color:var(--orange);
}

/* =========================
CONTACT
========================= */

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
}

.contact-info{
display:grid;
gap:20px;
}

.contact-box{
background:#111;
padding:25px;
border-radius:20px;
}

.contact-form{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea{
padding:18px;
border:none;
border-radius:15px;
background:#111;
color:white;
}

.contact-form textarea{
height:200px;
resize:none;
}

.contact-form button{
padding:18px;
border:none;
border-radius:15px;
background:var(--orange);
color:white;
cursor:pointer;
}

/* MOBILE */

@media(max-width:900px){

.project-gallery{
grid-template-columns:1fr;
}

.timeline::before{
left:20px;
}

.timeline-item{
width:100%;
left:0 !important;
padding-left:60px;
text-align:left !important;
}

.contact-wrapper{
grid-template-columns:1fr;
}

}
/* ===================
CUSTOM SCROLLBAR
=================== */

::-webkit-scrollbar{
width:8px;
}

::-webkit-scrollbar-track{
background:#050505;
}

::-webkit-scrollbar-thumb{
background:#ff6b00;
border-radius:50px;
}

/* ===================
HAMBURGER
=================== */

.hamburger{
display:none;
flex-direction:column;
gap:5px;
cursor:pointer;
}

.hamburger span{
width:30px;
height:3px;
background:white;
}

/* ===================
THEME BUTTON
=================== */

.theme-toggle{
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
background:#111;
cursor:pointer;
}

/* ===================
FLOATING DOCK
=================== */

.dock{
position:fixed;
bottom:20px;
left:50%;
transform:translateX(-50%);
background:rgba(255,255,255,.05);
backdrop-filter:blur(20px);
padding:15px 25px;
border-radius:50px;
display:flex;
gap:25px;
z-index:999;
}

.dock a{
color:white;
font-size:20px;
transition:.3s;
}

.dock a:hover{
transform:translateY(-8px);
color:var(--orange);
}

/* ===================
LIGHTBOX
=================== */

.lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,.95);
display:none;
justify-content:center;
align-items:center;
z-index:9999;
}

.lightbox img{
max-width:90%;
max-height:90%;
border-radius:20px;
}

.close-lightbox{
position:absolute;
top:30px;
right:40px;
font-size:40px;
cursor:pointer;
color:white;
}

/* ===================
LIGHT MODE
=================== */

.light-mode{

--bg:#ffffff;
--text:#111111;
--card:#f2f2f2;

background:white;
color:black;

}

.light-mode nav{
background:white;
}

/* ===================
REVEAL ANIMATION
=================== */

.reveal{
opacity:0;
transform:translateY(80px);
}

/* ===================
MOBILE
=================== */

@media(max-width:900px){

.hamburger{
display:flex;
}

.nav-links{
position:fixed;
top:100px;
right:-100%;
width:300px;
height:400px;
background:#111;
border-radius:20px;
flex-direction:column;
padding:40px;
transition:.4s;
}

.nav-links.active{
right:20px;
}

}
.service-link{
text-decoration:none;
color:white;
display:block;
}

.project img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
}

.project:hover img{
transform:scale(1.08);
}

.project{
cursor:pointer;
overflow:hidden;
}

.overlay{
position:absolute;
bottom:20px;
left:20px;
z-index:2;
}