*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Segoe UI',sans-serif;
background:url('images/photo.jpg') center center/cover fixed;
color:#222;
line-height:1.7;
}

body::before{
content:'';
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(255,255,255,0.35);
backdrop-filter:blur(5px);
z-index:-1;
}

header{
position:fixed;
top:0;
width:100%;
background:rgba(255,255,255,0.2);
backdrop-filter:blur(15px);
padding:15px 40px;
z-index:1000;
}

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

nav h2{
font-size:28px;
color:#000;
}

nav ul{
display:flex;
list-style:none;
gap:25px;
}

nav a{
text-decoration:none;
color:#000;
font-weight:600;
transition:.3s;
}

nav a:hover

.hero{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.hero-content{
background:rgba(255,255,255,0.25);
backdrop-filter:blur(15px);
padding:50px;
border-radius:30px;
max-width:900px;
box-shadow:0 10px 40px rgba(0,0,0,0.15);
}

.hero h1{
font-size:70px;
margin-bottom:15px;
}

.hero h3{
font-size:24px;
margin-bottom:20px;
color:#444;
}

.hero p{
font-size:18px;
margin-bottom:30px;
}

.btn{
display:inline-block;
padding:14px 28px;
margin:10px;
background:#d4af37;
color:#fff;
text-decoration:none;
border-radius:50px;
font-weight:bold;
transition:.3s;
}

.btn:hover{
transform:translateY(-4px);
}

.secondary{
background:#222;
}

section{
padding:100px 10%;
}

section h2{
font-size:42px;
margin-bottom:25px;
text-align:center;
}

section h3{
margin-top:20px;
margin-bottom:10px;
}

ul{
margin-left:20px;
margin-top:10px;
}

.card{
background:rgba(255,255,255,0.3);
backdrop-filter:blur(12px);
padding:25px;
margin-top:20px;
border-radius:25px;
box-shadow:0 5px 25px rgba(0,0,0,0.1);
transition:.3s;
}

.card:hover{
transform:translateY(-8px);
}

#projects,
#services{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:25px;
}

footer{
text-align:center;
padding:40px;
background:rgba(255,255,255,0.25);
backdrop-filter:blur(10px);
margin-top:50px;
font-weight:600;
}

@media(max-width:768px){

.hero h1{
font-size:42px;
}

.hero h3{
font-size:18px;
}

nav{
flex-direction:column;
gap:10px;
}

nav ul{
flex-wrap:wrap;
justify-content:center;
}
}
