/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #1E293B;
    color: #F1F5F9;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #60A5FA, #14B8A6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    color: white;
}

.logo-text {
    color: #60A5FA;
    font-weight: 500;
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #94A3B8;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #60A5FA;
    background: rgba(96, 165, 250, 0.1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #60A5FA;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 5rem;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #60A5FA, #14B8A6);
    top: 20%;
    right: -10%;
    animation: float 6s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #FB923C, #60A5FA);
    bottom: 20%;
    left: -10%;
    animation: float 8s ease-in-out infinite reverse;
}

.flowing-lines {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 50 Q25 25 50 50 T100 50' stroke='%2360A5FA' stroke-width='0.5' fill='none' opacity='0.2'/%3E%3C/svg%3E") repeat;
    animation: flow 20s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes flow {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-greeting {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #60A5FA;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.greeting-line {
    width: 2px;
    height: 2rem;
    background: #60A5FA;
    border-radius: 1px;
}

.name-highlight {
    color: #14B8A6;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #60A5FA, #14B8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
    max-width: 500px;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94A3B8;
}

.scroll-arrow {
    color: #60A5FA;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.setup-container {
    position: relative;
    background: linear-gradient(135deg, #334155, #475569);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.setup-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    border-radius: 0.75rem;
}

.status-dot {
    position: absolute;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-green {
    background: #10B981;
    top: -0.5rem;
    right: -0.5rem;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.status-blue {
    background: #60A5FA;
    bottom: -0.5rem;
    left: -0.5rem;
    box-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Overview Section */
.overview {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-dot {
    color: #60A5FA;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.profile-image-container {
    position: relative;
}

.profile-image {
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #60A5FA, #14B8A6, #FB923C);
    animation: rotate 10s linear infinite;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.profile-emoji {
    position: absolute;
    bottom: -0.5rem;
    right: -0.5rem;
    width: 4rem;
    height: 4rem;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}



.social-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, #60A5FA, #3B82F6);
    color: white;
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.4);
}

.btn-linkedin {
    background: linear-gradient(135deg, #14B8A6, #0D9488);
    color: white;
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.25);
}

.btn-linkedin:hover {
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
}

.btn-github {
    background: linear-gradient(135deg, #64748B, #475569);
    color: white;
    box-shadow: 0 10px 25px rgba(100, 116, 139, 0.25);
}

.btn-github:hover {
    box-shadow: 0 15px 35px rgba(100, 116, 139, 0.4);
}

.overview-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.overview-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(96, 165, 250, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.overview-item p {
    font-size: 1.125rem;
    color: #CBD5E1;
    line-height: 1.7;
}

/* Skills Section */
.skills {
    padding: 6rem 0;
    position: relative;
}

.skills-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(96, 165, 250, 0.05), transparent);
}

.section-subtitle {
    color: #60A5FA;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.programming-tags {
    text-align: center;
    margin: 2rem 0;
}

.code-tag {
    color: #60A5FA;
    font-size: 1.125rem;
    font-family: 'Courier New', monospace;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.skill-hexagon {
    width: 6rem;
    height: 6rem;
    background: #334155;
    border: 1px solid #475569;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(12deg);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.skill-hexagon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(20, 184, 166, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-item:hover .skill-hexagon {
    transform: rotate(0deg) scale(1.1);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.25);
}

.skill-item:hover .skill-hexagon::before {
    opacity: 1;
}

.skill-icon {
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 1;
    position: relative;
}

.skill-name {
    font-size: 0.875rem;
    color: #94A3B8;
    transition: color 0.3s ease;
}

.skill-item:hover .skill-name {
    color: #F1F5F9;
}

/* Projects Section */
.projects {
    padding: 6rem 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(51, 65, 85, 0.5);
    border: 1px solid #475569;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
  
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.05), rgba(20, 184, 166, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(96, 165, 250, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.project-card:hover::before {
    opacity: 1;
}

.project-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #1E293B;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.project-card:hover .project-title {
    color: #60A5FA;
}

.github-btn {
    width: 2.5rem;
    height: 2.5rem;
    background: #475569;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.github-btn:hover {
    background: #60A5FA;
    transform: scale(1.1);
}

.github-icon {
    font-size: 1.125rem;
}

.project-description {
    color: #94A3B8;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    background: rgba(96, 165, 250, 0.2);
    color: #60A5FA;
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 9999px;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: rgba(51, 65, 85, 0.3);
}

.contact-description {
    color: #94A3B8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #60A5FA, #14B8A6);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.25);
}

.contact-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 35px rgba(96, 165, 250, 0.4);
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid #475569;
    text-align: center;
}

.footer p {
    color: #94A3B8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 1rem;
    }
    
    .skill-hexagon {
        width: 4rem;
        height: 4rem;
    }
    
    .skill-icon {
        font-size: 1.25rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        justify-content: center;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .profile-image {
        width: 12rem;
        height: 12rem;
    }
    
    .social-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        justify-content: center;
    }
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(30, 41, 59, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Animation keyframes */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


        .no-projects {
            text-align: center;
            padding: 60px 20px;
            grid-column: 1 / -1;
            color: var(--text-secondary, #666);
        }

        .no-projects-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .project-image {
            position: relative;
            overflow: hidden;
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .live-demo-btn {
            background: #28a745;
            color: white;
            padding: 8px 16px;
            border-radius: 5px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 14px;
            transition: background 0.3s ease;
        }

        .live-demo-btn:hover {
            background: #218838;
        }

        .github-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .no-projects {
                padding: 40px 15px;
            }
        }


.hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .coding-container {
            position: relative;
            background: linear-gradient(135deg, #0F172A, #1E293B);
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 
                0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(96, 165, 250, 0.1);
            width: 400px;
            height: 300px;
            overflow: hidden;
        }

        .terminal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(96, 165, 250, 0.2);
        }

        .terminal-dots {
            display: flex;
            gap: 0.5rem;
        }

        .dot {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
        }

        .dot.red { background: #EF4444; }
        .dot.yellow { background: #F59E0B; }
        .dot.green { background: #10B981; }

        .terminal-title {
            color: #94A3B8;
            font-size: 0.75rem;
            font-family: 'Courier New', monospace;
        }

        .code-display {
            font-family: 'Courier New', monospace;
            font-size: 0.8rem;
            line-height: 1.4;
            height: 200px;
            overflow: hidden;
        }

        .code-line {
            display: flex;
            margin-bottom: 0.5rem;
            opacity: 0;
            transform: translateY(10px);
            animation: fadeInLine 0.5s ease forwards;
        }

        .line-number {
            color: #475569;
            margin-right: 1rem;
            min-width: 1.5rem;
            text-align: right;
        }

        .code-content {
            flex: 1;
        }

        .keyword { color: #F472B6; }
        .string { color: #34D399; }
        .function { color: #60A5FA; }
        .comment { color: #6B7280; font-style: italic; }
        .variable { color: #FBBF24; }
        .operator { color: #F87171; }

        .cursor {
            display: inline-block;
            width: 8px;
            height: 1rem;
            background: #60A5FA;
            margin-left: 2px;
            animation: blink 1s infinite;
        }

        @keyframes fadeInLine {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        .floating-elements {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .code-symbol {
            position: absolute;
            font-family: 'Courier New', monospace;
            font-weight: bold;
            opacity: 0.3;
            animation: float 3s ease-in-out infinite;
        }

        .code-symbol.symbol1 {
            top: 10%;
            right: 10%;
            color: #60A5FA;
            font-size: 1.5rem;
            animation-delay: 0s;
        }

        .code-symbol.symbol2 {
            bottom: 15%;
            left: 15%;
            color: #10B981;
            font-size: 1.2rem;
            animation-delay: 1s;
        }

        .code-symbol.symbol3 {
            top: 60%;
            right: 20%;
            color: #F472B6;
            font-size: 1rem;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { 
                transform: translateY(0px) rotate(0deg); 
                opacity: 0.2;
            }
            50% { 
                transform: translateY(-10px) rotate(180deg); 
                opacity: 0.5;
            }
        }

        .status-indicators {
            position: absolute;
            top: -0.5rem;
            right: -0.5rem;
            display: flex;
            gap: 0.5rem;
        }

        .status-dot {
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .status-green {
            background: #10B981;
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
        }

        .status-blue {
            background: #60A5FA;
            box-shadow: 0 0 15px rgba(96, 165, 250, 0.5);
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                opacity: 1; 
            }
            50% { 
                transform: scale(1.1);
                opacity: 0.7; 
            }
        }

        .language-badge {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #60A5FA, #14B8A6);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 1rem;
            font-size: 0.8rem;
            font-weight: 600;
            animation: slideUp 0.5s ease;
            box-shadow: 0 4px 12px rgba(96, 165, 250, 0.3);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .coding-container {
                width: 320px;
                height: 280px;
                padding: 1rem;
            }

            .code-display {
                font-size: 0.7rem;
                height: 180px;
            }

            .terminal-title {
                font-size: 0.65rem;
            }

            .dot {
                width: 0.6rem;
                height: 0.6rem;
            }

            .code-symbol.symbol1 {
                font-size: 1.2rem;
            }

            .code-symbol.symbol2 {
                font-size: 1rem;
            }

            .code-symbol.symbol3 {
                font-size: 0.8rem;
            }

            .language-badge {
                font-size: 0.7rem;
                padding: 0.3rem 0.8rem;
                bottom: 0.8rem;
            }

            .status-dot {
                width: 1.2rem;
                height: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .hero-visual {
                padding: 0 1rem;
            }

            .coding-container {
                width: 280px;
                height: 250px;
                padding: 0.8rem;
            }

            .code-display {
                font-size: 0.65rem;
                height: 160px;
            }

            .terminal-header {
                margin-bottom: 0.8rem;
            }

            .terminal-title {
                font-size: 0.6rem;
            }

            .code-symbol {
                display: none; /* Hide floating symbols on very small screens */
            }

            .language-badge {
                font-size: 0.65rem;
                padding: 0.25rem 0.6rem;
                bottom: 0.6rem;
            }

            .status-indicators {
                top: -0.4rem;
                right: -0.4rem;
            }

            .status-dot {
                width: 1rem;
                height: 1rem;
            }
        }

        /* Ensure the hero content stays responsive */
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            
        }

.social-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
           
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn:hover:before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .btn:active {
            transform: translateY(-1px);
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
        }

        .btn-linkedin {
            background: linear-gradient(135deg, #0077b5, #005582);
            color: white;
        }

        .btn-github {
            background: linear-gradient(135deg, #333, #24292e);
            color: white;
        }

        .btn-icon {
            font-size: 18px;
            display: flex;
            align-items: center;
        }

        @media (max-width: 600px) {
            .social-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 300px;
            }
            
            .btn {
                justify-content: center;
                width: 100%;
            }
        }

        /* Success message styles */
        .success-message {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #4caf50;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transform: translateX(350px);
            transition: transform 0.3s ease;
            z-index: 1000;
        }

        .success-message.show {
            transform: translateX(0);
        }







  /* GitHub icon styling - both image and fallback SVG */
.github-icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    transition: all 0.3s ease;
    color: currentColor;
}

.github-icon-fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: currentColor;
}

.github-icon-fallback svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: all 0.3s ease;
}

/* GitHub button styling */
.github-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    cursor: pointer; /* Default cursor for clickable buttons */
}

.github-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: rgba(255, 255, 255, 1);
}

.github-btn:hover .github-icon-img,
.github-btn:hover .github-icon-fallback svg {
    transform: scale(1.1);
}

/* Disabled state with red stop sign cursor - ONLY on the button itself */
.github-btn.disabled {
    opacity: 0.5;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23ff0000' stroke='%23cc0000' stroke-width='2'/%3E%3Cpath d='M8 8l8 8M16 8l-8 8' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") 12 12, not-allowed !important;
    pointer-events: auto; /* Allow hover to show cursor */
}

.github-btn.disabled:hover {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23ff0000' stroke='%23cc0000' stroke-width='2'/%3E%3Cpath d='M8 8l8 8M16 8l-8 8' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") 12 12, not-allowed !important;
    /* Prevent hover effects */
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: none;
    color: rgba(255, 255, 255, 0.8);
}

.github-btn.disabled:hover .github-icon-img,
.github-btn.disabled:hover .github-icon-fallback svg {
    transform: none;
}

/* Make sure the disabled button doesn't trigger clicks but shows cursor */
.github-btn.disabled * {
    pointer-events: none;
}

/* Alternative: if you want to show the stop cursor but still allow interaction */
.github-btn.no-link {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23ff0000' stroke='%23cc0000' stroke-width='2'/%3E%3Cpath d='M8 8l8 8M16 8l-8 8' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") 12 12, not-allowed !important;
}

.github-btn.no-link:hover {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23ff0000' stroke='%23cc0000' stroke-width='2'/%3E%3Cpath d='M8 8l8 8M16 8l-8 8' stroke='%23ffffff' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") 12 12, not-allowed !important;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: none;
    color: rgba(255, 255, 255, 0.8);
}

.github-btn.no-link:hover .github-icon-img,
.github-btn.no-link:hover .github-icon-fallback svg {
    transform: none;
}

/* Light theme adjustments */
@media (prefers-color-scheme: light) {
    .github-btn {
        background: rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(0, 0, 0, 0.2);
        color: rgba(0, 0, 0, 0.8);
    }
    
    .github-btn:hover {
        background: rgba(0, 0, 0, 0.2);
        border-color: rgba(0, 0, 0, 0.3);
        color: rgba(0, 0, 0, 1);
    }
    
    .github-btn.no-link:hover {
        background: rgba(0, 0, 0, 0.1);
        border-color: rgba(0, 0, 0, 0.2);
        color: rgba(0, 0, 0, 0.8);
    }
}



   .container-2 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

 .contact {
            padding: 6rem 0;
            background: rgba(51, 65, 85, 0.3);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .title-dot {
            color: #60A5FA;
        }

        .contact-description {
            color: #94A3B8;
            font-size: 1.125rem;
            margin-bottom: 2rem;
        }

        /* Cool contact info */
        .contact-info {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            background: rgba(51, 65, 85, 0.6);
            border: 1px solid #475569;
            border-radius: 2rem;
            padding: 1.5rem 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #F1F5F9;
            position: relative;
            overflow: hidden;
        }

        .contact-email::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(96, 165, 250, 0.1), rgba(20, 184, 166, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .contact-email:hover {
            transform: translateY(-3px);
            border-color: rgba(96, 165, 250, 0.5);
            box-shadow: 0 15px 30px rgba(96, 165, 250, 0.2);
        }

        .contact-email:hover::before {
            opacity: 1;
        }

        .email-icon {
            font-size: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .email-text {
            font-size: 1.25rem;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        .contact-status {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .status-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #94A3B8;
            font-size: 1rem;
        }

        .status-icon {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            background: rgba(96, 165, 250, 0.2);
            color: #60A5FA;
        }

        .status-available .status-icon {
            background: rgba(16, 185, 129, 0.2);
            color: #10B981;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { 
                transform: scale(1);
                opacity: 1; 
            }
            50% { 
                transform: scale(1.05);
                opacity: 0.8; 
            }
        }

        .status-text {
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .contact-email {
                padding: 1.25rem 1.5rem;
                margin: 0 1rem 2rem;
            }
            
            .email-text {
                font-size: 1.125rem;
            }
            
            .contact-status {
                flex-direction: column;
                gap: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 1rem;
            }
            
            .contact-description {
                font-size: 1rem;
            }
            
            .contact-email {
                flex-direction: column;
                gap: 0.75rem;
                padding: 1.5rem 1rem;
                margin: 0 0 2rem;
            }
            
            .email-text {
                font-size: 1rem;
            }
        }



