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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ENHANCED BOKEH EFFECT - Background Layer */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255,107,53,0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 20%, rgba(247,147,30,0.12) 0%, transparent 30%),
        radial-gradient(circle at 40% 70%, rgba(255,107,53,0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 60%, rgba(247,147,30,0.08) 0%, transparent 25%),
        radial-gradient(circle at 15% 80%, rgba(255,107,53,0.12) 0%, transparent 28%),
        radial-gradient(circle at 60% 50%, rgba(247,147,30,0.06) 0%, transparent 35%);
    animation: bokehShift 20s ease-in-out infinite alternate;
}

@keyframes bokehShift {
    0% { opacity: 0.8; transform: scale(1) translateY(0); }
    50% { opacity: 1; transform: scale(1.05) translateY(-10px); }
    100% { opacity: 0.8; transform: scale(1) translateY(0); }
}

/* -------------------
/* PRELOADER ANIMATION */
/* ------------------- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s ease-in-out;
}

#intro-text {
    font-size: 4rem;
    font-weight: 900;
    opacity: 0;
    animation: introFade 0.5s ease 0.5s forwards, glow 2s ease-in-out infinite alternate;
    
    /* Gradient Text Styling */
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
}

@keyframes introFade {
    to { opacity: 1; }
}

@keyframes preloaderHide {
    to { transform: translateY(-100%); }
}

/* Header with Bokeh */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.7); 
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,107,53,0.2);
    animation: slideDown 0.5s ease;
    position: relative;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255,107,53,0.08) 0%, transparent 40%),
        radial-gradient(circle at 70% 50%, rgba(247,147,30,0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

/* --- NAVBAR LINK ANIMATION START --- */
.nav a {
    color: #e5e5e5;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px; 
}

.nav a:hover {
    color: #ff6b35; 
    transform: translateY(-2px); 
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0px; 
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0); 
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

.nav a:hover::after {
    transform: scaleX(1); 
}
/* --- NAVBAR LINK ANIMATION END --- */

/* Mobile Menu Icon */
.menu-toggle {
    display: none; 
    background: none;
    border: none;
    color: #ff6b35;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 101;
}

.menu-toggle:hover {
    color: #f7931e;
}

/* Hero Section with Enhanced Bokeh */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center; 
    padding: 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(255,107,53,0.25) 0%, transparent 20%),
        radial-gradient(circle at 85% 30%, rgba(247,147,30,0.2) 0%, transparent 25%),
        radial-gradient(circle at 50% 60%, rgba(255,107,53,0.15) 0%, transparent 30%),
        radial-gradient(circle at 30% 80%, rgba(247,147,30,0.18) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(255,107,53,0.12) 0%, transparent 28%);
    pointer-events: none;
    z-index: 0;
    animation: heroBokeh 15s ease-in-out infinite alternate;
}

@keyframes heroBokeh {
    0% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-20px) scale(1.1); opacity: 0.8; }
    100% { transform: translateY(0) scale(1); opacity: 0.6; }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ff6b35;
    border-radius: 50%;
    animation: float 6s infinite ease-in-out;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-50px) translateX(30px); }
}

