/* ============================================
   ULTIMATE PORTFOLIO - COMBINED
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&display=swap');

:root {
    --primary: #00d4ff;
    --primary-dark: #0099cc;
    --secondary: #1ed760;
    --accent-gold: #ffd700;
    --dark: #0f1419;
    --darker: #0a0e14;
    --card: #141b28;
    --text: #e8eef7;
    --text-secondary: #a8b5c7;
    --border: rgba(0, 212, 255, 0.1);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    color: var(--text);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    perspective: 1000px;
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--text);
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: var(--transition);
}

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

/* ============================================
   HERO SECTION - FRESH START
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px 40px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: 100px;
    left: 50px;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-gold);
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

.hero-text {
    animation: slideUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 25px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -2px;
    animation: slideUp 0.8s ease-out 0.1s both;
    display: block;
}

.word {
    display: inline-block;
    font-size: 72px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--text);
    animation: fadeInScale 0.6s ease-out forwards;
    opacity: 0;
}

.word:nth-child(1) { animation-delay: 0.2s; }
.word:nth-child(2) { animation-delay: 0.3s; }
.word:nth-child(3) { animation-delay: 0.4s; }

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.stat-box {
    padding: 20px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    display: block;
}

.quick-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease-out 0.4s both;
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    border: 2px solid;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.btn-primary {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-secondary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.btn-tertiary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-tertiary:hover {
    background: rgba(30, 215, 96, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 215, 96, 0.2);
}

.hero-visual {
    position: relative;
    height: 500px;
    animation: slideInRight 0.8s ease-out 0.2s both;
}

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

.profile-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    object-fit: cover;
    position: relative;
    z-index: 10;
    transition: var(--transition);
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.5);
}

.image-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.floating-bubble {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    z-index: 8;
    animation: float 4s ease-in-out infinite;
    transition: visibility 0.3s, opacity 0.3s;
    cursor: pointer;
}

.bubble-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.bubble-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1s;
}

.bubble-3 {
    top: 30%;
    right: 15%;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.bubble-4 {
    bottom: 20%;
    right: 5%;
    animation-delay: 0.5s;
}

@keyframes dramaticPop {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.8);
    }
    20% {
        transform: scale(1.1);
        opacity: 1;
    }
    40% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 20px 10px rgba(0, 212, 255, 0.6);
    }
    60% {
        transform: scale(1.5);
        opacity: 0.7;
        box-shadow: 0 0 40px 20px rgba(0, 212, 255, 0.3);
    }
    100% {
        transform: scale(0);
        opacity: 0;
        box-shadow: 0 0 60px 30px rgba(0, 212, 255, 0);
    }
}

.bubble-pop {
    animation: dramaticPop 0.8s ease-out forwards !important;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}
/* ============================================
   RESPONSIVE - HERO
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 350px;
    }

    .profile-image {
        width: 240px;
        height: 240px;
    }

    .image-glow {
        width: 280px;
        height: 280px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-visual {
        height: 300px;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .image-glow {
        width: 240px;
        height: 240px;
    }

    .floating-bubble {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .quick-links {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

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

    .hero-visual {
        height: 250px;
    }

    .profile-image {
        width: 160px;
        height: 160px;
    }

    .image-glow {
        width: 200px;
        height: 200px;
    }

    .floating-bubble {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

.floating-bubble {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    z-index: 8;
    animation: float 4s ease-in-out infinite;
    transition: visibility 0.3s, opacity 0.3s;
}

.bubble-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.bubble-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1s;
}

.bubble-3 {
    top: 30%;
    right: 15%;
    transform: translateY(-50%);
    animation-delay: 2s;
}

.bubble-4 {
    bottom: 20%;
    right: 5%;
    animation-delay: 0.5s;
}

@keyframes dramaticPop {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.8);
    }
    20% {
        transform: scale(1.1);
        opacity: 1;
    }
    40% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 20px 10px rgba(0, 212, 255, 0.6);
    }
    60% {
        transform: scale(1.5);
        opacity: 0.7;
        box-shadow: 0 0 40px 20px rgba(0, 212, 255, 0.3);
    }
    100% {
        transform: scale(0);
        opacity: 0;
        box-shadow: 0 0 60px 30px rgba(0, 212, 255, 0);
    }
}

.bubble-pop {
    animation: dramaticPop 0.8s ease-out forwards !important;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
    overflow: hidden;
}

.about-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.02;
    pointer-events: none;
}

.decoration-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    right: -150px;
    filter: blur(80px);
}

.decoration-2 {
    width: 200px;
    height: 200px;
    background: var(--secondary);
    bottom: 20%;
    left: -100px;
    filter: blur(60px);
}

.decoration-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-gold);
    top: 50%;
    left: 10%;
    filter: blur(70px);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--text);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
    display: block;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text {
    animation: slideUp 0.8s ease-out;
}

.lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    position: relative;
}

.lead-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    animation: expandHeight 0.8s ease-out 0.2s forwards;
}

@keyframes expandHeight {
    from { height: 0; }
    to { height: 100%; }
}

.about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.skills-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.skill-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.6s ease-out;
}

.skill-item:hover::before {
    width: 100%;
}

.skill-item:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: var(--primary);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.skill-icon-container {
    position: relative;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon {
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.skill-item:hover .skill-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--secondary);
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

.skill-dot {
    position: absolute;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition-smooth);
    z-index: 1;
}

.skill-item:hover .skill-dot {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(30, 215, 96, 0.25), transparent);
}

.skill-content {
    flex: 1;
}

.skill-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
    transition: var(--transition);
}

.skill-item:hover .skill-content h4 {
    color: var(--secondary);
}

.skill-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    transition: var(--transition);
}

.skill-item:hover .skill-content p {
    color: var(--text);
}

.about-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 40px 0;
    opacity: 0.5;
}

.cert-highlight {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 20px;
}

.cert-badge {
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(30, 215, 96, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 25px;
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cert-badge::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.6s ease-out;
}

.cert-badge:hover::before {
    left: 100%;
}

.cert-badge:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25), rgba(30, 215, 96, 0.25));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.15);
}

.badge-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.cert-badge:hover .badge-text {
    color: var(--secondary);
}

/* ============================================
   PROJECTS SECTION
   ============================================ */

