/* ========================================
   RESPONSIVE DESIGN
======================================== */

/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .skills-grid,
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(18, 23, 46, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid rgba(6, 182, 212, 0.2);
        z-index: 999;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Hero Section */
    .hero-section {
        min-height: 90vh;
        padding: 80px 20px 40px;
    }

    .glitch {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero-role {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        gap: 2rem;
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 120px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .title-line {
        width: 80px;
    }

    /* About Section */
    .about-section {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

    .image-container {
        width: 300px;
        height: 300px;
    }

    .image-decoration {
        top: -15px;
        right: -15px;
    }

    .image-decoration i {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .about-text {
        text-align: left;
    }

    .text-highlight p {
        font-size: 1rem;
    }

    .personal-details {
        grid-template-columns: 1fr;
    }

    /* Skills Section */
    .skills-section {
        padding: 80px 0;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .skill-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .skill-icon {
        font-size: 4rem;
    }

    .skill-title {
        font-size: 1.3rem;
    }

    /* Experience Section */
    .experience-section {
        padding: 80px 0;
    }

    .experience-image-wrapper {
        height: 250px;
    }

    .experience-badge {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .experience-content {
        padding: 2rem;
    }

    .role-title {
        font-size: 1.6rem;
    }

    .company-name {
        font-size: 1rem;
    }

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .responsibilities li {
        font-size: 0.95rem;
    }

    /* Certificates Section */
    .certificates-section {
        padding: 80px 0;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .certificate-card {
        max-width: 400px;
        margin: 0 auto;
        padding: 2.5rem;
    }

    .cert-title {
        font-size: 1.3rem;
    }

    /* Projects Section */
    .projects-section {
        padding: 80px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .project-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .project-number {
        font-size: 6rem;
        top: -15px;
        right: 25px;
    }

    .project-title {
        font-size: 1.5rem;
    }

    .project-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .project-links {
        width: 100%;
    }

    .project-link {
        flex: 1;
        justify-content: center;
    }

    /* Resume Section */
    .resume-section {
        padding: 80px 0;
    }

    .resume-title {
        font-size: 2.2rem;
    }

    .resume-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .resume-icon {
        font-size: 5rem;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Back to Top */
    .back-to-top {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }
}

/* Mobile Medium */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .nav-container {
        padding: 1rem 15px;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .logo-icon {
        font-size: 1.6rem;
    }

    /* Hero Section */
    .hero-section {
        min-height: 85vh;
        padding: 70px 15px 30px;
    }

    .glitch {
        font-size: 2.2rem;
    }

    .hero-role {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .role-separator {
        display: none;
    }

    .hero-tagline {
        font-size: 0.9rem;
    }

    .btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .stat-item {
        min-width: 100px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Sections */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .title-number {
        font-size: 1.2rem;
    }

    .title-line {
        width: 60px;
        margin-left: 0.5rem;
    }

    /* About Section */
    .about-section {
        padding: 60px 0;
    }

    .image-container {
        width: 250px;
        height: 250px;
    }

    .profile-icon {
        font-size: 8rem;
    }

    .image-decoration {
        display: none;
    }

    .text-highlight p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .detail-item {
        padding: 1.2rem;
        gap: 1rem;
    }

    .detail-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .detail-value {
        font-size: 1rem;
    }

    /* Skills Section */
    .skills-section {
        padding: 60px 0;
    }

    .skill-card {
        max-width: 100%;
    }

    .skill-front {
        padding: 2rem 1.5rem;
    }

    .skill-icon {
        font-size: 3.5rem;
    }

    .skill-title {
        font-size: 1.2rem;
    }

    .skill-description {
        font-size: 0.9rem;
    }

    /* Experience Section */
    .experience-section {
        padding: 60px 0;
    }

    .experience-image-wrapper {
        height: 200px;
    }

    .experience-badge {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }

    .experience-content {
        padding: 1.5rem;
    }

    .role-title {
        font-size: 1.4rem;
    }

    .company-name {
        font-size: 0.95rem;
    }

    .duration-badge {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .responsibilities li {
        font-size: 0.9rem;
        gap: 0.8rem;
    }

    .resp-icon {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }

    .tech-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    /* Certificates Section */
    .certificates-section {
        padding: 60px 0;
    }

    .certificate-card {
        padding: 2rem 1.5rem;
    }

    .cert-ribbon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        top: 15px;
        right: 15px;
    }

    .cert-icon-large {
        font-size: 4rem;
    }

    .cert-title {
        font-size: 1.2rem;
    }

    .cert-provider {
        font-size: 0.9rem;
    }

    .cert-detail-item {
        font-size: 0.85rem;
    }

    .cert-verify-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    /* Projects Section */
    .projects-section {
        padding: 60px 0;
    }

    .project-card {
        padding: 2rem 1.5rem;
    }

    .project-number {
        font-size: 5rem;
        top: -10px;
        right: 15px;
    }

    .project-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .project-icon {
        font-size: 2rem;
    }

    .project-title {
        font-size: 1.3rem;
    }

    .project-description {
        font-size: 0.9rem;
    }

    .tech-stack .tech-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .project-link {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    /* Resume Section */
    .resume-section {
        padding: 60px 0;
    }

    .resume-title {
        font-size: 1.8rem;
    }

    .resume-subtitle {
        font-size: 1rem;
    }

    .resume-icon {
        font-size: 4.5rem;
    }

    .btn-large {
        padding: 15px 40px;
        font-size: 1rem;
    }

    .format-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }

    /* Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.85rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Mobile Small */
@media (max-width: 360px) {
    .glitch {
        font-size: 1.9rem;
    }

    .hero-role {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .image-container {
        width: 220px;
        height: 220px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn,
    .project-link,
    .cert-verify-btn,
    .social-link {
        min-height: 44px;
        min-width: 44px;
    }

    .nav-link {
        padding: 1rem 0.5rem;
    }

    .skill-card:hover .skill-card-inner,
    .project-card:hover,
    .certificate-card:hover,
    .experience-card:hover {
        transform: none;
    }

    .skill-card:active .skill-card-inner {
        transform: scale(0.98);
    }

    .project-card:active,
    .certificate-card:active {
        transform: scale(0.98);
    }
}
/* ========================================
   ULTRA MODERN PORTFOLIO - ENHANCED CSS
======================================== */

/* ========================================
   GLOBAL STYLES & VARIABLES
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cyan: #06b6d4;
    --dark-cyan: #0e7490;
    --light-cyan: #67e8f9;
    --neon-cyan: #0ff;
    --bg-dark: #0a0e27;
    --bg-darker: #04070f;
    --bg-card: #12172e;
    --bg-card-hover: #1a2038;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-pink: #ec4899;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Cursor - REMOVED */

/* Section Titles */
.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.title-number {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    font-weight: 300;
}

.title-line {
    height: 2px;
    width: 200px;
    background: linear-gradient(90deg, var(--primary-cyan), transparent);
    margin-left: 1rem;
}

/* ========================================
   NAVIGATION BAR - GLASSMORPHISM
======================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(6, 182, 212, 0.2);
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 2rem;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.logo-text {
    background: linear-gradient(135deg, var(--light-cyan), var(--primary-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-blue));
    transition: width 0.4s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-cyan);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-cyan);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* ========================================
   HERO SECTION - ADVANCED ANIMATIONS
======================================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#constellation {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* Gradient Orbs */
.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float-orb 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-cyan);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--accent-blue);
    bottom: 10%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-purple);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

/* Glitch Effect */
.glitch-wrapper {
    position: relative;
    display: inline-block;
}

.glitch {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-cyan), var(--light-cyan), var(--primary-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: glitch 5s infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(-2px, 2px); }
    92% { transform: translate(2px, -2px); }
    93% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
}

.hero-role {
    font-size: 2rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.role-text {
    color: var(--primary-cyan);
    font-weight: 600;
}

.role-separator {
    color: var(--text-secondary);
}

/* Typewriter Effect */
.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin: 2rem 0;
    min-height: 2rem;
}

.cursor-blink {
    animation: blink 1s infinite;
    color: var(--primary-cyan);
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
    color: white;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.4);
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(6, 182, 212, 0.6);
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
}

.btn-primary:hover .btn-shine {
    animation: shine 0.6s;
}

@keyframes shine {
    to { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.btn-secondary {
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
}

.btn-secondary:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-cyan);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 32px; opacity: 0; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* ========================================
   ABOUT SECTION - GLASSMORPHISM
======================================== */
.about-section {
    padding: 120px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-container {
    width: 350px;
    height: 350px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.3);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(6, 182, 212, 0.1));
}

.profile-icon {
    font-size: 10rem;
    color: rgba(6, 182, 212, 0.3);
    z-index: 2;
}

.profile-image {
    width: 80%;
    height: 120%;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-cyan);
    opacity: 0.2;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation: float 6s infinite ease-in-out;
}

.shape-2 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    right: 15%;
    animation: float 8s infinite ease-in-out 1s;
}

.shape-3 {
    width: 30px;
    height: 30px;
    top: 60%;
    left: 70%;
    animation: float 7s infinite ease-in-out 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-decoration i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 12px;
    color: var(--primary-cyan);
    font-size: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.2);
    animation: bounce-icon 3s infinite ease-in-out;
}

.image-decoration i:nth-child(2) {
    animation-delay: 0.5s;
}

.image-decoration i:nth-child(3) {
    animation-delay: 1s;
}

@keyframes bounce-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-text {
    color: var(--text-secondary);
}

.text-highlight {
    margin-bottom: 1.5rem;
}

.text-highlight p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.highlight-text {
    color: var(--primary-cyan);
    font-weight: 600;
    position: relative;
}

.personal-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(18, 23, 46, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: all 0.3s ease;
}

.detail-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.2);
}

.detail-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
    border-radius: 12px;
    font-size: 1.5rem;
    color: white;
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.detail-value {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.quick-facts {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.fact-badge {
    padding: 10px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 25px;
    color: var(--primary-cyan);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ========================================
   SKILLS SECTION - 3D CARDS
======================================== */
.skills-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.skill-card {
    position: relative;
    perspective: 1000px;
    cursor: pointer;
}

.skill-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.skill-card:hover .skill-card-inner {
    transform: translateY(-15px);
}

.skill-front {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 25px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.skill-front::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(6, 182, 212, 0.3),
        transparent 30%
    );
    animation: rotate-gradient 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.skill-card:hover .skill-front::before {
    opacity: 1;
}

@keyframes rotate-gradient {
    to { transform: rotate(360deg); }
}

.skill-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.icon-bg {
    position: absolute;
    inset: -15px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
}

.skill-icon {
    font-size: 5rem;
    color: var(--primary-cyan);
    position: relative;
    z-index: 2;
    animation: pulse-icon 3s infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.skill-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.skill-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.skill-level {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.level-bar {
    flex: 1;
    height: 12px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.level-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-blue));
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.level-text {
    font-size: 0.75rem;
    color: white;
    font-weight: 600;
}

.level-percentage {
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 1.1rem;
}

.skill-glow {
    position: absolute;
    inset: 0;
    border-radius: 25px;
    opacity: 0;
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.6);
    transition: opacity 0.3s;
    pointer-events: none;
}

.skill-card:hover .skill-glow {
    opacity: 1;
}

/* ========================================
   EXPERIENCE SECTION - MODERN CARD
======================================== */
.experience-section {
    padding: 120px 0;
}

.experience-container {
    max-width: 1000px;
    margin: 0 auto;
}

.experience-card {
    background: var(--bg-card);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-cyan), var(--accent-blue), var(--accent-purple));
}

.experience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(6, 182, 212, 0.3);
}

.experience-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.experience-image {
    width: 100%;
    height: 100%;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.experience-card:hover .experience-image img {
    transform: scale(1.1);
}

.image-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(10, 14, 39, 0.9));
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-cyan);
    font-size: 2rem;
    color: var(--primary-cyan);
    animation: float 3s ease-in-out infinite;
}

.experience-content {
    padding: 2.5rem;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.role-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.company-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-cyan);
    font-weight: 600;
    font-size: 1.1rem;
}

.duration-badge {
    padding: 10px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 25px;
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.responsibilities {
    list-style: none;
    margin: 2rem 0;
}

.responsibilities li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    padding-left: 0;
}

.resp-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 8px;
    color: var(--primary-cyan);
    flex-shrink: 0;
    margin-top: 2px;
}