.hero-content {
    max-width: 900px;
    width: 100%; 
    z-index: 1;
    animation: fadeInUp 1s ease;
    background: rgba(10, 10, 10, 0.3); 
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,107,53,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(247,147,30,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-greeting {
    font-size: 1.2rem;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    animation: fadeIn 1s ease 0.2s both;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeIn 1s ease 0.4s both;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    animation: fadeIn 1s ease 0.6s both;
}

.typing-text {
    border-right: 3px solid #ff6b35;
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 50% { border-color: #ff6b35; }
    51%, 100% { border-color: transparent; }
}

.hero-description {
    font-size: 1.1rem;
    color: #b3b3b3;
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeIn 1s ease 0.8s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contact-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 1s both;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b3b3b3;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.tech-stack {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    animation: fadeIn 1s ease 1.2s both;
}

.tech-pill {
    background: linear-gradient(135deg, rgba(255,107,53,0.2), rgba(247,147,30,0.2));
    border: 1px solid rgba(255,107,53,0.4);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: popIn 0.5s ease backwards;
}

.tech-pill:nth-child(1) { animation-delay: 1.3s; }
.tech-pill:nth-child(2) { animation-delay: 1.4s; }
.tech-pill:nth-child(3) { animation-delay: 1.5s; }
.tech-pill:nth-child(4) { animation-delay: 1.6s; }
.tech-pill:nth-child(5) { animation-delay: 1.7s; }
.tech-pill:nth-child(6) { animation-delay: 1.8s; }

@keyframes popIn {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

.tech-pill:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 1.4s both;
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 4px 15px rgba(255,107,53,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.6);
}

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

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Content Section with Bokeh */
.content-section {
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    position: relative;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255,107,53,0.08) 0%, transparent 35%),
        radial-gradient(circle at 90% 30%, rgba(247,147,30,0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(255,107,53,0.07) 0%, transparent 35%);
    pointer-events: none;
    z-index: 0;
    animation: sectionBokeh 18s ease-in-out infinite alternate;
}

@keyframes sectionBokeh {
    0% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 0.7; transform: translateX(10px); }
    100% { opacity: 0.5; transform: translateX(0); }
}

.content-section > * {
    position: relative;
    z-index: 1;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: linear-gradient(135deg, rgba(10,10,10, 0.85) 0%, rgba(20,20,20, 0.85) 100%);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,107,53,0.2);
    position: relative;
    animation: cardAppear 0.6s ease backwards;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,107,53,0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(247,147,30,0.08) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }
.project-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardAppear {
    from { opacity: 0; transform: translateY(30px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255,107,53,0.3);
    border-color: #ff6b35;
}

.card-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.card-desc {
    color: #b3b3b3;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-tech {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tech-tag {
    background: rgba(255,107,53,0.2);
    color: #ff6b35;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    border: 1px solid rgba(255,107,53,0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; 
    z-index: 1000;
    transition: background 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.9); 
}

.modal-content {
    background: linear-gradient(135deg, rgba(10,10,10, 0.95) 0%, rgba(20,20,20, 0.95) 100%);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 3rem;
    position: relative;
    border: 2px solid rgba(255,107,53,0.3);
    backdrop-filter: blur(20px);
    animation: modalPopIn 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.modal-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255,107,53,0.15) 0%, transparent 45%),
        radial-gradient(circle at 75% 75%, rgba(247,147,30,0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255,107,53,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.modal-content > * {
    position: relative;
    z-index: 1;
}

/* NEW MODAL ANIMATION KEYFRAMES */
@keyframes modalPopIn {
    0% { opacity: 0; transform: scale(0.7); }
    100% { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255,107,53,0.2);
    border: none;
    color: #ff6b35;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #ff6b35;
    color: white;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.modal-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b3b3b3;
}

.modal-description {
    line-height: 1.8;
    color: #e5e5e5;
    margin-bottom: 2rem;
}

.modal-features {
    margin-bottom: 2rem;
}

.modal-features h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.modal-features ul {
    list-style: none;
    padding: 0;
}

.modal-features li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #b3b3b3;
    line-height: 1.6;
}

.modal-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

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

/* Experience Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #ff6b35, #f7931e);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
    animation: slideInLeft 0.6s ease backwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #ff6b35;
    border-radius: 50%;
    border: 4px solid #0a0a0a;
    box-shadow: 0 0 20px rgba(255,107,53,0.5);
}

.timeline-content {
    background: linear-gradient(135deg, rgba(10,10,10, 0.85) 0%, rgba(20,20,20, 0.85) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,107,53,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,107,53,0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(247,147,30,0.08) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-content:hover::before {
    opacity: 1;
}

.timeline-content:hover {
    border-color: #ff6b35;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.2);
}

.timeline-date {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-org {
    color: #f7931e;
    margin-bottom: 1rem;
}

.timeline-desc {
    color: #b3b3b3;
    line-height: 1.8;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-card {
    background: linear-gradient(135deg, rgba(10,10,10, 0.85) 0%, rgba(20,20,20, 0.85) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,107,53,0.2);
    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease backwards;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,107,53,0.12) 0%, transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(247,147,30,0.1) 0%, transparent 55%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-card:hover::before {
    opacity: 1;
}

.skill-card:nth-child(1) { animation-delay: 0.1s; }
.skill-card:nth-child(2) { animation-delay: 0.2s; }
.skill-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.skill-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,107,53,0.2);
}

.skill-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skill-item {
    background: rgba(255,107,53,0.1);
    color: #e5e5e5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255,107,53,0.3);
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(255,107,53,0.3);
    transform: translateY(-2px);
}

/* Footer with Bokeh */
.footer {
    background: linear-gradient(135deg, rgba(15,15,15, 0.9) 0%, rgba(26,26,26, 0.9) 100%);
    padding: 3rem 4rem;
    border-top: 2px solid #ff6b35;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,107,53,0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(247,147,30,0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 50%, rgba(255,107,53,0.09) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,107,53,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,107,53,0.3);
    font-size: 1.2rem;
}

.social-link:hover {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255,107,53,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    /* General Mobile Adjustments */
    body { font-size: 14px; }
    .header { padding: 1rem 1rem; }
    
    /* Mobile Navbar Setup */
    .nav {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background: #0a0a0a;
        padding: 1rem 0;
        border-top: 1px solid rgba(255,107,53,0.2);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .nav.active {
        display: flex;
    }

    .nav li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .nav a {
        display: block; 
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
        color: #e5e5e5; 
        transform: none; 
    }

    .nav a:hover {
         color: #ff6b35; 
    }

    .nav a::after {
        content: none; 
    }

    .menu-toggle {
        display: block; 
    }

    /* Hero Section Mobile */
    .hero { 
        padding: 8rem 1rem 2rem 1rem; 
        text-align: center; 
        align-items: flex-start;
        justify-content: center;
    }
    
    .hero-content { 
        max-width: 100%; 
        align-items: center; 
        padding: 0; 
        background: none; 
    }

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

    .hero-subtitle { 
        font-size: 1.4rem; 
        min-height: 40px; 
        justify-content: center; 
    }

    .contact-info { 
        justify-content: center; 
        gap: 1rem; 
    }

    .hero-buttons { 
        justify-content: center; 
    }

    /* Content Sections Mobile */
    .content-section { padding: 4rem 1rem; }
    .section-title { font-size: 2rem; }
    .projects-grid { grid-template-columns: 1fr; }
    .skills-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 10px; }
    .timeline-item { padding-left: 50px; }
    .timeline-item::before { left: 0px; width: 15px; height: 15px; }

    /* Modal Mobile */
    .modal-content { padding: 2rem 1.5rem; }
    .modal-title { font-size: 1.8rem; }
}