/* Modern Variables */
:root {
    /* Core Colors */
    --primary-dark: #000000;
    --secondary-dark: #111111;
    --accent-color: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    
    /* Glass Effect Colors */
    --glass-bg: rgba(0, 0, 0, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(120deg, #222222 0%, #000000 100%);
    --gradient-text: linear-gradient(45deg, #ffffff, #888888);
    --gradient-bg: linear-gradient(45deg, #111111 0%, #000000 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(0,0,0,0.9) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

/* Custom cursor */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: opacity 0.3s ease-in-out;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-primary);
    transition: all 0.2s ease-out;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Section styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 1rem auto;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

/* Hero Background */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(96, 165, 250, 0.2), rgba(124, 58, 237, 0.2));
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(45deg, rgba(236, 72, 153, 0.2), rgba(124, 58, 237, 0.2));
    bottom: -150px;
    left: -100px;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Name Badge */
.name-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.name-badge::before {
    content: "pretty pls :3";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.name-badge:hover::before {
    opacity: 1;
    visibility: visible;
    top: -45px;
}

.name-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e; /* Green color */
    border-radius: 50%;
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
}

/* Hero Text Styles */
.hero-text-wrapper {
    margin-bottom: 2rem;
    text-align: center;
}

/* Name Badge */
.name-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.name-badge::before {
    content: "pretty pls :3";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.name-badge:hover::before {
    opacity: 1;
    visibility: visible;
    top: -45px;
}

.name-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.9);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e; /* Green color */
    border-radius: 50%;
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
}

/* Hero Text Styles */
.hero-text-wrapper {
    margin-bottom: 2rem;
    text-align: center;
}

/* Update hero name styles */
.hero-name {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    position: relative;
}

/* Update gradient-text styles - remove hover effects */
.gradient-text {
    background: linear-gradient(to right, #FFFFFF, #A5A5A5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 8s ease infinite;
    display: inline-block;
}

/* Remove hover styles */
.gradient-text:hover {
    /* Remove all hover effects */
    font-family: inherit;
    transform: none;
    letter-spacing: normal;
    filter: none;
}

.title-line {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.gradient-accent {
    background: linear-gradient(45deg, #60A5FA, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.separator {
    margin: 0 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-text-wrapper {
        padding: 0 1rem;
    }

    .hero-name {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 0.5rem;
    }

    .title-line {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: block;
        margin: 0.25rem 0;
    }
}

/* Animations */
@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Description */
.hero-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 550px;
    margin: 1.5rem auto;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Skill Items */
.skill-item {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 6rem 1rem 2rem;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        margin-top: 2rem;
    }

    .hero-name {
        font-size: clamp(2.5rem, 8vw, 4rem);
        line-height: 1.1;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .title-line {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    /* Name Badge */
    .name-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        margin: 0 auto 1.5rem;
        max-width: fit-content;
    }

    /* Skill Showcase */
    .skill-showcase {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0;
        padding: 0 0.5rem;
    }

    .skill-item {
        width: 100%;
        padding: 0.75rem;
        font-size: 0.875rem;
        justify-content: center;
    }

    /* CTA Buttons */
    .cta-group {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        width: 100%;
    }

    .primary-btn, 
    .secondary-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    /* Background Effects */
    .gradient-orb {
        opacity: 0.5;
    }

    .orb-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -50px;
    }

    .orb-2 {
        width: 250px;
        height: 250px;
        bottom: -75px;
        left: -50px;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .hero-name {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .title-line {
        font-size: clamp(1rem, 3.5vw, 1.2rem);
    }

    .hero-description {
        font-size: 0.875rem;
        padding: 0 0.5rem;
    }

    .name-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.875rem;
    }

    .skill-item {
        padding: 0.625rem;
        font-size: 0.8125rem;
    }

    .primary-btn, 
    .secondary-btn {
        padding: 0.75rem 1rem;
        font-size: 0.8125rem;
    }
}

/* Landscape mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 4rem 1rem 1rem;
    }

    .hero-content {
        margin-top: 1rem;
    }

    .skill-showcase {
        margin: 1rem 0;
    }

    .cta-group {
        margin-top: 1rem;
    }

    .name-badge {
        margin-bottom: 1rem;
    }
}

/* Fix for very tall mobile screens */
@media (min-height: 800px) {
    .hero {
        justify-content: center;
    }

    .hero-content {
        margin-top: 0;
    }
}

/* Navigation Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }

    .nav-container {
        width: 100%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .nav-links.show {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.25rem;
    }
}

/* Connect Section Responsive */
@media (max-width: 768px) {
    .connect-section {
        padding: 4rem 1rem;
    }

    .connect-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .connect-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-buttons {
        gap: 1rem;
    }

    .contact-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* Skill Carousel */
.skill-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.skill-item i {
    font-size: 1.5rem;
    color: #60A5FA;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.primary-btn, .secondary-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-btn {
    background: #3B82F6;
    color: white;
}

.primary-btn:hover {
    background: #2563EB;
    transform: translateY(-2px);
}

.secondary-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes scroll {
    0% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Skills Showcase */
.skills-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.skill-item.active {
    opacity: 1;
    transform: translateY(0);
}

.skill-icon {
    font-size: 4rem;
}

.skill-text {
    font-size: 1.5rem;
    color: #e5e7eb;
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 1.5rem;
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* 3D Card Effect */
.experience-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.experience-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
}

/* Floating animation for skill cards */
.skill-card {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6); }
    100% { transform: translateY(0px); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--text-secondary);
    border-radius: 5px;
}

/* Advanced hover effects */
.nav-links li a {
    position: relative;
    overflow: hidden;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Video background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 25, 47, 0.9) 0%,
        rgba(10, 25, 47, 0.7) 100%
    );
    z-index: 2;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

/* Portfolio section */
.portfolio-section {
    padding: 8rem 2rem;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    background: none;
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.filter-btn.active::after,
.filter-btn:hover::after {
    width: 100%;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Modern Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    max-width: 320px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

/* Footer Sections */
.footer-heading {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: white;
    transform: translateX(5px);
}

/* Contact Section */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-email,
.footer-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-email:hover,
.footer-phone:hover {
    color: white;
}

.footer-cta {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(45deg, #60A5FA, #7C3AED);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.copyright {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copyright .fa-heart {
    color: #ec4899;
}

.footer-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-meta a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-meta a:hover {
    color: white;
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-meta {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Modern Navbar */
.navbar {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 1rem 2rem;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    background: linear-gradient(45deg, #FF3366, #FF9933);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.nav-text {
    transition: transform 0.3s ease;
}

.nav-dot {
    width: 4px;
    height: 4px;
    background: transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover .nav-text {
    transform: translateY(-2px);
}

.nav-link:hover .nav-dot {
    background: #FF3366;
    transform: scale(1.5);
}

.theme-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.theme-toggle:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .navbar {
        width: 100%;
        padding: 1rem;
        top: 0;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.95);
        position: fixed;
    }

    .nav-container {
        position: relative;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 98;
        padding: 5rem 2rem;
    }

    .nav-links.show {
        display: flex;
        animation: fadeIn 0.3s ease forwards;
    }

    .nav-link {
        font-size: 2rem;
        padding: 1rem;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        width: 100%;
        text-align: center;
    }

    .nav-links.show .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-menu-button {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 99;
        margin-left: auto;
    }

    .mobile-menu-button span {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: white;
        transition: all 0.3s ease;
        left: 0;
    }

    .mobile-menu-button span:nth-child(1) { top: 0; }
    .mobile-menu-button span:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .mobile-menu-button span:nth-child(3) { bottom: 0; }

    /* Hamburger Animation */
    .mobile-menu-button.active span:nth-child(1) {
        transform: rotate(45deg);
        top: 9px;
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 9px;
    }

    /* Theme toggle in mobile menu */
    .theme-toggle {
        margin-top: 2rem;
        padding: 1rem;
        font-size: 1.5rem;
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    /* Animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .hero-name {
        font-size: 3rem;
    }

    .title-line {
        font-size: 2rem;
    }

    .connect-title {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

/* Add hamburger menu button */
.mobile-menu-button {
    display: none;
    position: relative;
    width: 30px;
    height: 20px;
}

.mobile-menu-button span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.mobile-menu-button span:nth-child(1) { top: 0; }
.mobile-menu-button span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-button span:nth-child(3) { bottom: 0; }

/* Hamburger animation */
.mobile-menu-button.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-button.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Sections */
section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -1px;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, var(--text-primary), var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Experience Cards */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
}

.experience-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.95) 100%);
}

.experience-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.skill-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

input, textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    color: var(--text-primary);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--text-primary);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

button[type="submit"] {
    width: 100%;
    padding: 1rem;
    background: var(--text-primary);
    color: var(--primary-dark);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

button[type="submit"]:hover {
    background: var(--text-secondary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }

    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-video {
        display: none;
    }
    
    .hero-background {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-group {
        flex-direction: column;
        padding: 0 2rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .experience-grid, .skills-grid {
        padding: 1rem;
    }

    .profile-img {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 3rem 1rem;
    }
}

/* Update cursor styles */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: opacity 0.3s ease-in-out;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--text-primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--text-primary);
    transition: all 0.2s ease-out;
}

/* Add cursor styles for interactive elements */
a, 
button, 
.experience-card,
.skill-card,
.portfolio-item,
.nav-links li a,
.social-icons a {
    cursor: pointer;
}

/* Add hover state for custom cursor */
.cursor-hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: transparent;
}

/* Hide custom cursor on mobile */
@media (max-width: 768px) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* Mobile-friendly navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: var(--gradient-primary);
    padding: 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
}

.mobile-nav.active {
    right: 0;
}

/* Glass morphism cards */
.project-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.project-card:hover {
    background: var(--gradient-card);
    transform: translateY(-5px);
}

/* Responsive grid layouts */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

/* Media queries for different screen sizes */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 3rem 1rem;
    }
}

/* Smooth image loading */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

/* Enhanced mobile menu */
.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-primary);
        position: absolute;
        transition: all 0.3s ease;
    }
    
    .hamburger span:nth-child(1) { top: 0; }
    .hamburger span:nth-child(2) { top: 50%; }
    .hamburger span:nth-child(3) { top: 100%; }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Project showcase enhancements */
.project-showcase {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
}

.project-showcase img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.project-showcase:hover img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--primary-dark) 0%, transparent 100%);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-showcase:hover .project-overlay {
    transform: translateY(0);
}

