/* ============================================
   DARK MODE PORTFOLIO - FUTURISTIC DESIGN
   ============================================ */

:root {
    --navy-dark: #0a0e27;
    --slate-grey: #1a1f3a;
    --deep-navy: #0d1117;
    --cyan: #00d9ff;
    --cyan-glow: rgba(0, 217, 255, 0.5);
    --blue-neon: #00b4ff;
    --white: #ffffff;
    --text-grey: #b4b9c8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--slate-grey) 50%, var(--deep-navy) 100%);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* ============================================
   GLASSMORPHISM NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    z-index: 1000;
    padding: 0.75rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.1rem;
}

.logo span {
    color: var(--cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-grey);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan-glow);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--cyan);
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 0 2rem;
}

/* Animated Particles */
.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle, rgba(0, 217, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle, rgba(0, 180, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: particleMove 30s linear infinite;
    pointer-events: none;
}

@keyframes particleMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Perspective Grid Background */
.grid-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-image: 
        linear-gradient(rgba(0, 180, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 255, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: bottom;
    opacity: 0.4;
    animation: gridMove 20s linear infinite;
}

.grid-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, transparent, var(--navy-dark));
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 50px;
    }
}

/* Floating Code Brackets */
.code-bracket {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 4rem;
    font-weight: bold;
    color: var(--cyan);
    opacity: 0.15;
    text-shadow: 0 0 20px var(--cyan-glow);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.bracket-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.bracket-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}

.bracket-3 {
    bottom: 30%;
    left: 8%;
    font-size: 3rem;
    animation-delay: 2s;
}

.bracket-4 {
    bottom: 20%;
    right: 12%;
    font-size: 3.5rem;
    animation-delay: 3s;
}

.bracket-5 {
    top: 50%;
    left: 5%;
    font-size: 2.5rem;
    animation-delay: 1.5s;
}

.bracket-6 {
    top: 60%;
    right: 8%;
    font-size: 2.8rem;
    animation-delay: 2.5s;
}

.bracket-7 {
    top: 35%;
    left: 20%;
    font-size: 3.2rem;
    animation-delay: 3.5s;
}

.bracket-8 {
    bottom: 35%;
    right: 20%;
    font-size: 2.6rem;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

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

/* Content Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Badge */
.badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--cyan);
    border-radius: 50px;
    color: var(--cyan);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 217, 255, 0.4);
        transform: scale(1.05);
    }
}

/* Hero Title */
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Hero Description */
.hero-description {
    font-size: 1.15rem;
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    border: none;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-neon) 100%);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 217, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-link {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--cyan);
    border-color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--cyan-glow);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .navbar {
        width: 95%;
        padding: 0.75rem 1rem;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .code-bracket {
        font-size: 2.5rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }
}

/* ============================================
   OTHER SECTIONS STYLING
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
    min-height: 100vh;
}

section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* About Section */
.about {
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.05), transparent);
    border-radius: 50%;
    top: 20%;
    right: -100px;
    animation: floatSlow 15s ease-in-out infinite;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.04), transparent);
    border-radius: 50%;
    bottom: 10%;
    left: -50px;
    animation: floatSlow 20s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatSlow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-content > * {
    opacity: 0;
}

.about-content > *:first-child {
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

.about-content > *:last-child {
    animation: slideInRight 0.8s ease-out 0.4s forwards;
}

.profile-image {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    border: 2px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
}

.about-text h3 {
    color: var(--cyan);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    color: var(--text-grey);
    font-size: 0.9rem;
}

.info-value,
.info-value a {
    color: var(--cyan);
    font-weight: 600;
}

/* Experience, Skills, Projects, Education Sections */
.experience,
.skills,
.projects,
.education-section,
.certifications-section {
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.experience::before,
.skills::before,
.projects::before,
.education-section::before,
.certifications-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    top: 0;
    left: -100%;
    animation: lineMove 8s linear infinite;
    pointer-events: none;
}

@keyframes lineMove {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.experience-container,
.skills-grid,
.education-container {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.skills-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.skill-category:nth-child(4) {
    grid-column: 2 / 3;
}

@media (max-width: 968px) {
    .skill-category:nth-child(4) {
        grid-column: auto;
    }
}

/* Contact Section */
.contact {
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.04), transparent);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    animation: floatSlow 18s ease-in-out infinite;
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 180, 255, 0.03), transparent);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
    animation: floatSlow 22s ease-in-out infinite reverse;
    pointer-events: none;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-wrapper > * {
    opacity: 0;
}

.contact-wrapper > *:first-child {
    animation: slideInLeft 0.8s ease-out 0.2s forwards;
}

.contact-wrapper > *:last-child {
    animation: slideInRight 0.8s ease-out 0.4s forwards;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--white);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.contact-info {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
}

/* Footer */
.footer {
    background: var(--deep-navy);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer p {
    color: var(--text-grey);
    margin: 0.5rem 0;
}

/* ============================================
   DATA CARDS STYLING
   ============================================ */

/* Experience Cards */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--cyan);
    border: 3px solid var(--navy-dark);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--cyan-glow);
    z-index: 1;
}

.timeline-item:first-child .timeline-marker {
    animation: pulse 2s ease-in-out infinite;
}

.timeline-content {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.timeline-content:hover {
    border-color: var(--cyan);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
    transform: translateX(10px);
}

.experience-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.experience-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
    transform: translateY(-5px);
}

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

.experience-header h3 {
    color: var(--cyan);
    font-size: 1.5rem;
}

.duration {
    color: var(--text-grey);
    font-size: 0.9rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid var(--glass-border);
}

