* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
scroll-behavior: smooth;
scroll-padding-top: 90px;
}

body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg,#020617,#0f172a);
color: white;
}

/* CONTAINER */

.container {
max-width: 1100px;
margin: auto;
padding: 0 25px;
}

/* NAVBAR */

.navbar {
background: rgba(0,0,0,0.6);
position: sticky;
top: 0;
z-index: 100;
backdrop-filter: blur(8px);
}

.navbar .container {
display: flex;
justify-content: space-between;
align-items: center;
padding: 18px 0;
}

.logo {
font-size: 22px;
font-weight: 600;
}

.logo span {
color: #38bdf8;
}

.navbar ul {
display: flex;
gap: 24px;
list-style: none;
}

.navbar a {
color: white;
text-decoration: none;
font-size: 15px;
transition: 0.25s;
}

.navbar a:hover {
color: #38bdf8;
}

/* HERO */

.hero {
padding: 80px 0 60px;
}

.hero-flex {
display: flex;
align-items: center;
justify-content: space-between;
gap: 50px;
flex-wrap: wrap;
}

.hero-text {
flex: 1;
min-width: 300px;
}

.hero-text h1 {
font-size: 44px;
margin-bottom: 12px;
}

.hero-text span {
color: #38bdf8;
}

.hero-text h2 {
font-size: 24px;
margin-bottom: 15px;
}

.hero-desc {
font-size: 17px;
line-height: 1.7;
margin-bottom: 25px;
}

/* IMAGE */

.hero-image img {
width: 260px;
border-radius: 50%;
border: 5px solid #38bdf8;
object-fit: cover;
}

/* BUTTONS */

.buttons {
margin-top: 10px;
}

.btn {
background: #38bdf8;
padding: 12px 22px;
border-radius: 8px;
color: black;
text-decoration: none;
margin-right: 10px;
display: inline-block;
transition: 0.25s;
}

.btn:hover {
transform: scale(1.05);
}

.btn-outline {
border: 2px solid #38bdf8;
padding: 12px 22px;
border-radius: 8px;
color: #38bdf8;
text-decoration: none;
margin-right: 10px;
display: inline-block;
transition: 0.25s;
}

.btn-outline:hover {
background: #38bdf8;
color: black;
}

/* SECTIONS */

.section {
padding: 55px 0;
}

.section h2 {
font-size: 30px;
margin-bottom: 22px;
margin-top: 10px;
}

/* ABOUT */

.large-text {
font-size: 17px;
line-height: 1.85;
max-width: 900px;
}

/* SKILLS */

.skills-grid {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

.skills-grid span {
background: #1e293b;
padding: 9px 15px;
border-radius: 7px;
font-size: 14px;
}

/* PROJECTS */

.project-grid {
display: flex;
gap: 28px;
flex-wrap: wrap;
}

.project-card {
background: #1e293b;
padding: 22px;
border-radius: 10px;
width: 480px;
line-height: 1.7;
}

/* TIMELINE */

.timeline {
display: flex;
flex-direction: column;
gap: 18px;
}

.timeline-item {
background: #1e293b;
padding: 22px;
border-radius: 10px;
}

/* EDUCATION */

.education-card {
background: #1e293b;
padding: 22px;
border-radius: 10px;
}

/* AWARDS */

.awards-list {
background: #1e293b;
padding: 22px;
border-radius: 10px;
line-height: 2;
}

/* CONTACT */

.contact-links {
background: #1e293b;
padding: 22px;
border-radius: 10px;

display: flex;
flex-direction: column;
gap: 12px;
}

.contact-links a {
color: #38bdf8;
text-decoration: none;
font-size: 15px;
}

.contact-links a:hover {
text-decoration: underline;
}

/* MOBILE */

@media (max-width: 768px) {

.hero-flex {
flex-direction: column;
text-align: center;
}

.hero-image img {
margin-top: 20px;
}

.project-card {
width: 100%;
}

}