html {
    scroll-behavior: smooth;
    background-color: #0a0a0a;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

:root {
    --primary-color: #061c02;
    --secondary-color: #000000;
    --text-color: #ffffff;
    --green: #4CAF50;
    --heading-gradient: linear-gradient(135deg, #ffffff, rgba(76, 175, 80, 0.8));
}

body{
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 20px;
    background:
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 39px,
            rgba(76, 175, 80, 0.04) 39px,
            rgba(76, 175, 80, 0.04) 40px
        ),
        repeating-linear-gradient(
            120deg,
            transparent,
            transparent 39px,
            rgba(76, 175, 80, 0.04) 39px,
            rgba(76, 175, 80, 0.04) 40px
        ),
        linear-gradient(to left, var(--secondary-color), var(--primary-color));
    padding: 30px;
    cursor: auto;
    min-height: 100vh;
}

.cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    border: 1.5px solid #4CAF50;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: width 0.1s, height 0.1s;
}

.cursor.active {
    width: 16px;
    height: 16px;
    background: rgba(76, 175, 80, 0.15);
}

.cursor-dot {
    position: fixed;
    width: 3px;
    height: 3px;
    background: #4CAF50;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
}

@keyframes fade-out {
    to {
        opacity: 0;
        transform: scale(0);
    }
}

.cursor-dot.fade {
    animation: fade-out 0.6s ease-out forwards;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 60px;
    width: auto;
    animation: gentleFadeFromTop 0.6s ease-out forwards;
}

.open-to-work {
    border: 2px dashed var(--green);
    background-color: rgba(25, 177, 25, 0.1);
    color: var(--green);
    padding: 10px 20px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    font-weight: bold;
    animation: float-in 0.6s ease-out;
}

@keyframes float-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dot {
    height: 10px;
    width: 10px;
    background-color: var(--green);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    flex-shrink: 0;
    vertical-align: middle;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.8);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.open-to-work p {
    margin: 0;
}

/* Floating Menu */
.floating-menu {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(6, 28, 2, 0.85);
    border: 1.5px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    padding: 10px 14px;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--green);
    text-decoration: none;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
}

.menu-item::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(6, 28, 2, 0.95);
    color: var(--green);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(76, 175, 80, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1001;
}

.menu-item::after {
    content: '';
    position: absolute;
    bottom: calc(100% - 2px);
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid rgba(76, 175, 80, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1001;
}

.menu-item:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

.menu-item:hover::after {
    opacity: 1;
}

.menu-item svg {
    width: 24px;
    height: 24px;
}

.menu-item:hover {
    color: var(--green);
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.2);
}

/* Main Hero Section */
.main-hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
    padding: 30px 20px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 50px;
    padding: 12px 20px;
    margin-bottom: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.badge-new {
    background: var(--green);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    color: var(--text-color);
    line-height: 1.2;
    margin: 0 0 40px 0;
    letter-spacing: -1px;
}

.project-name {
    font-size: clamp(45px, 9vw, 180px);
    font-weight: 900;
    line-height: 1;
    margin: 0 auto 20px auto;
    letter-spacing: -2px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    display: block;
    width: auto;
    max-width: 90vw;
    animation: gentleFadeFromTop 0.6s ease-out forwards;
}

.letter {
    display: inline-block;
}

.letter-gray {
    color: rgba(255, 255, 255, 0.15);
    -webkit-text-stroke: 2.5px rgba(255, 255, 255, 0.8);
}

.letter-green {
    color: rgba(76, 175, 80, 0.1);
    -webkit-text-stroke: 2.5px var(--green);
}

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