.current-badge {
    background: rgba(0, 217, 255, 0.2);
    color: var(--cyan);
    border-color: var(--cyan);
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

.experience-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.experience-meta span {
    color: var(--text-grey);
    font-size: 0.9rem;
}

.experience-meta i {
    color: var(--cyan);
    margin-right: 0.5rem;
}

.job-description {
    color: var(--text-grey);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.responsibilities h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.responsibilities ul {
    list-style: none;
    padding-left: 0;
}

.responsibilities li {
    color: var(--text-grey);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.responsibilities li::before {
    content: '•';
    color: var(--cyan);
    position: absolute;
    left: 0;
}

/* Skills Cards */
.skill-category {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

.skill-category-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.skill-category-header i {
    display: block;
}

.skill-category:nth-child(1) { animation-delay: 0.1s; }
.skill-category:nth-child(2) { animation-delay: 0.2s; }
.skill-category:nth-child(3) { animation-delay: 0.3s; }
.skill-category:nth-child(4) { animation-delay: 0.4s; }

.skill-category h3 {
    color: var(--cyan);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-tag {
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.3);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(0, 217, 255, 0.2);
    transform: translateY(-2px);
}

.skill-item {
    width: 100%;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-name {
    color: var(--white);
    font-weight: 600;
}

.skill-level {
    color: var(--cyan);
    font-size: 0.9rem;
}

/* Projects Cards */
.projects-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.project-card {
    display: flex;
    gap: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: flex-start;
    opacity: 0;
    animation: slideInRight 0.6s ease-out forwards;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }

.project-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
    transform: translateX(10px);
}

.project-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 180, 255, 0.1));
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    align-self: center;
}

.project-icon i {
    color: var(--cyan);
    font-size: 2rem;
}

.project-content {
    flex: 1;
}

.project-header h3 {
    color: var(--cyan);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.project-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.project-type {
    color: var(--white);
    background: rgba(0, 217, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-date {
    color: var(--text-grey);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-institution,
.project-live {
    color: var(--text-grey);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-institution i,
.project-live i {
    color: var(--cyan);
    font-size: 1rem;
}

.project-live a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--cyan);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.project-live a:hover {
    background: var(--cyan);
    color: var(--navy-dark);
    transform: translateX(5px);
}

.project-description {
    color: var(--text-grey);
    line-height: 1.8;
    margin: 1rem 0;
}

.project-outcomes {
    margin: 1rem 0;
}

.project-outcomes h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.project-outcomes ul {
    list-style: none;
    padding-left: 0;
}

.project-outcomes li {
    color: var(--text-grey);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.project-outcomes li::before {
    content: '✓';
    color: var(--cyan);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.project-tech {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.project-tech strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.tech-tag {
    display: inline-block;
    background: rgba(0, 217, 255, 0.1);
    color: var(--cyan);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 217, 255, 0.3);
    margin: 0.25rem;
}

.project-link {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--white);
}

/* Education Cards */
.education-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.education-item {
    display: flex;
    gap: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: flex-start;
    opacity: 0;
    animation: slideInLeft 0.6s ease-out forwards;
}

.education-item:nth-child(1) { animation-delay: 0.1s; }
.education-item:nth-child(2) { animation-delay: 0.2s; }
.education-item:nth-child(3) { animation-delay: 0.3s; }

.education-item:hover {
    border-color: var(--cyan);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
    transform: translateX(10px);
}

.education-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 180, 255, 0.1));
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    align-self: center;
}

.education-icon i {
    color: var(--cyan);
    font-size: 2rem;
}

.education-content {
    flex: 1;
}

.education-item h3 {
    color: var(--cyan);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.institution {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.institution i {
    color: var(--cyan);
    font-size: 1.1rem;
}

.education-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.education-meta span {
    color: var(--text-grey);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.education-meta i {
    color: var(--cyan);
    font-size: 1rem;
}

.education-description {
    color: var(--text-grey);
    line-height: 1.8;
    margin-top: 0.5rem;
}

.location,
.graduation-date {
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* Certificate Cards */
.certifications-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.certificate-card {
    display: flex;
    gap: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    align-items: flex-start;
    opacity: 0;
    animation: slideInRight 0.6s ease-out forwards;
}

.certificate-card:nth-child(1) { animation-delay: 0.1s; }
.certificate-card:nth-child(2) { animation-delay: 0.2s; }
.certificate-card:nth-child(3) { animation-delay: 0.3s; }
.certificate-card:nth-child(4) { animation-delay: 0.4s; }
.certificate-card:nth-child(5) { animation-delay: 0.5s; }

.certificate-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.2);
    transform: translateX(10px);
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(0, 180, 255, 0.1));
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
    align-self: center;
}

.cert-icon i {
    color: var(--cyan);
    font-size: 2rem;
}

.cert-content {
    flex: 1;
}

.certificate-card h4 {
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.cert-issuer {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cert-issuer i {
    color: var(--cyan);
    font-size: 1rem;
}

.cert-date {
    color: var(--text-grey);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.cert-date i {
    color: var(--cyan);
    font-size: 1rem;
}

.cert-description {
    color: var(--text-grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 1rem 0;
}

.cert-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid var(--cyan);
    border-radius: 6px;
    color: var(--cyan);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cert-link:hover {
    background: var(--cyan);
    color: var(--navy-dark);
    transform: translateX(5px);
}

/* Contact Detail Items */
.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.contact-detail-item:nth-child(1) { animation-delay: 0.1s; }
.contact-detail-item:nth-child(2) { animation-delay: 0.2s; }
.contact-detail-item:nth-child(3) { animation-delay: 0.3s; }

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.detail-content p,
.detail-content a {
    color: var(--text-grey);
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-content a:hover {
    color: var(--cyan);
}
