/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: hsl(222, 47%, 5%);
    --foreground: hsl(210, 40%, 98%);
    --card: hsl(222, 47%, 8%);
    --primary: hsl(186, 100%, 50%);
    --primary-foreground: hsl(222, 47%, 5%);
    --secondary: hsl(222, 47%, 12%);
    --muted: hsl(222, 30%, 15%);
    --muted-foreground: hsl(215, 20%, 55%);
    --border: hsl(222, 30%, 18%);
    --glow-primary: hsl(186, 100%, 50%);
    --glow-secondary: hsl(270, 100%, 60%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

svg {
    width: 1.125rem;
    height: 1.125rem;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--muted);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    opacity: 0.5;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--glow-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.primary-text {
    color: var(--primary);
}

.text-foreground {
    color: var(--foreground);
}

.glass-card {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.03), 0 4px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.glass-card-hover {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.03), 0 4px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.glass-card-hover:hover {
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 0 1px rgba(0, 255, 255, 0.1), 0 8px 40px rgba(0, 255, 255, 0.1), 0 4px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.bg-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.bg-radial-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 255, 255, 0.15), transparent);
    opacity: 0.3;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
    transform: scale(1.05);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(0, 255, 255, 0.5);
    color: var(--primary);
    background: transparent;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-ghost:hover {
    color: var(--primary);
    background: rgba(0, 255, 255, 0.05);
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

#navbar.scrolled {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1);
}

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

.nav-link {
    color: var(--muted-foreground);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: var(--foreground);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 4rem;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(17, 24, 39, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.animated-orb {
    position: absolute;
    width: 24rem;
    height: 24rem;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    top: 25%;
    left: -8rem;
    background: rgba(0, 255, 255, 0.2);
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    bottom: 25%;
    right: -8rem;
    background: rgba(138, 92, 246, 0.2);
    animation: float 10s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) scale(1.2); opacity: 0.5; }
}

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

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 400px;
        align-items: start;
        padding-top: 2rem;
    }
}

.hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
        align-items: flex-start;
    }
}

.profile-photo-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease;
    padding-top: 0;
}

@media (min-width: 1024px) {
    .profile-photo-wrapper {
        padding-top: 30px;
        margin-top: 0;
    }
}

.profile-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 1px;
    border: 5px solid var(--primary);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4), 0 0 80px rgba(0, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.6), 0 0 100px rgba(0, 255, 255, 0.3);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.divider {
    margin: 0 0.75rem;
    color: var(--primary);
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-location svg {
    color: var(--primary);
}

.hero-description {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 42rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.5s both;
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 0.6s ease 0.6s both;
}

@media (min-width: 1024px) {
    .social-links {
        justify-content: flex-start;
    }
}

.social-link {
    padding: 0.75rem;
    border-radius: 9999px;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: rgba(0, 255, 255, 0.3);
    color: var(--primary);
    transform: translateY(-2px);
}

.social-link svg {
    width: 1.375rem;
    height: 1.375rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 0.6s ease 1s both;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-wheel {
    width: 0.375rem;
    height: 0.375rem;
    background: var(--primary);
    border-radius: 50%;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(0.5rem); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Section Styles */
.section {
    position: relative;
    overflow: hidden;
}

.bg-secondary {
    background: var(--secondary);
}

.section-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--foreground);
    font-weight: 500;
}

.divider-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

.divider-text span {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.highlight-card {
    padding: 1.5rem;
    text-align: center;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    transition: all 0.5s ease;
}

.highlight-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-4px);
}

.highlight-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 0.75rem;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.highlight-card h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.skill-category {
    padding: 1.5rem;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    transition: all 0.5s ease;
}

.skill-category:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-4px);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.skill-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.skill-header h3 {
    font-weight: 600;
    font-size: 1.125rem;
}

.skill-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-badge {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-badge:hover {
    border-color: rgba(0, 255, 255, 0.4);
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.project-card {
    padding: 1.5rem;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    transition: all 0.5s ease;
}

.project-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-4px);
}

.project-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.project-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.project-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.project-links a {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

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

.project-links svg {
    width: 1.25rem;
    height: 1.25rem;
}

.project-card h3 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.project-card:hover h3 {
    color: var(--primary);
}

.project-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tech span {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

/* Education Section */
.education-card {
    max-width: 48rem;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.education-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-4px);
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    background: linear-gradient(to bottom right, rgba(0, 255, 255, 0.2), transparent);
    border-radius: 0 0 0 100%;
}

.education-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .education-content {
        flex-direction: row;
        align-items: flex-start;
    }
}

.education-icon {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.education-details {
    flex: 1;
}

.education-details h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.education-college {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.education-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.cgpa-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cgpa-box svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.cgpa-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.cgpa-value {
    font-weight: 700;
    font-size: 1.5rem;
}

.cgpa-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Experience Section */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.experience-column {
    display: flex;
    flex-direction: column;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.column-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-icon svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.column-header h3 {
    font-weight: 600;
    font-size: 1.25rem;
}

.experience-card, .certification-card {
    padding: 1.5rem;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    transition: all 0.5s ease;
}

.experience-card:hover, .certification-card:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-4px);
}

.experience-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.experience-header h4 {
    font-weight: 600;
    font-size: 1.125rem;
}

.experience-org {
    color: var(--primary);
    font-weight: 500;
}

.experience-header svg {
    color: var(--muted-foreground);
    width: 1.25rem;
    height: 1.25rem;
}

.experience-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.experience-tags span {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    background: rgba(0, 255, 255, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.certification-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cert-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, rgba(0, 255, 255, 0.2), rgba(138, 92, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.certification-card h4 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.cert-org {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.cert-desc {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info h3, .contact-form-wrapper h3 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: rgba(0, 255, 255, 0.3);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 0.75rem;
    background: rgba(0, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: rgba(0, 255, 255, 0.2);
}

.contact-icon svg {
    width: 1.375rem;
    height: 1.375rem;
    color: var(--primary);
}

.contact-label {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.contact-value {
    font-weight: 500;
}

.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-button:hover {
    border-color: rgba(0, 255, 255, 0.3);
}

.social-button svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
}

.arrow-icon {
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}

.social-button:hover .arrow-icon {
    color: var(--primary);
}

.contact-form-wrapper {
    padding: 2rem;
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    color: var(--foreground);
    font-family: inherit;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.form-group textarea {
    resize: none;
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-container {
        flex-direction: row;
    }
}

.footer-logo {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-copyright {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-container {
        padding: 3rem 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .social-buttons {
        flex-direction: column;
    }

    .social-button {
        width: 100%;
    }
}