.projects {
    position: relative;
    padding: 100px 40px;
}

.section-header-with-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 80px;
    width: 100%;
}

.section-header-with-button > div {
    text-align: center;
}

.section-header-with-button .btn {
    margin: 0 auto;
    display: block;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: linear-gradient(135deg, rgba(20, 27, 40, 0.8), rgba(20, 27, 40, 0.4));
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: fadeUp 0.8s ease-out;
    transform-style: preserve-3d;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease-out;
    z-index: 10;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
}

.project-header {
    padding: 30px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.project-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(30, 215, 96, 0.2));
    border: 1px solid var(--primary);
    border-radius: 12px;
    font-size: 24px;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.project-card:hover .project-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.project-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

.project-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-body p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech {
    padding: 6px 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.tech:hover {
    background: rgba(0, 212, 255, 0.2);
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat {
    text-align: center;
    padding: 15px;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 8px;
}

.stat-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
}

.project-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.project-link:hover {
    gap: 15px;
    color: var(--accent-gold);
}
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    pointer-events: auto;
}

.project-link:hover {
    gap: 15px;
    color: var(--accent-gold);
}
.project-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border);
    pointer-events: none;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    pointer-events: auto;
}

@media (max-width: 768px) {
    .section-header-with-button {
        gap: 15px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.all-projects-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    padding-top: 40px;
    width: 100%;
}

.all-projects-button-container .btn {
    padding: 14px 32px;
    font-size: 15px;
}
/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */

.certifications {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, transparent 50%, rgba(0, 212, 255, 0.05) 100%);
}

.cert-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.cert-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -100px;
    left: -200px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -100px;
    right: -100px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    animation: slideDown 0.6s ease-out 0.1s both;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cert-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.cert-card-large {
    background: rgba(20, 27, 40, 0.9);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid var(--border);
    animation: fadeUp 0.8s ease-out;
}

.cert-card-large:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.cert-aws {
    border-top: 4px solid #ff9900;
}

.cert-azure {
    border-top: 4px solid #0078d4;
}

.cert-card-header {
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(30, 215, 96, 0.1));
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cert-badge-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border-radius: 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary);
}

.aws-badge {
    color: #ff9900;
    border-color: #ff9900;
}

.azure-badge {
    color: #0078d4;
    border-color: #0078d4;
}

.status-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.cert-card-body {
    padding: 30px;
}

.cert-card-body h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.cert-tagline {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 25px;
}

.cert-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.detail-item {
    padding: 15px;
    background: rgba(0, 212, 255, 0.08);
    border-radius: 10px;
    text-align: center;
}

.detail-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.detail-text {
    font-size: 12px;
    color: var(--text);
    font-weight: 600;
}

.cert-skills h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text);
}

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

.skill-tag {
    padding: 6px 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.skill-tag:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    border-color: transparent;
}

.cert-meta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.cert-year {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
}

.cert-card-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border);
}

.cert-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.cert-link:hover {
    color: var(--accent-gold);
}

.cert-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-box {
    background: rgba(20, 27, 40, 0.9);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: none;
}

.stat-box:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.stat-value {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-name {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.05) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    animation: slideUp 0.8s ease-out;
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text);
}

.contact-info p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-link {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.contact-link:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--primary);
    transform: translateX(10px);
}

.link-icon {
    font-size: 28px;
    color: var(--primary);
    min-width: 50px;
    display: flex;
    align-items: center;
}

.link-content span {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.link-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: slideUp 0.8s ease-out;
}

.form-group {
    position: relative;
}

.form-input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.form-input::placeholder {
    color: transparent;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.form-label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-secondary);
    font-size: 14px;
    pointer-events: none;
    transition: var(--transition);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -10px;
    left: 10px;
    background: var(--dark);
    padding: 0 5px;
    color: var(--primary);
    font-size: 12px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 40px;
    border-top: 1px solid var(--border);
    background: rgba(15, 20, 25, 0.5);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
    transition: var(--transition);
    text-decoration: none;
}

.footer-links a:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

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

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        height: 350px;
    }

    .profile-image {
        width: 240px;
        height: 240px;
    }

    .image-glow {
        width: 280px;
        height: 280px;
    }

    .contact-wrapper,
    .cert-showcase,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 12px;
    }

    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .about,
    .projects,
    .certifications,
    .contact {
        padding: 60px 20px;
    }

    .hero-visual {
        height: 300px;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .image-glow {
        width: 240px;
        height: 240px;
    }

    .floating-bubble {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .quick-links {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cert-details {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

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

    .section-title {
        font-size: 28px;
    }

    .nav-logo {
        font-size: 20px;
    }

    .nav-menu {
        display: none;
    }

    .hero-visual {
        height: 250px;
    }

    .profile-image {
        width: 160px;
        height: 160px;
    }

    .image-glow {
        width: 200px;
        height: 200px;
    }

    .floating-bubble {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}