/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* GLOBAL */

body{
margin:0;
font-family:'Inter',sans-serif;
background:#020617;
color:white;
line-height:1.6;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

section{
padding:120px 0;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:#020617;
position:sticky;
top:0;
z-index:100;
}

.navbar a{
color:white;
text-decoration:none;
margin-left:30px;
font-weight:500;
transition:0.3s;
}

.navbar a:hover{
color:#6366f1;
}

/* HERO */

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

.hero-content{
max-width:850px;
z-index:2;
position:relative;
}

#three-hero{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:1;
pointer-events:none;
}

.hero h1{
font-size:70px;
font-weight:800;
margin-bottom:20px;
background:linear-gradient(90deg,#6366f1,#22d3ee);
-webkit-background-clip:text;
color:transparent;
}

.hero p{
font-size:22px;
opacity:0.85;
margin-bottom:40px;
}

.cta{
background:#6366f1;
padding:16px 40px;
border-radius:40px;
font-size:18px;
text-decoration:none;
color:white;
font-weight:600;
transition:0.3s;
}

.cta:hover{
background:#4f46e5;
}

/* TITLES */

.section-title{
font-size:56px;
text-align:center;
margin-bottom:10px;
}

.section-subtitle{
text-align:center;
opacity:0.7;
max-width:700px;
margin:auto;
margin-bottom:80px;
font-size:20px;
}

/* SERVICES */

.services{
background:#020617;
background-image:
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
background-size:40px 40px;
}

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

.service-card{
background:#0f172a;
border:1px solid rgba(255,255,255,0.05);
padding:40px;
border-radius:18px;
transition:0.3s;
}

.service-card:hover{
transform:translateY(-8px);
border-color:#6366f1;
}

.service-card h3{
font-size:26px;
margin:20px 0;
}

.service-card p{
opacity:0.75;
line-height:1.7;
}

.tag{
display:inline-block;
background:#111827;
padding:6px 14px;
border-radius:20px;
font-size:13px;
}

/* GRADIENT CARDS */

.highlight-blue{
background:linear-gradient(145deg,#0f172a,#083344);
}

.highlight-green{
background:linear-gradient(145deg,#0f172a,#052e16);
}

.highlight-purple{
background:linear-gradient(145deg,#0f172a,#2e1065);
}

/* ABOUT */

.about{
background:#020617;
}

.about-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

.about-text h2{
font-size:56px;
margin-bottom:20px;
}

.about-text span{
background:linear-gradient(90deg,#22d3ee,#4ade80);
-webkit-background-clip:text;
color:transparent;
}

.about-text p{
font-size:20px;
opacity:0.8;
margin-bottom:30px;
}

.about-text ul{
list-style:none;
padding:0;
}

.about-text li{
margin-bottom:12px;
opacity:0.8;
}

/* BUTTON */

.btn-primary{
display:inline-block;
margin-top:20px;
background:#06b6d4;
padding:14px 30px;
border-radius:10px;
font-weight:600;
cursor:pointer;
text-decoration:none;
color:white;
}

/* STATS */

.about-stats{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

.stat-card{
background:#0f172a;
border:1px solid rgba(255,255,255,0.05);
border-radius:18px;
padding:35px;
text-align:center;
}

.stat-card h3{
font-size:46px;
color:#22d3ee;
margin-bottom:5px;
}

.stat-card p{
opacity:0.7;
}

.feature-card{
grid-column:span 2;
background:linear-gradient(145deg,#022c22,#065f46);
padding:35px;
border-radius:18px;
}

/* ===============================
CASE STUDIES
=============================== */

.work-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.work-card{
border-radius:16px;
overflow:hidden;
border:1px solid rgba(255,255,255,0.05);
transition:0.3s;
}

.work-card:hover{
transform:translateY(-8px);
border-color:#6366f1;
}

.work-top{
height:160px;
padding:20px;
position:relative;
display:flex;
align-items:center;
justify-content:center;
}

.badge{
position:absolute;
top:15px;
left:15px;
background:#020617;
padding:5px 10px;
font-size:12px;
border-radius:6px;
}

.letter{
font-size:48px;
opacity:0.3;
}

.work-bottom{
padding:20px;
background:#020617;
}

.gradient-green{background:linear-gradient(135deg,#064e3b,#065f46);}
.gradient-purple{background:linear-gradient(135deg,#4c1d95,#6d28d9);}
.gradient-orange{background:linear-gradient(135deg,#92400e,#ea580c);}
.gradient-blue{background:linear-gradient(135deg,#0c4a6e,#0369a1);}
.gradient-red{background:linear-gradient(135deg,#7f1d1d,#dc2626);}
.gradient-green2{background:linear-gradient(135deg,#14532d,#16a34a);}

/* ===============================
TESTIMONIALS
=============================== */

.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:30px;
}

.testimonial-card{
padding:30px;
border-radius:16px;
}

.testimonial-card.green{background:linear-gradient(135deg,#064e3b,#065f46);}
.testimonial-card.purple{background:linear-gradient(135deg,#4c1d95,#6d28d9);}
.testimonial-card.blue{background:linear-gradient(135deg,#0c4a6e,#0369a1);}

.stars{
color:#4ade80;
}

.client{
display:flex;
align-items:center;
gap:12px;
}

.avatar{
width:36px;
height:36px;
background:#020617;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
}

/* ===============================
CONTACT SECTION
=============================== */

.contact-section{
padding:140px 20px;
text-align:center;

background-image:
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

background-size:40px 40px;
}

.contact-container{
max-width:720px;
margin:auto;
}

.contact-tag{
font-size:12px;
background:#022c22;
padding:6px 12px;
border-radius:4px;
letter-spacing:1px;
color:#34d399;
}

.contact-title{
font-size:48px;
margin:20px 0 10px;
}

.contact-sub{
opacity:0.7;
margin-bottom:40px;
}

.contact-box{
background:#020617;
border:1px solid rgba(255,255,255,0.08);
padding:35px;
border-radius:12px;
}

.project-form{
display:flex;
flex-direction:column;
gap:20px;
}

.form-row{
display:flex;
gap:20px;
}

.form-group{
display:flex;
flex-direction:column;
text-align:left;
flex:1;
}

.form-group label{
font-size:13px;
margin-bottom:6px;
opacity:0.7;
}

.form-group input,
.form-group select,
.form-group textarea{
background:#0f172a;
border:1px solid rgba(255,255,255,0.08);
padding:12px;
border-radius:6px;
color:white;
}

.send-btn{
margin-top:10px;
padding:14px;
background:#0f766e;
border:none;
border-radius:6px;
color:white;
font-weight:600;
cursor:pointer;
}

.send-btn:hover{
background:#0d5f59;
}

/* ===============================
FOOTER
=============================== */

.footer-modern{
background:#020617;
padding:80px 20px 30px;
border-top:1px solid rgba(255,255,255,0.08);
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:60px;
max-width:1200px;
margin:auto;
}

.footer-col h4{
font-size:13px;
margin-bottom:15px;
opacity:0.6;
}

.footer-col p{
opacity:0.7;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:8px;
}

.footer-col ul a{
color:white;
opacity:0.7;
text-decoration:none;
}

.footer-social a{
margin-right:10px;
opacity:0.7;
}

.footer-bottom{
text-align:center;
margin-top:60px;
opacity:0.6;
font-size:13px;
}

/* MOBILE */

@media(max-width:900px){

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

.navbar{
padding:20px;
flex-direction:column;
gap:10px;
}

.about-grid{
grid-template-columns:1fr;
}

.section-title{font-size:38px;}
.about-text h2{font-size:40px;}

.form-row{
flex-direction:column;
}

.contact-title{
font-size:36px;
}

}