.tech-used {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.tech-tag {
    padding: 8px 16px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    color: var(--primary-cyan);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* ========================================
   CERTIFICATES SECTION - PREMIUM CARDS
======================================== */
.certificates-section {
    padding: 120px 0;
    background: var(--bg-dark);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.certificate-card {
    background: var(--bg-card);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.4s ease;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 0.6s ease;
}

.certificate-card:hover::before {
    left: 100%;
}

.certificate-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(6, 182, 212, 0.4);
    border-color: var(--primary-cyan);
}

.cert-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
    animation: rotate-ribbon 10s linear infinite;
}

@keyframes rotate-ribbon {
    to { transform: rotate(360deg); }
}

.cert-content {
    position: relative;
    z-index: 2;
}

.cert-icon-large {
    font-size: 5rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.cert-icon-large i {
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.5));
}

.cert-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.4;
}

.cert-provider {
    text-align: center;
    color: var(--primary-cyan);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cert-details {
    margin: 1.5rem 0;
}

.cert-detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.cert-detail-item i {
    color: var(--primary-cyan);
}

.cert-verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 1.5rem auto 0;
    width: fit-content;
    display: flex;
    justify-content: center;
}

.cert-verify-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.5);
}

.cert-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(6, 182, 212, 0.03) 10px, rgba(6, 182, 212, 0.03) 20px);
    pointer-events: none;
}

