/* =========================================
RESET
========================================= */

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

html {
scroll-behavior: smooth;
}

body {
background: #07182E;
color: #ffffff;
font-family: 'Segoe UI', sans-serif;
overflow-x: hidden;
line-height: 1.7;
}

/* =========================================
BACKGROUND EFFECTS
========================================= */

.bg-animated {
position: fixed;
inset: 0;
background:
radial-gradient(circle at 20% 20%, rgba(0, 119, 255, 0.15), transparent 40%),
radial-gradient(circle at 80% 40%, rgba(0, 255, 170, 0.12), transparent 40%),
radial-gradient(circle at 50% 90%, rgba(255, 0, 170, 0.10), transparent 40%);
z-index: -3;
}

.blob {
position: fixed;
border-radius: 50%;
filter: blur(80px);
opacity: .35;
z-index: -2;
animation: floatBlob 15s infinite ease-in-out;
}

.blob-1 {
width: 300px;
height: 300px;
background: #00c3ff;
top: 10%;
left: 5%;
}

.blob-2 {
width: 250px;
height: 250px;
background: #7b61ff;
right: 10%;
top: 40%;
}

.blob-3 {
width: 220px;
height: 220px;
background: #00ffb3;
bottom: 10%;
left: 40%;
}

@keyframes floatBlob {

```
0%,
100% {
    transform: translateY(0px);
}

50% {
    transform: translateY(-40px);
}
```

}

/* =========================================
NAVBAR
========================================= */

.navbar {
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
backdrop-filter: blur(15px);
background: rgba(7, 24, 46, 0.75);
border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-wrapper {
max-width: 1200px;
margin: auto;
padding: 18px 25px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo-text {
font-size: 1.4rem;
font-weight: 700;
}

.logo-accent {
color: #00c3ff;
}

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

.nav-link {
color: white;
text-decoration: none;
transition: .3s;
}

.nav-link:hover {
color: #00c3ff;
}

.btn-cv {
background: linear-gradient(135deg, #00c3ff, #0077ff);
color: white;
padding: 10px 18px;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
}

/* =========================================
HERO
========================================= */

.hero {
min-height: 100vh;
display: flex;
align-items: center;
padding: 120px 30px;
}

.hero-container {
max-width: 1200px;
margin: auto;
display: grid;
gap: 50px;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
align-items: center;
}

.hero-title {
font-size: 3.4rem;
margin-bottom: 15px;
}

.gradient-text {
background: linear-gradient(135deg, #00c3ff, #00ffb3);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.typing-container {
font-size: 1.3rem;
color: #00ffb3;
margin-bottom: 20px;
}

.hero-description {
max-width: 650px;
color: #d6d6d6;
}

.hero-buttons {
margin-top: 30px;
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.btn {
padding: 14px 24px;
border-radius: 12px;
text-decoration: none;
font-weight: 600;
}

.btn-primary {
background: linear-gradient(135deg, #00c3ff, #0077ff);
color: white;
}

.btn-secondary {
border: 1px solid rgba(255,255,255,.2);
color: white;
}

.hero-socials {
margin-top: 25px;
display: flex;
gap: 15px;
}

.social-icon {
text-decoration: none;
color: white;
padding: 10px 14px;
background: rgba(255,255,255,.05);
border-radius: 10px;
}

.profile-img {
width: 320px;
border-radius: 50%;
border: 5px solid rgba(255,255,255,.15);
}

.hero-image {
text-align: center;
}

/* =========================================
SECTIONS
========================================= */

section {
padding: 90px 20px;
}

.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-title {
font-size: 2.4rem;
margin-bottom: 10px;
}

.section-subtitle {
color: #b5b5b5;
}

/* =========================================
STATS
========================================= */

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

.stat-card {
background: rgba(255,255,255,.05);
backdrop-filter: blur(15px);
border-radius: 20px;
text-align: center;
padding: 30px;
}

.stat-card h2 {
font-size: 2.5rem;
color: #00c3ff;
}

/* =========================================
ABOUT
========================================= */

.about-container {
max-width: 1000px;
margin: auto;
}

.about-text {
background: rgba(255,255,255,.05);
padding: 30px;
border-radius: 20px;
}

.about-list {
margin-top: 20px;
}

.about-list li {
margin-bottom: 12px;
}

/* =========================================
SKILLS
========================================= */

.skills-container {
display: grid;
gap: 25px;
max-width: 1200px;
margin: auto;
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
}

.skill-card {
background: rgba(255,255,255,.05);
border-radius: 20px;
padding: 25px;
text-align: center;
transition: .3s;
}

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

.skill-icon {
font-size: 2rem;
margin-bottom: 15px;
}

/* =========================================
TIMELINE
========================================= */

.timeline {
max-width: 1000px;
margin: auto;
}

.timeline-item {
background: rgba(255,255,255,.05);
padding: 25px;
border-radius: 20px;
margin-bottom: 25px;
}

/* =========================================
PROJECTS
========================================= */

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

.project-card {
background: rgba(255,255,255,.05);
padding: 25px;
border-radius: 20px;
transition: .3s;
}

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

.project-card h3 {
color: #00c3ff;
margin-bottom: 15px;
}

.tech-tags {
display: flex;
gap: 10px;
flex-wrap: wrap;
margin-top: 15px;
}

.tech-tags span {
background: rgba(0,195,255,.15);
color: #00c3ff;
padding: 6px 12px;
border-radius: 20px;
font-size: .85rem;
}

/* =========================================
RESEARCH
========================================= */

.research-card {
max-width: 900px;
margin: auto;
background: rgba(255,255,255,.05);
padding: 35px;
border-radius: 20px;
}

/* =========================================
CERTIFICATIONS
========================================= */

.certification-grid {
display: grid;
gap: 25px;
max-width: 1100px;
margin: auto;
grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
}

.cert-card {
background: rgba(255,255,255,.05);
padding: 25px;
border-radius: 20px;
}

/* =========================================
ACHIEVEMENTS
========================================= */

.achievement-container {
display: grid;
gap: 25px;
max-width: 1200px;
margin: auto;
grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
}

.achievement-card {
background: rgba(255,255,255,.05);
padding: 25px;
border-radius: 20px;
}

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

.contact-container {
display: grid;
gap: 30px;
max-width: 1200px;
margin: auto;
grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
}

.contact-card,
.contact-form {
background: rgba(255,255,255,.05);
padding: 25px;
border-radius: 20px;
}

.contact-form input,
.contact-form textarea {
width: 100%;
padding: 14px;
margin-bottom: 15px;
border-radius: 10px;
border: none;
background: rgba(255,255,255,.08);
color: white;
}

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

.footer {
padding: 50px 20px;
text-align: center;
border-top: 1px solid rgba(255,255,255,.08);
}

.footer-links {
display: flex;
justify-content: center;
gap: 25px;
margin: 20px 0;
}

.footer-links a {
color: white;
text-decoration: none;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:768px) {

```
.nav-links {
    display: none;
}

.hero-title {
    font-size: 2.2rem;
}

.hero-container {
    text-align: center;
}

.profile-img {
    width: 250px;
}
```

}