/* Skills section with icons */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.skill-card {
    text-align: center;
    padding: 2rem;
    background: var(--gradient-card);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.skill-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Contact form styling */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--gradient-card);
    border-radius: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--primary-dark);
    border: 1px solid var(--glass-border);
    border-radius: 0.5rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--text-primary);
    outline: none;
}

/* Image handling styles */
.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    background-image: url('../assets/profile/profile.jpg');
    border: 1px solid var(--glass-border);
}

.profile-img:hover {
    transform: translateY(-10px);
}

/* Additional gradient effects */
.section-title {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass morphism updates */
.glass-container {
    background: var(--gradient-card);
    box-shadow: var(--shadow-lg);
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add new animations */
@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-name {
        font-size: 5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }
    
    .hero-name {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

/* Gradient Balls */
.gradient-ball {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ball-1 {
    width: 900px;
    height: 900px;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom right, 
        rgba(37, 99, 235, 0.2),
        rgba(147, 51, 234, 0.15),
        rgba(219, 39, 119, 0.1)
    );
    transform: translate(-50%, -50%);
    animation: floatBall1 20s infinite alternate ease-in-out;
}

.ball-2 {
    width: 800px;
    height: 800px;
    bottom: 0;
    right: 0;
    background: linear-gradient(to bottom right, 
        rgba(22, 163, 74, 0.15),
        rgba(20, 184, 166, 0.1),
        rgba(6, 182, 212, 0.05)
    );
    transform: translate(50%, 50%);
    animation: floatBall2 25s infinite alternate ease-in-out;
}

@keyframes floatBall1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(-25%, -25%) rotate(180deg) scale(1.1);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(0.9);
    }
}

@keyframes floatBall2 {
    0% {
        transform: translate(50%, 50%) rotate(0deg) scale(1);
    }
    50% {
        transform: translate(25%, 25%) rotate(-180deg) scale(0.9);
    }
    100% {
        transform: translate(50%, 50%) rotate(-360deg) scale(1.1);
    }
}

/* Connect Section Styles */
.connect-section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    scroll-margin-top: 100px;
}

