/* ========================= */
/* FILE: style.css */
/* ========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Cairo',sans-serif;
background:#0d0615;
color:white;
line-height:1.8;
overflow-x:hidden;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HERO */

.hero{
position:relative;
min-height:100vh;
display:flex;
align-items:center;
padding:80px 0;
background:
linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.8)),
url('https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?q=80&w=1600&auto=format&fit=crop');
background-size:cover;
background-position:center;
}

.hero-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.badge{
display:inline-block;
background:#FFD700;
color:black;
padding:10px 20px;
border-radius:30px;
font-weight:800;
margin-bottom:25px;
}

.hero h1{
font-size:72px;
font-weight:900;
margin-bottom:20px;
color:#fff;
}

.hero p{
font-size:22px;
color:#d1d5db;
max-width:600px;
margin-bottom:35px;
}

.hero-buttons{
display:flex;
gap:20px;
margin-bottom:50px;
}

.btn{
padding:16px 35px;
border-radius:14px;
font-size:18px;
font-weight:800;
text-decoration:none;
transition:.3s;
display:inline-block;
}

.gold-btn{
background:#FFD700;
color:black;
}

.gold-btn:hover{
transform:translateY(-5px);
}

.outline-btn{
border:2px solid #FFD700;
color:#FFD700;
}

.outline-btn:hover{
background:#FFD700;
color:black;
}

.hero-image{
text-align:center;
}

.hero-image img{
width:100%;
max-width:430px;
height:550px;
object-fit:cover;
border-radius:35px;
border:4px solid #7030A0;
box-shadow:0 0 60px rgba(112,48,160,.6);
}

/* STATS */

.stats{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.stat-box{
background:rgba(255,255,255,.05);
padding:25px;
border-radius:20px;
text-align:center;
min-width:150px;
backdrop-filter:blur(10px);
border:1px solid rgba(255,255,255,.08);
}

.stat-box h3{
font-size:34px;
color:#FFD700;
margin-bottom:8px;
}

/* SECTIONS */

section{
padding:110px 0;
}

.section-header{
text-align:center;
margin-bottom:70px;
}

.section-header span{
color:#FFD700;
font-size:20px;
font-weight:700;
}

.section-header h2{
font-size:52px;
margin-top:15px;
}

/* ABOUT */

.about-content{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.about-title span{
color:#FFD700;
font-weight:700;
font-size:20px;
}

.about-title h2{
font-size:48px;
margin-top:20px;
line-height:1.5;
}

.about-text{
background:#140b1d;
padding:40px;
border-radius:30px;
border:1px solid rgba(255,255,255,.08);
}

.about-text p{
font-size:20px;
color:#d1d5db;
}

/* SERVICES */

.services{
background:#09040f;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.service-card{
background:#140b1d;
padding:40px;
border-radius:30px;
transition:.3s;
border:1px solid rgba(255,255,255,.08);
}

.service-card:hover{
transform:translateY(-10px);
}

.icon{
width:70px;
height:70px;
background:#FFD700;
color:black;
display:flex;
align-items:center;
justify-content:center;
border-radius:20px;
font-size:30px;
font-weight:900;
margin-bottom:25px;
}

.service-card h3{
font-size:28px;
margin-bottom:20px;
color:#FFD700;
}

.service-card p{
color:#d1d5db;
font-size:18px;
}

/* WORKS */

.works-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.work-card{
background:linear-gradient(135deg,#1a1027,#0c0812);
padding:35px;
border-radius:28px;
border:1px solid rgba(255,215,0,.15);
transition:.3s;
}

.work-card:hover{
transform:scale(1.03);
}

.work-card h3{
font-size:28px;
margin-bottom:18px;
color:#FFD700;
}

.work-card p{
color:#d1d5db;
font-size:18px;
}

/* CONTACT */

.contact{
background:#09040f;
text-align:center;
}

.contact .section-header p{
margin-top:25px;
font-size:20px;
color:#d1d5db;
}

.contact-buttons{
display:flex;
justify-content:center;
gap:20px;
margin-top:40px;
flex-wrap:wrap;
}

/* FOOTER */

footer{
padding:35px;
text-align:center;
background:black;
color:#999;
font-size:16px;
}

/* RESPONSIVE */

@media(max-width:950px){

.hero-content,
.about-content{
grid-template-columns:1fr;
text-align:center;
}

.hero h1{
font-size:52px;
}

.hero p{
margin:auto auto 35px;
}

.hero-buttons{
justify-content:center;
}

.stats{
justify-content:center;
}

.section-header h2{
font-size:40px;
}

.about-title h2{
font-size:38px;
}

}

@media(max-width:600px){

.hero h1{
font-size:42px;
}

.hero p{
font-size:18px;
}

.section-header h2{
font-size:34px;
}

.about-title h2{
font-size:32px;
}

.hero-image img{
height:450px;
}

}