/* ========================================
   PROJECTS SECTION - FEATURE CARDS
======================================== */
.projects-section {
    padding: 120px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.project-card {
    background: var(--bg-card);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    border: 1px solid rgba(6, 182, 212, 0.2);
    transition: all 0.4s ease;
    overflow: hidden;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue), var(--accent-purple));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.project-card:hover::after {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(6, 182, 212, 0.3);
}

.project-number {
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(6, 182, 212, 0.05);
    line-height: 1;
}

.project-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    position: relative;
    z-index: 2;
}

.project-icon {
    font-size: 2.5rem;
    color: var(--primary-cyan);
}

.project-title {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.tech-stack .tech-tag {
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-link:hover {
    background: var(--primary-cyan);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.4);
}

.project-stats {
    display: flex;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ========================================
   RESUME SECTION - CALL TO ACTION
======================================== */
.resume-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-darker), var(--bg-dark));
    position: relative;
    overflow: hidden;
}

.resume-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent);
    animation: pulse-bg 5s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.resume-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.resume-decoration {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.resume-icon {
    font-size: 6rem;
    color: var(--primary-cyan);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.6));
}

.resume-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.resume-title {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.resume-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.resume-formats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.format-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 25px;
    color: var(--primary-cyan);
    font-size: 0.9rem;
}

