:root {
    --primary: #00ffcc;
    --primary-dark: #00cc99;
    --secondary: #7b2cbf;
    --accent: #ff006e;
    --bg: #0b1120;
    --bg-gradient: linear-gradient(135deg, #0b1120 0%, #1a1a2e 50%, #16213e 100%);
    --card-bg: rgba(30, 41, 59, 0.6);
    --card-glass: rgba(255, 255, 255, 0.05);
    --text: #ffffff;
    --text-muted: #94a3b8;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-primary: 0 0 30px rgba(0, 255, 204, 0.3);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(123, 44, 191, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 110, 0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    padding: 20px 0;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 204, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(11, 17, 32, 0.98);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { 
    font-size: 1.8rem; 
    font-weight: 700; 
    text-decoration: none; 
    color: white;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.logo span { 
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.nav-links { display: flex; list-style: none; gap: 35px; }
.nav-links a { 
    text-decoration: none; 
    color: var(--text-muted); 
    font-weight: 500; 
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle { 
    display: none; 
    cursor: pointer; 
    font-size: 1.5rem; 
    color: var(--primary);
    transition: var(--transition);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* Hero Section */
.hero { 
    padding: 180px 0 120px; 
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 204, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, -50px) scale(1.1); }
    66% { transform: translate(20px, 30px) scale(0.9); }
}

.hero-grid { 
    display: flex; 
    align-items: center; 
    gap: 60px; 
}

.hero-text { 
    flex: 1; 
    animation: slideInLeft 1s ease-out;
}

.hero-img { 
    flex: 1; 
    display: flex; 
    justify-content: center;
    animation: slideInRight 1s ease-out;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge { 
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.2), rgba(123, 44, 191, 0.2));
    color: var(--primary); 
    padding: 8px 20px; 
    border-radius: 50px; 
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 204, 0.3);
    display: inline-block;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 204, 0.2); }
    50% { box-shadow: 0 0 30px rgba(0, 255, 204, 0.4); }
}

h1 { 
    font-size: 3.8rem; 
    margin: 20px 0; 
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 5s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.highlight { 
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    animation: underlineGrow 0.8s ease-out forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

.type-container { 
    font-size: 1.6rem; 
    color: var(--text-muted); 
    margin-bottom: 25px; 
    min-height: 1.6em;
    font-weight: 500;
}

#typewriter { 
    color: var(--primary); 
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    position: relative;
}

#typewriter::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: var(--primary);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 550px;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

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

.hero-btns { 
    display: flex; 
    gap: 20px; 
    margin-top: 35px;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.btn { 
    padding: 15px 35px; 
    border-radius: 12px; 
    text-decoration: none; 
    font-weight: 600; 
    transition: var(--transition); 
    display: inline-block; 
    border: none; 
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary { 
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover { 
    box-shadow: 0 15px 40px rgba(0, 255, 204, 0.5);
    transform: translateY(-5px);
}

.btn-secondary { 
    background: transparent; 
    border: 2px solid var(--primary); 
    color: var(--primary);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: var(--transition);
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover { 
    color: var(--bg);
    transform: translateY(-5px);
}

.social-links { 
    display: flex; 
    gap: 25px; 
    margin-top: 35px;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

.social-links a { 
    font-size: 1.6rem; 
    color: var(--text-muted); 
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--card-glass);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover { 
    color: var(--primary);
    background: rgba(0, 255, 204, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 255, 204, 0.3);
}

.blob-wrapper img {
    width: 400px; 
    height: 400px;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    border: 4px solid var(--primary);
    box-shadow: 
        0 0 40px rgba(0, 255, 204, 0.4),
        inset 0 0 40px rgba(0, 255, 204, 0.1);
    animation: morphing 8s ease-in-out infinite, floatImage 6s ease-in-out infinite;
    position: relative;
}

.blob-wrapper img::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: inherit;
    border: 2px solid var(--primary);
    opacity: 0.5;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes morphing {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%; }
    50% { border-radius: 30% 70% 50% 50% / 30% 50% 50% 70%; }
    75% { border-radius: 70% 30% 70% 30% / 70% 30% 70% 30%; }
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Sections */
.section-title { 
    text-align: center; 
    font-size: 2.8rem; 
    margin-bottom: 60px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-title span { 
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

/* Skills */
.skills { 
    padding: 100px 0;
    position: relative;
}

.skills-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 25px; 
}

.skill-card { 
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.4));
    padding: 35px 25px; 
    text-align: center; 
    border-radius: 20px; 
    transition: var(--transition); 
    border: 1px solid rgba(0, 255, 204, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.1), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.skill-card i { 
    font-size: 3rem; 
    color: var(--primary); 
    margin-bottom: 15px;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(0, 255, 204, 0.5));
}

.skill-card p {
    font-weight: 600;
    color: var(--text);
    position: relative;
    z-index: 1;
}

.skill-card:hover { 
    transform: translateY(-15px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 255, 204, 0.2);
}

.skill-card:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Projects */
.projects { 
    padding: 100px 0; 
    background: rgba(0,0,0,0.2);
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(123, 44, 191, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.projects .container {
    position: relative;
    z-index: 1;
}

.projects-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 35px; 
}

.project-card { 
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.6));
    border-radius: 25px; 
    overflow: hidden; 
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    position: relative;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 204, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

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

.project-img { 
    position: relative;
    overflow: hidden;
}

.project-img img { 
    width: 100%; 
    height: 240px; 
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.project-info { 
    padding: 30px;
    position: relative;
    z-index: 2;
}

.p-link { 
    color: var(--primary); 
    text-decoration: none; 
    font-weight: 600; 
    display: block; 
    margin-top: 15px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.p-link:hover {
    color: var(--accent);
    transform: translateX(10px);
}

.project-card:hover { 
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 255, 204, 0.15);
    border-color: rgba(0, 255, 204, 0.3);
}

/* Contact */
.contact {
    padding: 100px 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.contact-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    gap: 60px; 
}

.c-card { 
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(30, 41, 59, 0.4));
    padding: 25px; 
    border-radius: 16px; 
    display: flex; 
    align-items: center; 
    gap: 20px; 
    margin-bottom: 25px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.05);
}

.c-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.15);
}

.c-card i { 
    font-size: 1.8rem; 
    color: var(--primary);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 255, 204, 0.1);
    border-radius: 12px;
}

.c-card h4 {
    color: var(--text);
    font-weight: 600;
    margin-bottom: 5px;
}

.c-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-form input, 
.contact-form textarea {
    width: 100%; 
    padding: 18px 20px; 
    background: rgba(30, 41, 59, 0.6); 
    border: 2px solid rgba(255,255,255,0.05);
    border-radius: 12px; 
    color: white; 
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.2);
    background: rgba(30, 41, 59, 0.8);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-muted);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

