*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#08111f;
color:white;
overflow-x:hidden;
}

/* =========================
   NAVBAR
========================= */

nav{

position:fixed;

top:0;
left:0;

width:100%;

height:110px;

display:flex;

justify-content:space-between;

align-items:center;

padding:0 6%;

background:rgba(8,17,31,.92);

backdrop-filter:blur(15px);

border-bottom:1px solid rgba(255,255,255,.08);

z-index:1000;

}

.nav-left,
.nav-right{

display:flex;

align-items:center;

gap:25px;

}

.nav-left a,
.nav-right a{

color:white;

text-decoration:none;

font-weight:600;

padding:10px 18px;

border-radius:30px;

background:rgba(0,255,255,.08);

box-shadow:
0 0 10px rgba(0,255,255,.35);

transition:.3s;

}

.nav-left a:hover,
.nav-right a:hover{

transform:translateY(-3px);

box-shadow:
0 0 15px #00ffff,
0 0 30px rgba(0,255,255,.5);

}

.nav-logo img{

height:70px;

width:auto;

}

/* =========================
   HERO
========================= */

.portfolio-hero{

min-height:100vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:150px 20px 100px;

background:

linear-gradient(
rgba(0,0,0,.75),
rgba(0,0,0,.75)
),

url('bgLogo.png');

background-size:cover;

background-position:center;

}

.hero-badge{

padding:12px 24px;

border-radius:30px;

background:rgba(0,255,255,.08);

border:1px solid rgba(0,255,255,.25);

margin-bottom:25px;

}

.portfolio-hero h1{

font-size:6rem;

font-weight:900;

margin-bottom:20px;

text-transform:uppercase;

}

.portfolio-hero p{

max-width:700px;

font-size:1.1rem;

line-height:1.8;

color:#d5d5d5;

margin-bottom:35px;

}

/* BUTTONS */

.hero-btn{

display:inline-block;

padding:15px 35px;

border-radius:50px;

background:#00d4ff;

color:#08111f;

font-weight:700;

text-decoration:none;

margin-right:10px;

transition:.3s;

}

.hero-btn:hover{

transform:translateY(-4px);

box-shadow:
0 0 30px rgba(0,212,255,.45);

}

.btn-secondary{

display:inline-block;

padding:15px 35px;

border-radius:50px;

border:2px solid #00d4ff;

background:rgba(0,212,255,.08);

color:white;

text-decoration:none;

font-weight:700;

transition:.3s;

}

.btn-secondary:hover{

transform:translateY(-4px);

box-shadow:
0 0 30px rgba(0,212,255,.45);

}


/* =========================
   FEATURED PROJECT
========================= */

.featured-project{

padding:120px 8%;

display:grid;

grid-template-columns:1.3fr 1fr;

gap:60px;

align-items:center;

background:#0d1728;

}

.featured-image img{

width:100%;

border-radius:25px;

border:2px solid rgba(0,255,255,.25);

box-shadow:
0 0 25px rgba(0,255,255,.15),
0 0 50px rgba(0,255,255,.08);

}

.featured-image img:hover{

transform:scale(1.03);

box-shadow:
0 0 45px rgba(0,212,255,.35);

}

.featured-content{

background:rgba(255,255,255,.05);

backdrop-filter:blur(15px);

padding:40px;

border-radius:30px;

border:1px solid rgba(0,255,255,.15);

box-shadow:
0 0 20px rgba(0,255,255,.08);

}

.project-badge{

display:inline-block;

padding:10px 20px;

border-radius:30px;

background:rgba(0,255,255,.08);

border:1px solid rgba(0,255,255,.2);

color:#00ffff;

font-size:.8rem;

font-weight:700;

margin-bottom:20px;

text-transform:uppercase;

letter-spacing:1px;

}

.featured-content h2{

font-size:3rem;

margin-bottom:20px;

}

