/* =====================
GLOBAL
===================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#050505;
color:#ffffff;
overflow-x:hidden;
line-height:1.7;
}

/* =====================
CONTAINER
===================== */

.container{
width:90%;
max-width:1400px;
margin:auto;
}

/* =====================
NAVBAR
===================== */

.navbar{
position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(0,0,0,.8);
backdrop-filter:blur(15px);
border-bottom:1px solid #1f1f1f;
}

.navbar .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:28px;
font-weight:800;
color:#00e5ff;
}

nav ul{
display:flex;
list-style:none;
gap:35px;
}

nav a{
text-decoration:none;
color:#fff;
font-weight:500;
transition:.3s;
}

nav a:hover,
nav a.active{
color:#00e5ff;
}

/* =====================
HERO
===================== */

.hero{
min-height:100vh;
display:flex;
align-items:center;
padding-top:120px;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:80px;
align-items:center;
}

.hero-tag{
display:inline-block;
padding:10px 18px;
background:#101010;
border:1px solid #1e1e1e;
border-radius:50px;
margin-bottom:20px;
color:#00e5ff;
}

.hero h1{
font-size:72px;
line-height:1.1;
margin-bottom:20px;
}

.gradient{
background:linear-gradient(
90deg,
#00e5ff,
#5b7fff
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
color:#bcbcbc;
font-size:18px;
max-width:650px;
}

.hero-buttons{
margin-top:35px;
display:flex;
gap:20px;
}

.btn-primary{
padding:16px 35px;
background:#00e5ff;
color:#000;
border-radius:12px;
font-weight:600;
text-decoration:none;
}

.btn-secondary{
padding:16px 35px;
border:1px solid #00e5ff;
color:#00e5ff;
border-radius:12px;
text-decoration:none;
}

.social-icons{
margin-top:35px;
display:flex;
gap:20px;
}

.social-icons a{
width:50px;
height:50px;
background:#111;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
color:#fff;
font-size:20px;
transition:.3s;
}

.social-icons a:hover{
background:#00e5ff;
color:#000;
}

.profile-card{
height:550px;
background:#101010;
border-radius:30px;
border:1px solid #1e1e1e;
display:flex;
justify-content:center;
align-items:center;
}

/* =====================
SECTION TITLE
===================== */

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:#00e5ff;
font-size:14px;
letter-spacing:2px;
}

.section-title h2{
font-size:48px;
margin-top:10px;
}

/* =====================
STATS
===================== */

.stats{
padding:80px 0;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

.stat-card{
background:#101010;
padding:35px;
text-align:center;
border-radius:20px;
border:1px solid #1f1f1f;
}

.stat-card h2{
font-size:42px;
color:#00e5ff;
}

/* =====================
ABOUT
===================== */
/* =====================
ABOUT SECTION PREMIUM
===================== */

.about-section{
padding:120px 0;
background:#050505;
}

.about-card{
background:linear-gradient(145deg,#0d0d0d,#161616);
border:1px solid #222;
border-radius:25px;
padding:50px;
margin-bottom:40px;
transition:.4s;
}

.about-card:hover{
border-color:#00e5ff;
box-shadow:0 0 30px rgba(0,229,255,.15);
}

.about-card h3{
font-size:38px;
margin-bottom:20px;
color:#fff;
}

.about-card p{
color:#cfcfcf;
line-height:1.9;
font-size:17px;
}

.skills-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:40px;
}

.skill-card{
background:linear-gradient(145deg,#0d0d0d,#161616);
border:1px solid #222;
border-radius:22px;
padding:30px;
min-height:300px;
transition:.4s;
}

.skill-card:hover{
transform:translateY(-8px);
border-color:#00e5ff;
box-shadow:0 0 25px rgba(0,229,255,.15);
}

.skill-card h3{
color:#00e5ff;
margin-bottom:18px;
font-size:22px;
}

.skill-card ul{
list-style:none;
padding:0;
}

.skill-card li{
color:#d6d6d6;
margin-bottom:12px;
padding-left:18px;
position:relative;
}

.skill-card li::before{
content:"●";
position:absolute;
left:0;
color:#00e5ff;
font-size:10px;
}

@media(max-width:1200px){

.skills-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.skills-grid{
grid-template-columns:1fr;
}

.about-card{
padding:30px;
}

.about-card h3{
font-size:28px;
}

}


/* =====================
EXPERTISE
===================== */

.expertise{
padding:120px 0;
}

.expertise-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.expert-card{
background:#101010;
padding:30px;
border-radius:20px;
border:1px solid #1f1f1f;
transition:.4s;
}

.expert-card:hover{
transform:translateY(-10px);
border-color:#00e5ff;
}

.expert-card h3{
margin-bottom:20px;
color:#00e5ff;
}

.expert-card ul{
padding-left:20px;
}

.expert-card li{
margin-bottom:10px;
}

/* =====================
RESULTS
===================== */

.results{
padding:120px 0;
}

.results-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.result-card{
background:#101010;
padding:40px;
border-radius:20px;
text-align:center;
border:1px solid #1f1f1f;
}

.result-card h3{
font-size:48px;
color:#00e5ff;
margin-bottom:15px;
}

/* =====================
SERVICES
===================== */

.service-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
}

.service-card{
background:#101010;
padding:35px;
border-radius:20px;
text-align:center;
border:1px solid #1f1f1f;
transition:.3s;
}

.service-card:hover{
transform:translateY(-8px);
border-color:#00e5ff;
}

/* =====================
TIMELINE
===================== */

.timeline{
max-width:900px;
margin:auto;
}

.timeline-item{
background:#101010;
padding:30px;
margin-bottom:25px;
border-radius:20px;
border-left:5px solid #00e5ff;
}

/* =====================
TOOLS
===================== */

.tool-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
}

.tool-grid div{
background:#101010;
padding:25px;
text-align:center;
border-radius:15px;
}

/* =====================
CONTACT
===================== */

.contact-form{
max-width:800px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea{
padding:18px;
background:#101010;
border:1px solid #1f1f1f;
color:#fff;
border-radius:10px;
}

.contact-form textarea{
height:180px;
resize:none;
}

.contact-form button{
padding:18px;
background:#00e5ff;
border:none;
font-weight:700;
cursor:pointer;
border-radius:10px;
}

.contact-info{
text-align:center;
margin-top:40px;
}

/* =====================
FOOTER
===================== */

footer{
padding:50px 0;
text-align:center;
border-top:1px solid #1f1f1f;
margin-top:100px;
}

/* =====================
MOBILE
===================== */

@media(max-width:991px){

.hero-grid,
.about-grid,
.expertise-grid,
.results-grid,
.stats-grid,
.service-grid,
.tool-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:42px;
}

.section-title h2{
font-size:32px;
}

nav ul{
display:none;
}

}