.connect-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.connect-title {
    font-size: 6rem;
    font-weight: bold;
    background: linear-gradient(to right, #FFFFFF 0%, #4A4A4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 80px rgba(255,255,255,0.1);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    display: inline-block;
}

.connect-title:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, #60A5FA, #7C3AED, #EC4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
}

.connect-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #60A5FA, #7C3AED, #EC4899);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.connect-title:hover::after {
    transform: scaleX(1);
}

.connect-subtitle {
    font-size: 1.25rem;
    color: #9CA3AF;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-btn {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    text-decoration: none;
    color: white;
    font-size: 1.125rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.icon-wrapper i {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.icon-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    transform: scale(0.8);
}

.contact-btn:hover .icon-bg {
    transform: scale(1.1);
}

.contact-btn:hover .icon-wrapper i {
    transform: scale(1.1) rotate(5deg);
}

.btn-text {
    flex-grow: 1;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.arrow {
    margin-left: auto;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.contact-btn:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Button-specific styles */
.contact-btn:nth-child(1) {
    background: linear-gradient(45deg, rgba(96, 165, 250, 0.1), rgba(96, 165, 250, 0.05));
}

.contact-btn:nth-child(1):hover {
    background: linear-gradient(45deg, rgba(96, 165, 250, 0.2), rgba(96, 165, 250, 0.1));
}

.contact-btn:nth-child(1):hover .icon-wrapper i {
    color: #60A5FA;
}

.contact-btn:nth-child(2) {
    background: linear-gradient(45deg, rgba(234, 76, 137, 0.1), rgba(234, 76, 137, 0.05));
}

.contact-btn:nth-child(2):hover {
    background: linear-gradient(45deg, rgba(234, 76, 137, 0.2), rgba(234, 76, 137, 0.1));
}

.contact-btn:nth-child(2):hover .icon-wrapper i {
    color: #EA4C89;
}

.contact-btn:nth-child(3) {
    background: linear-gradient(45deg, rgba(0, 119, 181, 0.1), rgba(0, 119, 181, 0.05));
}

.contact-btn:nth-child(3):hover {
    background: linear-gradient(45deg, rgba(0, 119, 181, 0.2), rgba(0, 119, 181, 0.1));
}

.contact-btn:nth-child(3):hover .icon-wrapper i {
    color: #0077B5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .connect-title {
        font-size: 3rem;
    }
    
    .contact-buttons {
        padding: 0 1rem;
    }
    
    .contact-btn {
        padding: 1rem 1.5rem;
    }
    
    .icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .icon-wrapper i {
        font-size: 1.25rem;
    }
}

/* Hero Name Animation */
.hero-name {
    font-size: 7rem;
    font-weight: 800;
    background: linear-gradient(to right, #FFFFFF, #4A4A4A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards, gradientFlow 8s ease infinite;
    background-size: 200% auto;
}

.hero-text-wrapper {
    margin-bottom: 2rem;
}

.title-container {
    margin-top: 1.5rem;
}

.title-line {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
}

.title-line:nth-child(1) {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.title-line:nth-child(2) {
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.title-line:nth-child(3) {
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-name {
        font-size: 4rem;
    }

    .title-line {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 3rem;
    }

    .title-line {
        font-size: 2rem;
    }
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.main-content {
    opacity: 0;
    min-height: 100vh;
    background: #000; /* Add your background color */
}

.main-content.visible {
    opacity: 1;
}

/* Section 1: Logo Animation */
.loader-circle {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Section 2: Text Animation */
.loader-text {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.loader-text span {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.3s ease forwards;
}

/* Section 3: Progress Bar */
.progress-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress {
    width: 0%;
    height: 100%;
    background: #fff;
    transition: width 0.5s ease-out;
}

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes glowStroke {
    0%, 100% { -webkit-text-stroke-color: white; }
    50% { -webkit-text-stroke-color: rgba(255, 255, 255, 0.5); }
}

/* Download button loading state */
.secondary-btn .fa-spin {
    margin-right: 8px;
}

.secondary-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

/* Updated Title Styles */
.title-container {
    margin: 1.5rem 0;
    position: relative;
}

.title-line {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    letter-spacing: -0.02em;
}

/* Update gradient-accent-bold styles - remove all glow/oval effects */
.gradient-accent-bold {
    background: linear-gradient(
        to right,
        #FF0000,  /* Red */
        #FF7F00,  /* Orange */
        #FFFF00,  /* Yellow */
        #00FF00,  /* Green */
        #0000FF,  /* Blue */
        #4B0082,  /* Indigo */
        #8F00FF   /* Violet */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: rainbowFlow 8s linear infinite;
    display: inline-block;
}

/* Remove all pseudo-elements and hover effects */
.gradient-accent-bold::before,
.gradient-accent-bold::after {
    display: none;
}

/* Simplify hover effect to just animation speed change */
.gradient-accent-bold:hover {
    animation: rainbowFlow 2s linear infinite;
}

.separator {
    margin: 0 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    font-size: 0.9em;
}

/* New Animation */
@keyframes lineReveal {
    to {
        transform: scaleX(1);
    }
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .title-line {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
    }
    
    .separator {
        margin: 0.5rem;
        display: inline-block;
    }
}

/* Enhanced hover effect */
.gradient-accent-bold:hover {
    animation: rainbowFlow 2s linear infinite;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
    transition: all 0.3s ease;
}

@keyframes rainbowFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Add styles for the theme toggle tooltip */
.theme-toggle::before {
    content: "Always night, I'm Batman!";
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.theme-toggle:hover::before {
    opacity: 1;
    visibility: visible;
    top: -45px;
}

/* Modern About Section Styles */
.about-section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-title .emoji {
    font-size: 0.8em;
    animation: bounce 2s infinite;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-text {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.7);
    font-family: 'SF Mono', monospace;
}

.text-accent {
    color: #60A5FA;
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.main-text {
    font-size: clamp(1.5rem, 4vw, 2rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.sub-text {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.emoji {
    display: inline-block;
    transition: transform 0.3s ease;
}

.text-container p:hover .emoji {
    transform: scale(1.2) rotate(10deg);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-section {
        padding: 4rem 1.5rem;
    }
    
    .about-description {
        gap: 1.5rem;
    }
    
    .text-container {
        gap: 1rem;
    }
}

/* Enhanced About Section Styles */
.about-section {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 100%);
}

.typing-effect {
    border-right: 2px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

.cursor-blink {
    animation: cursor-blink 1s infinite;
    font-family: monospace;
    font-size: 2rem;
    opacity: 0;
}

.code-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
    font-family: 'SF Mono', monospace;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
}

.code-line {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards;
}

.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.4s; }
.code-line:nth-child(4) { animation-delay: 0.6s; }
.code-line:nth-child(5) { animation-delay: 0.8s; }
.code-line:nth-child(6) { animation-delay: 1s; }

.feature-item.glowing {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.glow-effect {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, 
        rgba(96, 165, 250, 0.2),
        transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .glow-effect {
    opacity: 1;
    animation: pulse 2s infinite;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.feature-item:hover .feature-icon {
    animation: bounce 0.5s ease infinite alternate;
}

/* Animations */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes cursor-blink {
    from, to { opacity: 0 }
    50% { opacity: 1 }
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.5; }
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

/* Update gradient-accent-bold styles */
.gradient-accent-bold {
    background: linear-gradient(
        to right,
        #FF0000,  /* Red */
        #FF7F00,  /* Orange */
        #FFFF00,  /* Yellow */
        #00FF00,  /* Green */
        #0000FF,  /* Blue */
        #4B0082,  /* Indigo */
        #8F00FF   /* Violet */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: rainbowFlow 8s linear infinite;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
    padding: 0.2em 0;
}

/* Add egg/oval hover effect */
.gradient-accent-bold::before {
    content: '';
    position: absolute;
    inset: -10px -20px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50% / 70%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.gradient-accent-bold:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* Update hover effect */
.gradient-accent-bold:hover {
    animation: rainbowFlow 2s linear infinite;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}