:root {
    /* Premium Color Palette */
    --bg-dark: #050508;
    --bg-card: rgba(22, 22, 33, 0.7);
    --primary: #00f2ff;
    --primary-glow: rgba(0, 242, 255, 0.3);
    --accent-warm: #ff8c00;
    --secondary: #7000ff;
    --secondary-glow: rgba(112, 0, 255, 0.3);
    --text-main: #f8f9fa;
    --text-dim: #b0b0cc;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-heavy: rgba(10, 10, 15, 0.85);
    
    /* Advanced Transitions */
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

[data-theme="warm"] {
    --primary: #ff8c00;
    --secondary: #ff0055;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

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

/* Background Animation */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #0c0c14 0%, var(--bg-dark) 100%);
}

.blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    animation: move 20s infinite alternate;
}

.blob-1 { top: -10%; left: -10%; background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%); }
.blob-2 { bottom: -10%; right: -10%; background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 70%); animation-delay: -5s; }
.blob-3 { top: 40%; left: 30%; background: radial-gradient(circle, rgba(255, 0, 242, 0.05) 0%, transparent 70%); animation-duration: 25s; }

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent-warm));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
}

nav .container {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.logo img {
    transition: var(--transition);
}

.logo:hover img {
    transform: rotate(360deg) scale(1.2);
    border-color: var(--secondary);
}

.logo:hover {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

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

.social-icons-nav {
    display: flex;
    gap: 1.2rem;
    margin-left: 0.5rem;
}

.social-icons-nav a {
    color: var(--text-dim);
    display: flex;
    align-items: center;
}

.social-icons-nav i {
    width: 20px;
    height: 20px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-hire-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle i {
    width: 28px;
    height: 28px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0 60px 0;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
}

.hero-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img .img-wrapper {
    width: 400px;
    height: 520px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    background: transparent;
    box-shadow: 0 50px 100px rgba(0,0,0,0.5), 
                0 0 40px var(--primary-glow);
    transform: perspective(2000px) rotateX(10deg) rotateY(-15deg) rotateZ(5deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-img:hover .img-wrapper {
    transform: perspective(2000px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(1.02);
}

.hero-img .img-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: var(--glass-border);
    border-radius: 10px;
    z-index: 30;
}

.hero-img .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%; /* More aggressive crop to force visibility */
    transition: transform 0.8s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.hero-img:hover .img-wrapper img {
    transform: scale(1.05);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.floating-badge {
    position: absolute;
    background: rgba(16, 16, 33, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 40;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    animation: float 5s ease-in-out infinite;
}

.badge-1 { top: 20%; left: -40px; animation-delay: 0s; }
.badge-2 { bottom: 15%; right: -40px; animation-delay: 2.5s; }

.floating-badge i {
    background: var(--glass);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

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

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 600px;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--primary-glow);
}

.btn-outline {
    border: 2px solid var(--glass-border);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(0, 242, 255, 0.05);
    box-shadow: 0 0 20px var(--primary-glow);
    text-shadow: 0 0 10px var(--primary-glow);
}

/* Sections */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 800;
}

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

.project-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 
                0 0 20px var(--primary-glow);
}

.project-img {
    height: 220px;
    background: #1e1e2d;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.project-img i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

/* Stacked Image Effect (Premium Version) */
.project-img-stack {
    height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    perspective: 1000px;
}

.project-img-stack::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
}

.project-agro .project-img-stack {
    background: radial-gradient(circle at center, #0a1a0a 0%, #050505 100%);
}

.project-agro .project-img-stack::before {
    background: #3ecf8e;
}

.project-taskora .project-img-stack {
    background: radial-gradient(circle at center, #0a0a1a 0%, #050505 100%);
}

.project-taskora .project-img-stack::before {
    background: #7000ff;
    opacity: 0.2;
}

.project-badr .project-img-stack {
    background: radial-gradient(circle at center, #1a1a2e 0%, #050505 100%);
}

.project-badr .project-img-stack::before {
    background: #ff8c00;
    opacity: 0.15;
}

/* Revamped Desktop Monitor Style */
.badr-desktop-wrapper {
    perspective: 1500px !important;
}

.desktop-monitor {
    position: absolute;
    width: 190px;
    height: 120px;
    background: #1a1a1a;
    border: 5px solid #2a2a2a;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
}

.monitor-main {
    z-index: 10;
    transform: translateZ(60px) translateY(-30px) rotateX(5deg);
    border-width: 6px;
}

.monitor-side {
    z-index: 5;
    opacity: 0.6;
}

.monitor-left {
    transform: translateX(-100px) translateY(30px) rotateY(20deg);
}

.monitor-right {
    transform: translateX(100px) translateY(30px) rotateY(-20deg);
}

.monitor-screen {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 3px;
    background: #000;
}

.monitor-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.monitor-base {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 14px;
    background: #2a2a2a;
    border-radius: 4px 4px 0 0;
}

.monitor-base::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #1a1a1a;
    border-radius: 10px;
}

/* Hover Effects - Triple Monitor Expansion */
.project-badr:hover .monitor-main {
    transform: translateZ(100px) translateY(-50px) rotateX(0deg);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(0,242,255,0.2);
}

.project-badr:hover .monitor-left {
    transform: translateX(-160px) translateY(50px) translateZ(30px) rotateY(30deg) scale(1);
    opacity: 0.95;
    border-color: rgba(0,242,255,0.4);
}

.project-badr:hover .monitor-right {
    transform: translateX(160px) translateY(50px) translateZ(30px) rotateY(-30deg) scale(1);
    opacity: 0.95;
    border-color: rgba(0,242,255,0.4);
}

.project-techzone .project-img-stack {
    background: radial-gradient(circle at center, #0a1525 0%, #050505 100%);
}

.project-techzone .project-img-stack::before {
    background: var(--primary);
    opacity: 0.15;
}

.stack-img {
    position: absolute;
    height: 85%;
    width: auto;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.img-1 { 
    z-index: 3; 
    transform: translateZ(30px) rotateY(-5deg); 
}

.img-2 { 
    z-index: 2; 
    transform: translateX(-60px) translateZ(0) rotateY(15deg) scale(0.9); 
    opacity: 0.6;
}

.img-3 { 
    z-index: 1; 
    transform: translateX(60px) translateZ(-30px) rotateY(-15deg) scale(0.85); 
    opacity: 0.4;
}

.project-card:hover .img-1 { 
    transform: translateZ(60px) translateY(-10px) rotateY(0deg); 
}

.project-card:hover .img-2 { 
    transform: translateX(-110px) translateZ(20px) rotateY(20deg) scale(0.95); 
    opacity: 0.9;
}

.project-card:hover .img-3 { 
    transform: translateX(110px) translateZ(20px) rotateY(-20deg) scale(0.95); 
    opacity: 0.9;
}

.project-content {
    padding: 2rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: var(--glass);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--primary);
    border: 1px solid var(--glass-border);
}

.project-content h3 {
    font-size: 1.3rem; /* Reduced from 1.5rem to fit on one line */
    margin-bottom: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* About Refactored Styles */
.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-dim);
    margin-bottom: 3.5rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    text-align: left;
    margin: 4rem 0;
}

.about-card h3 {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.25rem;
}

.edu-title { color: var(--primary); }
.exp-title { color: var(--accent-warm); }

.about-card-content {
    border-left: 2px solid var(--glass-border);
    padding: 0.5rem 0 0.5rem 1.5rem;
    transition: var(--transition);
}

.about-card:hover .about-card-content {
    border-left-color: var(--primary);
}

.about-card-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.institution, .exp-date {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
}

.exp-date { color: var(--accent-warm); }

.gpa, .exp-desc {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.stat-item .warm-text {
    color: var(--accent-warm);
}

.stat-item p {
    color: var(--text-dim);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Skills Section Upgrade */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

.skill-category {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
}

.skill-category:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.skill-category h3 {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--white);
}

.skill-category h3 i {
    color: var(--primary);
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: var(--glass);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: var(--transition-fast);
    cursor: default;
}

.skill-item i {
    font-size: 1.2rem;
    color: var(--text-dim);
    transition: var(--transition-fast);
}

.skill-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: var(--transition-fast);
}

.skill-item:hover {
    border-color: var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
}

.skill-item:hover i {
    color: var(--item-color, var(--primary));
    transform: scale(1.2);
}

.skill-item:hover span {
    color: var(--white);
    transform: translateX(5px);
}

/* Dynamic Hover Colors */
.skill-item[data-color="#00f2ff"] { --item-color: #00f2ff; }
.skill-item[data-color="#7000ff"] { --item-color: #7000ff; }
.skill-item[data-color="#ff8c00"] { --item-color: #ff8c00; }
.skill-item[data-color="#3ecf8e"] { --item-color: #3ecf8e; }
.skill-item[data-color="#f05032"] { --item-color: #f05032; }

/* Tech Marquee */
.tech-marquee {
    margin-top: 5rem;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
}

.tech-marquee::before,
.tech-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}

.tech-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.tech-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-size: 3rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    margin: 0 3rem;
    transition: var(--transition);
    display: inline-block;
}

.marquee-content span:hover {
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
    transform: scale(1.1) translateY(-10px);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 4rem;
    }
    
    .hero-img {
        order: -1;
    }

    .hero-img .img-wrapper {
        width: 100%;
        max-width: 320px;
        height: auto; /* Let it grow to fit the whole image */
        transform: none;
        box-shadow: 0 30px 60px rgba(0,0,0,0.5), 
                    0 0 20px var(--primary-glow);
    }

    .hero-img .img-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        object-position: center 40%;
    }

    .hero-img:hover .img-wrapper {
        transform: scale(1.05);
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 3.5rem;
    }
    
    .btn-group {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 3rem auto;
    }

    .stats-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0f0f1a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .social-icons-nav {
        margin-top: 2rem;
        margin-left: 0;
    }

    .social-icons-nav i {
        width: 28px;
        height: 28px;
    }

    .nav-hire-btn {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .about-text {
        font-size: 1rem;
    }

    .stat-item h3 {
        font-size: 2.2rem;
    }

    .floating-badge {
        padding: 0.8rem;
        border-radius: 15px;
    }

    .badge-1 { left: -10px; top: 10%; transform: scale(0.8); }
    .badge-2 { right: -10px; bottom: 10%; transform: scale(0.8); }
    
    .marquee-content span {
        font-size: 1.8rem;
        margin: 0 1.5rem;
    }

    .blob {
        width: 300px;
        height: 300px;
        filter: blur(60px);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .project-card {
        border-radius: 15px;
    }

    .skill-card {
        padding: 1.5rem;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
