---

/*### 2. The Styling Engine (`style.css`)
Save this file exactly as `style.css` in the same directory folder as your HTML file.

```css*/
:root {
    --bg-color: #080c14;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-border: rgba(255, 255, 255, 0.07);
    --primary: #2563eb;
    --primary-glow: rgba(37, 99, 235, 0.25);
    --accent: #10b981;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Ambient Lighting Details */
.ambient-glow {
    position: fixed;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 75%);
    top: -15vw;
    right: -15vw;
    z-index: -1;
    pointer-events: none;
}

.ambient-glow-2 {
    position: fixed;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 75%);
    bottom: -5vw;
    left: -5vw;
    z-index: -1;
    pointer-events: none;
}

/* Navigation Architecture */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 10%;
    background: rgba(8, 12, 20, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    margin-left: 2rem;
    transition: var(--transition);
    font-size: 0.95rem;
}

nav a:hover, nav a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Structural Components */
section {
    padding: 8rem 10% 4rem 10%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 3.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Glassmorphism Cards Layout */
.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.4);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Hero UI Core */
.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1.2;
}

.hero-badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -1.5px;
}

.hero-content h1 span {
    background: linear-gradient(90deg, #3b82f6, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 580px;
}

/* Fluid Adaptive Profile Image Bubble */
.hero-image-container {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    animation: bubbleMorph 12s ease-in-out infinite alternate;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

@keyframes bubbleMorph {
    0% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
    100% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
}

/* Button Elements */
.btn-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-4px);
}

/* Timeline Components */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--card-border);
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
}

.timeline-date {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.timeline-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.timeline-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Skill Blocks */
.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

/* Project Formatting */
.project-card {
    position: relative;
}

.project-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(255,255,255,0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    color: var(--text-muted);
}

.project-card h3 {
    margin-bottom: 0.8rem;
    padding-right: 3rem;
}

.project-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.project-tech span {
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(37, 99, 235, 0.08);
    color: #60a5fa;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

/* Contact Module & Fields */
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.contact-detail-item i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input, .contact-form textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--card-border);
    padding: 1rem;
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.15);
}

/* Footer Section */
footer {
    border-top: 1px solid var(--card-border);
    padding: 2rem 10%;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Adaptive Interface Rules */
@media (max-width: 968px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2.5rem;
    }
    .hero-content p {
        margin: 0 auto 2rem auto;
    }
    .btn-group {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
    header {
        padding: 1.2rem 5%;
    }
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #080c14;
        border-bottom: 1px solid var(--card-border);
        display: none;
        flex-direction: column;
        padding: 1.5rem 0;
    }
    nav.active {
        display: flex;
    }
    nav a {
        margin: 1rem 5%;
    }
    .menu-toggle {
        display: block;
    }
    section {
        padding: 6rem 5% 3rem 5%;
    }
}