/* ========================================
   FOOTER - MODERN DESIGN
======================================== */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-right {
    text-align: right;
}

.footer-copyright {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: 50%;
    color: var(--primary-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(6, 182, 212, 0.2);
    position: relative;
}

.footer-waves {
    pointer-events: none;
    z-index: 1;
}

.social-links,
.social-link {
    position: relative;
    z-index: 10;
}

.social-link:hover {
    background: var(--primary-cyan);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.5);
}

.social-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-card);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    margin-bottom: 5px;
}

.social-link:hover .social-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.footer-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    opacity: 0.5;
}

.footer-waves svg {
    width: 100%;
    height: 100%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(6, 182, 212, 0.4);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.6);
}

/* ========================================
   ANIMATIONS & EFFECTS
======================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"] {
    transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-up"] {
    transform: perspective(1000px) rotateX(-20deg);
}

[data-aos="flip-up"].aos-animate {
    transform: perspective(1000px) rotateX(0);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(18, 23, 46, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid rgba(6, 182, 212, 0.2);
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .glitch {
        font-size: 3rem;
    }

    .hero-role {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .title-line {
        width: 100px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    .image-decoration {
        display: none;
    }

    .skills-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
    }

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-number {
        font-size: 5rem;
        top: -10px;
        right: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
    cursor: pointer;
    display: inline-block;
}



    .resume-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .glitch {
        font-size: 2.5rem;
    }

    .hero-role {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .image-container {
        width: 250px;
        height: 250px;
    }

    .profile-icon {
        font-size: 8rem;
    }

    .project-card,
    .certificate-card {
        padding: 2rem;
    }

    .experience-image-wrapper {
        height: 200px;
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATION
======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}