/* Glass Foundation */
.glass-nav {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.glass-hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
}

.glass-stat {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

/* Typography */
.gradient-text {
    background: linear-gradient(to right, #22d3ee, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Background Plasma Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: -1;
}

.blob-1 {
    width: 600px; height: 600px;
    background: #1e3a8a;
    top: -10%; left: -10%;
}

.blob-2 {
    width: 500px; height: 500px;
    background: #4c1d95;
    bottom: -10%; right: -5%;
}

.blob-3 {
    width: 300px; height: 300px;
    background: #0e7490;
    top: 40%; left: 50%;
}

/* Floating Tech Tags */
.floating-tag {
    position: absolute;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Fira Code', monospace;
    font-size: 10px;
    backdrop-filter: blur(5px);
}

.tag-1 { top: 0; right: -20px; color: #60a5fa; transform: rotate(10deg); }
.tag-2 { bottom: 20px; left: -30px; color: #fbbf24; transform: rotate(-15deg); }
.tag-3 { bottom: -10px; right: 10px; color: #34d399; transform: rotate(5deg); }

.tech-orb {
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}



/* Project Card Specifics */
.project-card {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

/* Glassmorphism Refinement */
.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
}

/* Tracking the Glint Effect */
.project-card {
    --x: 50%;
    --y: 50%;
}



.glass-path-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: transform 0.4s ease;
}

.timeline-node:hover .glass-path-card {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
}

/* Runner Animation glow */
#path-runner svg {
    filter: drop-shadow(0 0 8px #22d3ee);
}


/* //4th section */
/* Orbit Icon Counter-Rotation */

/* Tech Stack Item Hover */
.flex.gap-4 {
    transition: transform 0.3s ease;
    cursor: default;
}

.flex.gap-4:hover {
    transform: translateX(10px);
}

.flex.gap-4:hover p {
    color: #f8fafc; /* Lighter white on hover */
}

/* Specific Shadow for Orbit Icons */
.orbit-icon {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* fifth section */
/* Bento Card Hover Effects */
.glass-hero.group:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 40px rgba(34, 211, 238, 0.05);
    transform: translateY(-5px);
}

/* Custom Scrollbar for the terminal-style learning box */
.font-mono {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
}


@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

.glass-hero:hover .w-2 {
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.8));
}

/* Add a glowing line under the titles */
h3.tracking-tighter {
    position: relative;
    display: inline-block;
}

h3.tracking-tighter::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30%;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.glass-hero:hover h3.tracking-tighter::after {
    width: 100%;
}

/* Position each skill in a specific zone */
.tag-1 { top: 3%; right: 10%; }           /* Spring Boot */
.tag-2 { bottom: 10%; left: -15%; }         /* MySQL */
.tag-3 { top: 20%; left: -20%; }            /* JS */

.tag-backend { bottom: -5%; right: 5%; }    /* JDBC */
.tag-frontend-1 { top: 10%; left: 5%; }    /* HTML/CSS */
.tag-frontend-2 { bottom: 25%; right: -20%; }/* Bootstrap */

.tag-tool-1 { top: 45%; right: -25%; }      /* Git */
.tag-tool-2 { top: 50%; left: -30%; }       /* Postman */
.tag-lang { top: -5%; right: -20%; }        /* Python */

/* Add distinct glow colors for each group */
.floating-tag[class*="border-green"] { box-shadow: 0 0 15px rgba(74, 222, 128, 0.1); }
.floating-tag[class*="border-yellow"] { box-shadow: 0 0 15px rgba(250, 204, 21, 0.1); }
.floating-tag[class*="border-blue"] { box-shadow: 0 0 15px rgba(59, 130, 246, 0.1); }

/* Make tags more glass-like */
.floating-tag {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 20;
    white-space: nowrap;
}

.floating-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1) !important;
    z-index: 50;
}




/* projects.html code */

/* Vault Card Specifics */
.vault-card {
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.6s ease;
    transform-style: preserve-3d;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.vault-card:nth-child(odd) {
    animation: float 6s ease-in-out infinite;
}

.vault-card:nth-child(even) {
    animation: float 8s ease-in-out infinite;
}

/* Hover State */
.vault-card:hover {
    transform: scale(1.02) rotateX(2deg) rotateY(2deg);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5), 
                0 18px 36px -18px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(34, 211, 238, 0.1);
}

.filter-btn.active {
    background: white;
    color: black;
    border-color: white;
}

/* resume.html page */
.glass-hero {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    transition: background 0.3s ease;
}

.glass-hero:hover {
    background: rgba(255, 255, 255, 0.04);
}

/* Specific Skill Bar Animation Glow */
.skill-meter .bar {
    box-shadow: 0 0 15px currentColor;
}

/* conatact page css */
/* Terminal Input Styling */
select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 1em;
}

input:focus ~ label, 
textarea:focus ~ label {
    color: #22d3ee;
    text-shadow: 0 0 8px rgba(34, 211, 238, 0.5);
}

.gradient-text {
    background: linear-gradient(90deg, #22d3ee, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* project detail page code */

