/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, #1e1e2e 0%, #181825 50%, #11111b 100%);
    font-family: "Comfortaa", sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Liquid Glass Styling - Apple Style */
.liquidGlassEsque {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

/* Glass morphism utility classes - Apple Style */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.glass-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

/* Enhanced glass hover effect */
.glass-hover:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ...existing code... */

.glass-navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    transform: none;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 20px;
    padding: 10px;
    z-index: 1000;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
    overflow: hidden;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transform-origin: top left;
}

.glass-navbar.expanded {
    border-radius: 20px;
    padding: 20px;
    min-width: 250px;
    height: auto;
    min-height: 580px; /* Increased height for all nav items */
    max-height: 580px; /* Set max height to prevent overflow */
    align-items: flex-start;
    overflow: hidden; /* Prevent background expansion */
    transition: all 0.5s ease;
}

/* Enhanced closing animation */
.glass-navbar:not(.expanded) {
    transition: all 0.5s ease;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    align-self: center;
}

.glass-navbar.expanded .hamburger-btn {
    align-self: flex-start;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    transform-origin: center;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 0.5s ease;
    margin-top: 10px;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    max-height: 500px; /* Increased height for all navigation items */
    transition: all 0.5s ease;
}

.nav-item {
    margin: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.nav-menu.active .nav-item {
    opacity: 1;
    transform: translateY(0);
}

.nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.05s; }
.nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.1s; }
.nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.15s; }
.nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.2s; }
.nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.25s; }
.nav-menu.active .nav-item:nth-child(6) { transition-delay: 0.3s; }
.nav-menu.active .nav-item:nth-child(7) { transition-delay: 0.35s; }
.nav-menu.active .nav-item:nth-child(8) { transition-delay: 0.4s; }

.nav-menu:not(.active) .nav-item:nth-child(8) { transition-delay: 0s; }
.nav-menu:not(.active) .nav-item:nth-child(7) { transition-delay: 0.1s; }
.nav-menu:not(.active) .nav-item:nth-child(6) { transition-delay: 0.2s; }
.nav-menu:not(.active) .nav-item:nth-child(5) { transition-delay: 0.3s; }
.nav-menu:not(.active) .nav-item:nth-child(4) { transition-delay: 0.4s; }
.nav-menu:not(.active) .nav-item:nth-child(3) { transition-delay: 0.5s; }
.nav-menu:not(.active) .nav-item:nth-child(2) { transition-delay: 0.6s; }
.nav-menu:not(.active) .nav-item:nth-child(1) { transition-delay: 0.7s; }

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 10px;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::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 ease;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    padding: 10px 25px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link:hover::before {
    left: 100%;
}

.hamburger-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.hamburger-btn:active::after {
    width: 60px;
    height: 60px;
}