.featured-content p{

line-height:1.9;

color:#d5d5d5;

margin-bottom:25px;

}

.featured-content ul{

list-style:none;

padding:0;

margin-bottom:30px;

}

.featured-content ul li{

padding:10px 0;

color:white;

}

.featured-content ul li::before{

content:"✓ ";

color:#00ffff;

font-weight:bold;

text-shadow:
0 0 10px #00ffff;

}

/* PROJECT BUTTON */

.project-btn{

display:inline-block;

padding:18px 40px;

font-size:1.1rem;

border-radius:30px;

background:#00d4ff;

color:#08111f;

font-weight:700;

text-decoration:none;

transition:.3s;

box-shadow:
0 0 20px rgba(0,212,255,.25);

}

.project-btn:hover{

transform:translateY(-3px);

box-shadow:
0 0 35px rgba(0,212,255,.45);

}


/* =========================
   PROJECT HIGHLIGHTS
========================= */

.project-highlights{

padding:120px 8%;

background:#08111f;

text-align:center;

}

.project-highlights h2{

font-size:3rem;

margin-bottom:60px;

}

.highlights-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}

.highlight-card{

background:rgba(255,255,255,.05);

border:1px solid rgba(0,255,255,.15);

border-radius:25px;

padding:35px;

transition:.3s;

}

.highlight-card:hover{

transform:translateY(-10px);

box-shadow:
0 0 30px rgba(0,255,255,.2);

}

.highlight-card h3{

margin-bottom:15px;

font-size:1.3rem;

}

.highlight-card p{

color:#d5d5d5;

line-height:1.7;

}

/* =========================
   CLIENT FEEDBACK
========================= */

.portfolio-review{

padding:120px 8%;

text-align:center;

background:

linear-gradient(
rgba(8,17,31,.88),
rgba(8,17,31,.88)
),

url('review-bg.jpg');

background-size:cover;

background-position:center;

background-attachment:fixed;

}

.portfolio-review h2{

font-size:3rem;

margin-bottom:50px;

}

.review-card{

max-width:900px;

margin:auto;

padding:50px;

background:rgba(255,255,255,.05);

backdrop-filter:blur(15px);

border:1px solid rgba(0,255,255,.15);

border-radius:30px;

box-shadow:
0 0 25px rgba(0,255,255,.08);

}
.stars{

font-size:2rem;

margin-bottom:25px;

color:#00ffff;

}

.review-card p{

line-height:1.9;

color:#d5d5d5;

margin-bottom:25px;

}

.review-card h4{

color:#00ffff;

}

/* =========================
   CTA
========================= */

.portfolio-cta{

padding:120px 8%;

text-align:center;

background:

linear-gradient(
135deg,
#00d4ff,
#008cff
);

}

.portfolio-cta h2{

font-size:3.5rem;

margin-bottom:20px;

}

.portfolio-cta p{

max-width:700px;

margin:auto;

margin-bottom:35px;

}

/* =========================
   FOOTER
========================= */

footer{

padding:80px 20px;

text-align:center;

background:#050b14;

}

footer img{

height:90px;

margin-bottom:20px;

}

footer h3{

margin-bottom:15px;

}

footer p{

color:#aaa;

margin-top:10px;

}

/* =========================
   MOBILE
========================= */

@media(max-width:991px){

.featured-project{

grid-template-columns:1fr;

}

.highlights-grid{

grid-template-columns:1fr 1fr;

}

.portfolio-hero h1{

font-size:4rem;

}

}

@media(max-width:768px){

.nav-left,
.nav-right{

display:none;

}

.highlights-grid{

grid-template-columns:1fr;

}

.portfolio-hero h1{

font-size:3rem;

}

.project-highlights h2,
.portfolio-review h2,
.portfolio-cta h2{

font-size:2.3rem;

}

}

@media(max-width:768px){

.nav-logo img{

height:75px !important;

width:auto !important;

margin:auto !important;

}

}