#status-message {
    margin-top: 15px;
    font-weight: 600;
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

/* Footer */
footer { 
    text-align: center; 
    padding: 50px 0; 
    color: var(--text-muted); 
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(0,0,0,0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

footer p {
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-grid { 
        flex-direction: column-reverse; 
        text-align: center; 
        gap: 40px;
    }
    .hero-btns { 
        justify-content: center; 
        flex-wrap: wrap;
    }
    .social-links { 
        justify-content: center; 
    }
    h1 { 
        font-size: clamp(2rem, 5vw, 2.5rem); 
    }
    .contact-wrapper { 
        grid-template-columns: 1fr; 
    }
    .blob-wrapper img {
        width: clamp(250px, 50vw, 300px);
        height: clamp(250px, 50vw, 300px);
    }
    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.2rem);
    }
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }
    .hero-text p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .menu-toggle { 
        display: block; 
    }
    .nav-links {
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        width: 100%; 
        background: rgba(11, 17, 32, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column; 
        padding: 30px 20px; 
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        gap: 20px;
    }
    .nav-links.active { 
        display: flex; 
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links a {
        padding: 10px 0;
        display: block;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .blob-wrapper img { 
        width: clamp(220px, 45vw, 260px); 
        height: clamp(220px, 45vw, 260px); 
    }
    
    h1 {
        font-size: clamp(1.8rem, 4.5vw, 2rem);
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .preview-stack { 
        height: 220px; 
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .c-card {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-grid {
        gap: 25px;
    }
    
    .blob-wrapper img {
        width: clamp(200px, 40vw, 220px);
        height: clamp(200px, 40vw, 220px);
    }
    
    h1 {
        font-size: clamp(1.5rem, 4vw, 1.8rem);
    }
    
    .type-container {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .skill-card {
        padding: 25px 20px;
    }
    
    .skill-card i {
        font-size: 2.5rem;
    }
    
    .project-img img {
        height: 200px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .c-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
        margin-bottom: 40px;
    }
    
    footer {
        padding: 40px 0;
    }
    
    .hero-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .badge {
        padding: 6px 16px;
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    h1 {
        font-size: 1.4rem;
    }
    
    .type-container {
        font-size: 0.9rem;
    }
    
    .hero-text p {
        font-size: 0.85rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .skill-card {
        padding: 20px 15px;
    }
    
    .skill-card i {
        font-size: 2rem;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
}

/* Projects Preview - Overlapping Effect */
.projects-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

.preview-stack {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 350px;
    margin: 0 auto;
}

.preview-stack img {
    position: absolute;
    width: 80%;
    border-radius: 15px;
    border: 4px solid var(--card-bg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.img-left {
    left: 0;
    top: 0;
    z-index: 1;
    transform: rotate(-5deg);
}

.img-right {
    right: 0;
    bottom: 0;
    z-index: 2;
    transform: rotate(5deg);
}

.preview-stack:hover .img-left {
    transform: rotate(-2deg) translate(-20px, -10px);
}

.preview-stack:hover .img-right {
    transform: rotate(2deg) translate(20px, 10px);
}

.all-projects-btn {
    font-size: 1.1rem;
    padding: 15px 40px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .preview-stack { 
        height: 250px; 
    }
    
    .preview-stack img {
        width: 70%;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-dark), var(--primary));
}

/* Selection Styling */
::selection {
    background: var(--primary);
    color: var(--bg);
}