/* Custom styles for sections */
.hero-section {
    min-height: 100vh;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.me-img {
    width: 200px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.greeting-text {
    color: #cba6f7;
    line-height: 1.4;
}

.greeting-subtitle {
    color: #cba6f7;
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

.social-squircle {
    border-radius: 20% !important;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    color: #cbd3f2;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-tag:hover {
    transform: scale(1.05);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.section-title {
    color: #cba6f7;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
}

.section-subtitle {
    color: #cbd3f2;
    font-size: 1.1rem;
    line-height: 1.5;
}

.cert-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    color: #cbd3f2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: 1.5;
}

.cert-card h3 {
    font-weight: 600;
    line-height: 1.3;
}

.cert-icon {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-description {
    min-height: 60px;
    display: flex;
    align-items: center;
    text-align: center;
}

.cert-tag {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    color: #cbd3f2;
}

.skill-micro {
    background: rgba(255, 255, 255, 0.04);
    color: #cbd3f2;
    font-size: 0.7rem;
    font-weight: 500;
}

/* ===== PROJECT CARDS ===== */
.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.project-image-container {
    position: relative;
    overflow: hidden;
}

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

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

.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-overlay i {
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-overlay i {
    transform: scale(1.2);
}

.project-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
}

/* Button Styles for Project Overlays */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    margin: 0.25rem;
    text-align: center;
    justify-content: center;
    min-width: 110px;
}

.btn-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

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

.project-title {
    color: #cbd3f2;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.project-status {
    background: rgba(203, 166, 247, 0.2);
    color: #cba6f7;
    font-size: 0.75rem;
    font-weight: 500;
    flex-shrink: 0;
    margin-left: 10px;
}

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

.project-tech .tech-title {
    color: #cba6f7;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.project-tag {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    color: #cbd3f2;
    font-size: 0.8rem;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.project-tag:hover {
    transform: translateY(-1px);
}

.project-tech {
    margin-bottom: 1.5rem !important;
}

.project-stats {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

.project-stats small {
    color: #9ca3af;
    font-size: 0.75rem;
}

.arrow-down {
    width: 60px;
    height: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        line-height: 1.5;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .memoji-img {
        width: 150px;
        height: 150px;
    }
    
    .greeting-text {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .greeting-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .project-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 60px;
    }
    
    .memoji-img {
        width: 120px;
        height: 120px;
    }
    
    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .greeting-text {
        line-height: 1.2;
    }
    
    .greeting-subtitle {
        line-height: 1.3;
    }
    
    .project-description {
        font-size: 0.85rem;
    }
    
    .project-tag {
        font-size: 0.8rem;
    }
}

/* Cert card hover effect */
.cert-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

/* Navigation link hover with Apple-style glass */
.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
    padding: 10px 25px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: #cba6f7;
    background: rgba(203, 166, 247, 0.1);
    transform: translateX(10px);
    padding: 10px 25px;
    box-shadow: 
        0 4px 20px rgba(203, 166, 247, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-navbar.scrolled {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

/* Education Section Styles */
.education-timeline {
    position: relative;
}

.education-item {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.education-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.education-badge {
    position: absolute;
    left: -15px;
    top: 20px;
    width: 30px;
    height: 30px;
    background: rgba(203, 166, 247, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cba6f7;
}

.education-status {
    background: rgba(255, 255, 255, 0.03);
}

.status-badge {
    font-size: 0.85rem;
    font-weight: 500;
}

.module-tag {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #cbd3f2;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Competition Section Styles */
.competition-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.competition-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.competition-tag {
    background: rgba(203, 166, 247, 0.2);
    color: #cba6f7;
    font-size: 0.85rem;
    font-weight: 500;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #cbd3f2;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Service Section Styles */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.service-tag {
    background: rgba(129, 199, 132, 0.2);
    color: #81c784;
    font-size: 0.85rem;
    font-weight: 500;
}

.impact-tag {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #cbd3f2;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Contact Section Styles */
.contact-link {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.contact-email-highlight {
    background: rgba(255, 255, 255, 0.03);
}

.email-link-prominent {
    color: #cba6f7;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.email-link-prominent:hover {
    color: #f9e79f;
    text-decoration: underline;
}

/* Enhanced responsive design */
@media (max-width: 768px) {
    .education-badge {
        display: none;
    }
    
    .education-item {
        border-left: 3px solid #cba6f7;
        padding-left: 20px;
    }
    
    .competition-card,
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-icon i {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 576px) {
    .module-tag,
    .skill-tag,
    .impact-tag {
        font-size: 0.7rem;
        margin-bottom: 5px;
    }
    
    .competition-icon i,
    .service-icon i {
        font-size: 1.8rem !important;
    }
}

/* Footer Styles */
footer {
    background: transparent;
    margin-top: 50px;
}

.footer-dock {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.footer-info .footer-name {
    color: #cba6f7;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-info .footer-tagline {
    color: #cbd3f2;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-info .footer-email {
    color: #cbd3f2;
    font-size: 0.9rem;
}

.email-link {
    color: #cba6f7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #f9e79f;
    text-decoration: underline;
}

.footer-social-dock {
    display: flex;
    justify-content: center;
    justify-content: end;
    gap: 15px;
    align-items: center;
}

.social-dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.social-dock-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.social-icon-bg {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon-bg.linkedin {
    background: linear-gradient(135deg, #0077b5, #005885);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.3);
}

.social-icon-bg.github {
    background: linear-gradient(135deg, #333, #24292e);
    box-shadow: 0 8px 20px rgba(51, 51, 51, 0.3);
}

.social-icon-bg.email {
    background: linear-gradient(135deg, #ea4335, #c5221f);
    box-shadow: 0 8px 20px rgba(234, 67, 53, 0.3);
}

.social-icon-bg i {
    color: white;
    font-size: 1.3rem;
    z-index: 1;
}

.social-label {
    color: #cbd3f2;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-dock-item:hover .social-label {
    opacity: 1;
    color: #cba6f7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: #cbd3f2;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.footer-tech {
    color: #cbd3f2;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Mobile responsive footer */
@media (max-width: 768px) {
    .footer-social-dock {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .social-dock-item {
        padding: 8px;
    }
    
    .social-icon-bg {
        width: 45px;
        height: 45px;
    }
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.3s ease;
}

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

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(203, 166, 247, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(203, 166, 247, 0.7);
}

/* Typography improvements */
.section-title {
    background: linear-gradient(135deg, #cba6f7, #f9e79f);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Page Progress Bar */
.progress-bar-container {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    pointer-events: none;
}

.progress-bar-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 25px;
    padding: 15px 10px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.progress-indicator {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    pointer-events: all;
}

.progress-indicator i {
    color: rgba(203, 211, 242, 0.5);
    font-size: 16px;
    transition: all 0.4s ease;
}

.progress-indicator.active {
    background: rgba(203, 166, 247, 0.2);
    box-shadow: 
        0 8px 25px rgba(203, 166, 247, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.progress-indicator.active i {
    color: #cba6f7;
}

.progress-indicator.completed {
    background: rgba(129, 199, 132, 0.2);
    box-shadow: 
        0 8px 25px rgba(129, 199, 132, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.progress-indicator.completed i {
    color: #81c784;
}

.progress-label {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1001;
}

.progress-indicator:hover .progress-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(5px);
}

/* Hide the old progress label when hovering over projects */
.progress-indicator[data-section="projects"]:hover .progress-label {
    opacity: 0;
    visibility: hidden;
}

/* Projects Progress Bar Preview */
.projects-preview-bar {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 1002;
}

.projects-preview-title {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #cba6f7;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1004;
}

.progress-indicator[data-section="projects"]:hover .projects-preview-bar,
.projects-preview-bar.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(10px);
    pointer-events: all;
}

.progress-indicator[data-section="projects"]:hover .projects-preview-title,
.projects-preview-bar.show .projects-preview-title {
    opacity: 1;
    visibility: visible;
}

.projects-preview-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 25px;
    padding: 15px 10px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.projects-preview-indicator {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.projects-preview-indicator:hover {
    background: rgba(203, 166, 247, 0.15);
    transform: scale(1.1);
}

.projects-preview-indicator.active {
    background: rgba(203, 166, 247, 0.2);
    box-shadow: 0 4px 15px rgba(203, 166, 247, 0.3);
}

.projects-preview-indicator i {
    color: rgba(203, 211, 242, 0.7);
    font-size: 16px;
    transition: all 0.3s ease;
}

.projects-preview-indicator:hover i,
.projects-preview-indicator.active i {
    color: #cba6f7;
}

.projects-preview-label {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1003;
}

.projects-preview-indicator:hover .projects-preview-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(5px);
}

/* Hide progress bar on mobile */
@media (max-width: 768px) {
    .progress-bar-container {
        display: none;
    }
}

/* Main Navigation Preview Bar for Project Pages */
.main-nav-preview-bar {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 1002;
}

.main-nav-preview-title {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: #cba6f7;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1004;
}

.progress-indicator[data-section="home"]:hover .main-nav-preview-bar,
.main-nav-preview-bar.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(10px);
    pointer-events: all;
}

.progress-indicator[data-section="home"]:hover .main-nav-preview-title,
.main-nav-preview-bar.show .main-nav-preview-title {
    opacity: 1;
    visibility: visible;
}

/* Hide the old progress label when hovering over home */
.progress-indicator[data-section="home"]:hover .progress-label {
    opacity: 0;
    visibility: hidden;
}

.main-nav-preview-track {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 25px;
    padding: 15px 10px;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.main-nav-preview-indicator {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.main-nav-preview-indicator:hover {
    background: rgba(203, 166, 247, 0.15);
    transform: scale(1.1);
}

.main-nav-preview-indicator.active {
    background: rgba(203, 166, 247, 0.2);
    box-shadow: 0 4px 15px rgba(203, 166, 247, 0.3);
}

.main-nav-preview-indicator i {
    color: rgba(203, 211, 242, 0.7);
    font-size: 16px;
    transition: all 0.3s ease;
}

.main-nav-preview-indicator:hover i,
.main-nav-preview-indicator.active i {
    color: #cba6f7;
}

.main-nav-preview-label {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1003;
}

.main-nav-preview-indicator:hover .main-nav-preview-label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(5px);
}

/* Additional hover effects */
.tech-tag:hover,
.cert-tag:hover,
.project-tag:hover,
.module-tag:hover,
.skill-tag:hover,
.impact-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