@keyframes gentleFadeFromTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.hero-tagline {
    font-size: clamp(18px, 3vw, 28px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    margin-bottom: 40px;
}

.hero-tagline p {
    margin: 0;
}

.hero-tagline .italic-text {
    font-style: italic;
    color: var(--green);
    font-size: 1.1em;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.tagline-normal {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 1em;
}

.tagline-highlight {
    color: var(--green);
    font-weight: 700;
    font-size: 1.1em;
    letter-spacing: 0.5px;
}

.italic-text {
    font-style: italic;
    color: var(--green);
}

.hero-info {
    margin-bottom: 50px;
}

.greeting {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 15px 0;
}

.role-badge {
    display: inline-block;
    color: var(--green);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    animation: gentleFadeFromTop 0.6s ease-out forwards;
    transition: all 0.3s ease;
}

.role-badge:hover {
    background-color: rgba(76, 175, 80, 0.15);
    border-color: rgba(76, 175, 80, 0.8);
    transform: translateY(-2px);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-connect {
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-connect:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.rotating-text {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rotating-text.active {
    opacity: 1;
}

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

/* Badge Rotating Items */
#rotating-badge {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: gentleFadeFromTop 0.6s ease-out forwards;
}

.badge-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    border: 1.5px solid var(--green);
    background-color: rgba(76, 175, 80, 0.08);
    color: var(--green);
    padding: 12px 24px;
    border-radius: 50px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.badge-item.exit {
    opacity: 0;
    transform: translateY(-20px);
}

.badge-icon {
    width: 28px;
    height: 28px;
    color: white;
    flex-shrink: 0;
    stroke-width: 2.5;
}

.badge-item span {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.email-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.email-badge svg {
    color: var(--green);
}

/* About Section Styles */
.about-section {
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.about-container {
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.about-text .highlight {
    color: var(--green);
    font-weight: 600;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: rgba(76, 175, 80, 0.05);
    border: 1.5px solid rgba(76, 175, 80, 0.3);
    border-radius: 16px;
    padding: 28px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover {
    background: rgba(76, 175, 80, 0.12);
    border-color: rgba(76, 175, 80, 0.6);
    transform: translateX(8px);
    box-shadow: 0 8px 32px rgba(76, 175, 80, 0.15);
}

.stat-card:hover::before {
    left: 100%;
}

.stat-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.stat-icon svg {
    width: 32px;
    height: 32px;
    color: var(--green);
    stroke: var(--green);
}

.stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.about-skills {
    background: rgba(76, 175, 80, 0.08);
    border: 1.5px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    padding: 25px 40px 40px 40px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.about-skills h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 25px 0;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.skill-tag {
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid var(--green);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.skill-tag:hover {
    background: rgba(76, 175, 80, 0.25);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.2);
}

/* About Section Responsive */
/* Projects Section */
.projects-section {
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.projects-container {
    max-width: 1000px;
    width: 100%;
    position: relative;
}

.projects-header {
    text-align: center;
    margin-bottom: 80px;
}

.projects-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--green), transparent);
}

.timeline-item {
    margin-bottom: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.timeline-item.timeline-left {
    flex-direction: row;
}

.timeline-item.timeline-right {
    flex-direction: row-reverse;
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 0 30px;
}

.timeline-left .timeline-content {
    text-align: right;
}

.timeline-right .timeline-content {
    text-align: left;
}

.timeline-left .tech-stack {
    justify-content: flex-end;
}

.timeline-right .tech-stack {
    justify-content: flex-start;
}

.timeline-left .project-links {
    justify-content: flex-end;
}

.timeline-right .project-links {
    justify-content: flex-start;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--green);
    border: 2px solid var(--green);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    position: relative;
    z-index: 10;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: pulseRing 2s ease-in-out infinite;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid rgba(76, 175, 80, 0.5);
    border-radius: 50%;
    animation: rotateBorder 3s linear infinite;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: rgba(76, 175, 80, 0.8);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% {
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.9);
    }
}

@keyframes rotateBorder {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
        border-color: rgba(76, 175, 80, 0.8);
    }
    50% {
        border-color: rgba(76, 175, 80, 0.3);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
        border-color: rgba(76, 175, 80, 0.8);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.timeline-item:hover .timeline-dot {
    width: 20px;
    height: 20px;
    box-shadow: 0 0 40px rgba(76, 175, 80, 1);
}

.timeline-item:hover .timeline-dot::before {
    width: 32px;
    height: 32px;
    border-width: 3px;
}

.project-card {
    background: rgba(76, 175, 80, 0.05);
    border: 1.5px solid rgba(76, 175, 80, 0.3);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.project-card:hover {
    background: rgba(76, 175, 80, 0.12);
    border-color: rgba(76, 175, 80, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(76, 175, 80, 0.2);
}

.project-image {
    width: 100%;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(0, 0, 0, 0.2));
    font-family: 'Poppins', sans-serif;
}

.year {
    font-size: 48px;
    font-weight: 900;
    color: rgba(76, 175, 80, 0.4);
}

.project-info {
    padding: 24px;
}

.project-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.project-info p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 12px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(76, 175, 80, 0.3);
    border-color: rgba(76, 175, 80, 0.6);
}

.tech-icon {
    font-size: 14px;
}

.tech-icon-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: inline-block;
    filter: brightness(0) invert(1);
}

.tech-icon-fallback {
    font-size: 14px;
}

.project-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(76, 175, 80, 0.15);
    border: 1.5px solid rgba(76, 175, 80, 0.4);
    color: rgba(76, 175, 80, 0.9);
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-link:hover {
    background: rgba(76, 175, 80, 0.25);
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-2px);
}

.project-link.website {
    border-color: rgba(100, 150, 200, 0.4);
    background: rgba(100, 150, 200, 0.1);
    color: rgba(100, 150, 200, 0.9);
}

.project-link.website:hover {
    background: rgba(100, 150, 200, 0.15);
    border-color: rgba(100, 150, 200, 0.6);
    color: rgba(100, 200, 255, 0.9);
}

.project-link.play-store {
    border-color: rgba(244, 67, 54, 0.4);
    background: rgba(244, 67, 54, 0.1);
    color: rgba(244, 67, 54, 0.9);
}

.project-link.play-store:hover {
    background: rgba(244, 67, 54, 0.15);
    border-color: rgba(244, 67, 54, 0.6);
}

.project-link.app-store {
    border-color: rgba(200, 200, 200, 0.4);
    background: rgba(200, 200, 200, 0.1);
    color: rgba(200, 200, 200, 0.9);
}

.project-link.app-store:hover {
    background: rgba(200, 200, 200, 0.15);
    border-color: rgba(200, 200, 200, 0.6);
}

.project-link.github {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
}

.project-link.github:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 1);
}

.project-link.in-development {
    border-color: rgba(255, 235, 59, 0.3);
    background: rgba(255, 235, 59, 0.05);
    color: rgba(255, 235, 59, 0.7);
}

.project-link.in-development.disabled {
    cursor: default;
    opacity: 0.7;
}

.project-link.in-development:hover:not(.disabled) {
    background: rgba(255, 235, 59, 0.1);
    border-color: rgba(255, 235, 59, 0.5);
    color: rgba(255, 235, 59, 1);
}

.project-link.private-client {
    border-color: rgba(255, 152, 0, 0.3);
    background: rgba(255, 152, 0, 0.05);
    color: rgba(255, 152, 0, 0.7);
}

.project-link.private-client.disabled {
    cursor: default;
    opacity: 0.7;
}

.project-link.private-client:hover:not(.disabled) {
    background: rgba(255, 152, 0, 0.1);
    border-color: rgba(255, 152, 0, 0.5);
    color: rgba(255, 152, 0, 1);
}

.link-icon {
    font-size: 16px;
}

.timeline-show-more {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.show-more-btn {
    background: rgba(76, 175, 80, 0.15);
    border: 2px solid var(--green);
    color: var(--green);
    padding: 14px 40px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(10px);
}

.show-more-btn:hover {
    background: rgba(76, 175, 80, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.25);
}

.show-more-btn:active {
    transform: translateY(-1px);
}

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

.fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

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

.fade-in-new {
    animation: fadeInNew 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

/* Projects Responsive */
/* Footer Styles */
.footer {
    border-top: 1px solid rgba(76, 175, 80, 0.2);
    padding: 80px 20px 40px;
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(76, 175, 80, 0.7);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.footer-logo {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--green);
}

.footer-platforms {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-platforms a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.footer-platforms a:hover {
    color: var(--green);
}

.footer-connect {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-email,
.footer-phone {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    margin: 0;
    transition: all 0.3s ease;
}

.footer-email:hover,
.footer-phone:hover {
    color: var(--green);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.footer-social a svg {
    width: 20px;
    height: 20px;
}

.footer-social a:hover {
    color: var(--green);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(76, 175, 80, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 6px;
}

.heart {
    color: var(--green);
    animation: pulse 2s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
/* Contact Section */
.contact-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    background: var(--heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header .header-line {
    height: 3px;
    width: 60px;
    background: var(--green);
    margin: 0 auto;
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(6, 28, 2, 0.4);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contact-form-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: var(--text-color);
}

.contact-form-header p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 30px 0;
    font-size: 14px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(76, 175, 80, 0.8);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
    resize: vertical;
    min-height: calc(1.5em * 6 + 24px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green);
    background: rgba(76, 175, 80, 0.05);
    box-shadow: 0 0 16px rgba(76, 175, 80, 0.2);
}

.submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--green);
    color: #000;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: rgba(76, 175, 80, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.direct-contact {
    background: rgba(6, 28, 2, 0.4);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.direct-contact h3,
.social-presence h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: var(--text-color);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border: 2px solid var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgba(76, 175, 80, 0.8);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-details p {
    margin: 0;
    color: var(--text-color);
    font-size: 16px;
    font-weight: 500;
}

.contact-details a {
    text-decoration: none;
    color: inherit;
}

.contact-details a:hover {
    color: var(--green);
}

/* Social Presence */
.social-presence {
    background: rgba(6, 28, 2, 0.4);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.social-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-links a {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(76, 175, 80, 0.1);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 24px;
    height: 24px;
}


/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    padding: 16px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    transition: all 0.3s ease;
    max-width: 400px;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-success {
    background: rgba(76, 175, 80, 0.9);
    border: 1px solid var(--green);
    color: #ffffff;
}

.toast-error {
    background: rgba(255, 59, 48, 0.9);
    border: 1px solid #ff3b30;
    color: #ffffff;
}

/* Lazy Loading & Image Optimization */
img[loading="lazy"] {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"]:not([src]) {
    opacity: 0.5;
}

/* Smooth scroll enhancement */
@supports (scroll-behavior: smooth) {
    html {
        scroll-behavior: smooth;
    }
}
