* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 40px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-inner {
    display: flex;
    gap: 40px;
}

.navbar-inner a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-weight: 500;
}

.navbar-inner a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.navbar-inner a:hover::after {
    width: 100%;
}

.navbar-inner a:hover {
    color: #cccccc;
}

/* Main Container */
.container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* Canvas */
#graphCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Top Left Info & Glassmorphic Card */
.info-top-left {
    position: absolute;
    top: 100px;
    left: 40px;
    z-index: 10;
}

.experience-lead {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-size: 11px;
    color: #888888;
    letter-spacing: 2px;
    text-transform: lowercase;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.profile-glass-card {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    max-width: 650px;
}

.profile-glass-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

.main-title {
    font-size: 54px; /* Slightly scaled down to fit beautifully inside the card */
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 8px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #999999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', -apple-system, sans-serif;
}

.subtitle {
    font-size: 20px; /* Scaled down proportionally for clean hierarchy */
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #cccccc;
    font-family: 'Space Grotesk', -apple-system, sans-serif;
}

/* Bottom Right Skill/Education Card */
.skill-education-card {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    max-width: 450px;
    min-width: 400px;
}

/* Premium Glassmorphic Dashboard Panel */
.dashboard-panel {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    height: 520px;
    padding: 25px 30px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.dashboard-tabs {
    display: flex;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.tab-btn {
    background: none;
    border: 1px solid transparent;
    outline: none;
    color: #666666;
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.tab-btn:hover:not(.active) {
    color: #cccccc;
    background: rgba(255, 255, 255, 0.02);
}

.tab-btn.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dashboard-content {
    flex-grow: 1;
    overflow: hidden;
}

.tab-content {
    height: 100%;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
}

.tab-content.fade-out {
    opacity: 0;
    transform: translateY(6px);
}

.card-view {
    height: 100%;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom Scrollbar for Card Views */
.card-view::-webkit-scrollbar {
    width: 4px;
}

.card-view::-webkit-scrollbar-track {
    background: transparent;
}

.card-view::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.card-view::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.timeline-description {
    font-size: 11px;
    color: #888888;
    line-height: 1.6;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #ffffff;
}

.card-description {
    font-size: 13px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 25px;
}

/* Skills Grid */
.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.skill-name {
    font-size: 13px;
    color: #ffffff;
    font-weight: 500;
}

.skill-level {
    font-size: 12px;
    color: #888888;
    font-weight: 600;
}

.skill-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.9));
    border-radius: 3px;
    animation: progressLoad 1s ease-out;
}

@keyframes progressLoad {
    from {
        width: 0 !important;
    }
}

.stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.stat-label {
    font-size: 12px;
    color: #888888;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

/* Other Skills Section */
.other-skills {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.skills-label {
    font-size: 11px;
    color: #888888;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 11px;
    color: #cccccc;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Education Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

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

.timeline-dot {
    position: absolute;
    left: -26px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid rgba(20, 20, 20, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    z-index: 2;
}

.timeline-content {
    padding-left: 10px;
}

.timeline-date {
    font-size: 11px;
    color: #888888;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.timeline-title {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.timeline-institution {
    font-size: 13px;
    color: #aaaaaa;
    margin-bottom: 8px;
    font-weight: 500;
}

.timeline-description {
    font-size: 12px;
    color: #888888;
    line-height: 1.5;
}

/* Fullscreen Button */
.fullscreen-btn {
    display: none; /* Hidden */
    position: absolute;
    bottom: 40px;
    right: 450px;
    z-index: 10;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    color: #ffffff;
    cursor: pointer;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.fullscreen-btn:hover {
    background: rgba(40, 40, 40, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-title {
        font-size: 48px;
    }
    
    .subtitle {
        font-size: 20px;
    }
    
    .skill-education-card {
        max-width: 350px;
        min-width: 320px;
    }
    
    .fullscreen-btn {
        right: 380px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .navbar-inner {
        gap: 20px;
    }
    
    .navbar-inner a {
        font-size: 12px;
    }
    
    .info-top-left {
        bottom: auto;
        top: 85px;
        left: 20px;
        max-width: calc(100% - 40px);
    }
    
    .profile-glass-card {
        padding: 20px 25px !important;
    }
    
    .main-title {
        font-size: 28px;
        letter-spacing: 2px;
        margin-bottom: 5px;
    }
    
    .subtitle {
        font-size: 12px;
        letter-spacing: 1px;
    }
    
    .skill-education-card {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: calc(100% - 40px);
        min-width: auto;
    }

    .dashboard-panel {
        height: 380px !important;
        padding: 20px 25px !important;
    }
    
    .card-view {
        max-height: 280px !important;
    }
    
    .fullscreen-btn {
        display: none;
    }
}

/* Projects Section */
.projects-section {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 40px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: #888888;
    letter-spacing: 1px;
}

.projects-container {
    position: relative;
    width: 100%;
    padding: 0 20px;
}

.projects-carousel {
    width: 100%;
    padding: 20px 0 40px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    cursor: grab;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.05);
}

.carousel-track:active {
    cursor: grabbing;
    scroll-snap-type: none;
}

.carousel-track::-webkit-scrollbar {
    height: 8px;
}

.carousel-track::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.carousel-track::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.carousel-slide {
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
}


/* Project Card */
.project-card {
    width: 100%;
    min-width: 20rem;
    max-width: 25rem;
    background: rgba(20, 20, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.project-image {
    width: 100%;
    height: 15rem;
    overflow: hidden;
    background: #1a1a1a;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-content {
    padding: 1.5rem;
}

.project-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.project-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 1.25rem;
    min-height: 4rem;
}

.project-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.project-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.project-link.primary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.project-link.primary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.project-link svg {
    width: 1rem;
    height: 1rem;
}

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

.tag {
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.6875rem;
    color: #cccccc;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Scroll Indicator */
.scroll-indicator {
    text-align: center;
    padding: 20px;
    color: #666666;
    font-size: 14px;
    letter-spacing: 1px;
    animation: fadeInOut 2s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
    .projects-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    .projects-container {
        padding: 0 20px;
    }
    
    .project-card {
        min-width: 320px;
        max-width: 320px;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .project-description {
        font-size: 13px;
    }
}

/* Articles Section */
.articles-section {
    position: relative;
    min-height: 100vh;
    background: #0a0a0a;
    padding: 100px 40px;
    overflow: hidden;
}

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



@media (max-width: 768px) {
    .articles-section {
        padding: 60px 20px;
    }
    
    .medium-card {
        padding: 2rem 1.5rem;
    }
    
    .medium-card h3 {
        font-size: 1.25rem;
    }
}

/* Hobbies Section */
.hobbies-section {
    position: relative;
    min-height: 80vh;
    background: #0a0a0a;
    padding: 100px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.particle-canvas {
    position: absolute;
    top: -40%;
    right: 0;
    width: 60%;
    height: 180%;
    z-index: 1;
    pointer-events: none;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.constellation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.articles-constellation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.hobbies-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
}

.hobbies-title {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.hobbies-subtitle {
    font-size: 1.125rem;
    color: #888888;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 4rem;
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hobby-card {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

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

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

.hobby-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hobby-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.hobby-card:hover .hobby-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.hobby-icon svg {
    width: 40px;
    height: 40px;
    color: #ffffff;
}

.hobby-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hobby-description {
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .projects-section {
        min-height: auto !important;
        padding: 60px 0 !important;
    }
    
    .hobbies-section {
        min-height: auto !important;
        padding: 60px 20px !important;
    }

    .hobbies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .particle-canvas {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .hobbies-section {
        padding: 60px 20px;
    }
    
    .hobbies-title {
        font-size: 2.5rem;
    }
    
    .hobbies-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .hobbies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .particle-canvas {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
    }
}

/* Contact Footer */
.contact-footer {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    padding: 4rem 2rem;
    margin-top: -10vh;
}

.footer-content {
    position: relative;
    z-index: 20;
    max-width: 100%;
    width: 100%;
    text-align: center;
    background: rgba(10, 10, 10, 0.9);
    padding: 3rem 0rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-top: 10em;
}

.footer-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-subtitle {
    font-size: 1.25rem;
    color: #888888;
    margin-bottom: 4rem;
    line-height: 1.6;
}

.contact-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
}

.icon-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.1);
}

.icon-link svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.icon-link:hover svg {
    transform: scale(1.15);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #666666;
    font-size: 0.875rem;
    letter-spacing: 1px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .contact-footer {
        min-height: 80vh;
        padding: 3rem 1.5rem;
    }
    
    .footer-title {
        font-size: 2.5rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
    }
    
    .contact-link {
        padding: 1rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .contact-link svg {
        width: 20px;
        height: 20px;
    }
}
