/* =========================
   RESET & BASE
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #050816;
    color: #ffffff;
    font-family: "Inter", "Outfit", sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: rgba(34, 211, 238, 0.3);
    color: #ffffff;
}

/* =========================
   NAVBAR
========================= */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5, 8, 22, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    transition: all 0.4s ease;
}

nav.scrolled {
    background: rgba(5, 8, 22, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 14px 8%;
}

.logo {
    font-family: "Outfit", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    user-select: none;
}

.logo-bracket {
    color: #22d3ee;
    font-weight: 400;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 12px;
}

nav ul li a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

nav ul li a:hover {
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.08);
}

nav ul li a.active-link {
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.12);
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.1);
}

/* Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #94a3b8;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: #22d3ee;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: #22d3ee;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 8% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dot grid background */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #22d3ee 0%, transparent 70%);
    opacity: 0.08;
    top: -100px;
    left: -100px;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #a855f7 0%, transparent 70%);
    opacity: 0.08;
    bottom: -80px;
    right: -80px;
    z-index: 0;
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.intro {
    color: #22d3ee;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
}

.wave {
    display: inline-block;
    animation: wave 2.5s infinite;
    transform-origin: 70% 70%;
}

@keyframes wave {
    0%, 60%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
}

.hero h1 {
    font-family: "Outfit", sans-serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    color: #e2e8f0;
}

.name-accent {
    background: linear-gradient(135deg, #22d3ee, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h2 {
    font-size: 22px;
    font-weight: 400;
    color: #64748b;
    margin-bottom: 28px;
    min-height: 1.5em;
    letter-spacing: 0.5px;
}

.hero h2 .cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #22d3ee;
    margin-left: 2px;
    animation: blink 1s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.description {
    color: #94a3b8;
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(148, 163, 184, 0.3);
    border-radius: 14px;
    position: relative;
}

.scroll-indicator span::after {
    content: "";
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: #22d3ee;
    border-radius: 4px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* =========================
   PARTICLES
========================= */

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(34, 211, 238, 0.4);
    border-radius: 50%;
    bottom: -10px;
    animation: floatUp linear infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(-100vh) scale(0.3);
        opacity: 0;
    }
}

/* =========================
   BUTTONS
========================= */

.hero-buttons,
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}

.primary-btn {
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    color: #020617;
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.25);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34, 211, 238, 0.4);
}

.secondary-btn {
    border: 1px solid rgba(34, 211, 238, 0.3);
    color: #94a3b8;
    background: rgba(34, 211, 238, 0.05);
}

.secondary-btn:hover {
    background: rgba(34, 211, 238, 0.12);
    color: #22d3ee;
    border-color: #22d3ee;
    transform: translateY(-3px);
}

/* =========================
   SOCIAL ICONS
========================= */

.social-icons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #475569;
    font-size: 22px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #22d3ee;
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(34, 211, 238, 0.15);
}

/* =========================
   SECTION STYLING
========================= */

.section {
    padding: 100px 8%;
    position: relative;
}

.section-title {
    font-family: "Outfit", sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(34, 211, 238, 0.3), transparent);
    max-width: 300px;
}

.section-number {
    font-family: "Inter", monospace;
    font-size: 20px;
    font-weight: 600;
    color: #22d3ee;
}

/* =========================
   GLASS CARD
========================= */

.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 40px;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 17px;
    transition: all 0.4s ease;
}

.card:hover {
    border-color: rgba(34, 211, 238, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

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

.about-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 16px;
}

.about-text strong {
    color: #22d3ee;
    font-weight: 600;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.stat {
    text-align: center;
    padding: 20px 28px;
    background: rgba(34, 211, 238, 0.04);
    border: 1px solid rgba(34, 211, 238, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.25);
    box-shadow: 0 4px 16px rgba(34, 211, 238, 0.08);
}

.stat-number {
    font-family: "Outfit", sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #22d3ee;
}

.stat-suffix {
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #22d3ee;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================
   SKILLS
========================= */

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

.skill-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s ease;
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: default;
}

.skill-card i {
    font-size: 28px;
    color: #22d3ee;
    transition: all 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.06);
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.1);
    color: #e2e8f0;
}

.skill-card:hover i {
    transform: scale(1.15);
}

/* =========================
   EXPERIENCE
========================= */

.experience-timeline {
    position: relative;
    padding-left: 40px;
}

.experience-timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #22d3ee, rgba(168, 85, 247, 0.3), transparent);
}

.experience-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.35s ease;
    margin-bottom: 24px;
}

.experience-marker {
    position: absolute;
    left: -49px;
    top: 40px;
    width: 16px;
    height: 16px;
    background: #050816;
    border: 3px solid #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(34, 211, 238, 0.3);
}

.experience-card:hover {
    border-color: rgba(34, 211, 238, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.experience-header h3 {
    font-family: "Outfit", sans-serif;
    font-size: 26px;
    color: #e2e8f0;
    margin-bottom: 6px;
    font-weight: 700;
}

.experience-header h4 {
    font-size: 16px;
    color: #22d3ee;
    font-weight: 500;
}

.experience-duration {
    padding: 8px 16px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.15);
    border-radius: 999px;
    color: #67e8f9;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.experience-description {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 16px;
}

.client-projects {
    display: grid;
    gap: 16px;
}

.client-project {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}

.client-project:hover {
    border-color: rgba(34, 211, 238, 0.15);
    background: rgba(34, 211, 238, 0.02);
}

.client-project h5 {
    color: #e2e8f0;
    font-size: 18px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.client-project h5 i {
    color: #22d3ee;
    font-size: 16px;
}

.client-project ul {
    padding-left: 20px;
}

.client-project li {
    color: #94a3b8;
    margin-bottom: 8px;
    line-height: 1.7;
    font-size: 15px;
}

.client-project li::marker {
    color: #22d3ee;
}

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

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.project-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

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

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 22, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-overlay i {
    color: #22d3ee;
    font-size: 28px;
}

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

.project-content {
    padding: 24px;
}

.project-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #22d3ee;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.project-content h3 {
    font-family: "Outfit", sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: #e2e8f0;
    font-weight: 700;
}

.project-content p {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 15px;
}

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

.tech-stack span {
    background: rgba(34, 211, 238, 0.08);
    color: #67e8f9;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(34, 211, 238, 0.12);
}

.project-buttons {
    display: flex;
    gap: 10px;
}

.project-btn {
    flex: 1;
    text-align: center;
    padding: 11px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.repo-btn {
    background: rgba(34, 211, 238, 0.1);
    color: #22d3ee;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.repo-btn:hover {
    background: #22d3ee;
    color: #020617;
    box-shadow: 0 4px 16px rgba(34, 211, 238, 0.25);
}

.live-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.live-btn:hover {
    border-color: rgba(34, 211, 238, 0.3);
    color: #22d3ee;
    background: rgba(34, 211, 238, 0.05);
}

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

.contact-card {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.contact-card h3 {
    font-family: "Outfit", sans-serif;
    font-size: 28px;
    color: #e2e8f0;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-card p {
    margin-bottom: 32px;
    color: #94a3b8;
}

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

footer {
    text-align: center;
    padding: 40px 8%;
    color: #475569;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.footer-name {
    color: #22d3ee;
    font-weight: 600;
}

.footer-year {
    margin-top: 6px;
    font-size: 13px;
    color: #334155;
}

/* =========================
   POPUP
========================= */

.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    background: #0f172a;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease;
}

.popup-icon {
    font-size: 40px;
    color: #f59e0b;
    margin-bottom: 16px;
}

.popup-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #94a3b8;
    line-height: 1.6;
}

.popup-content button {
    padding: 12px 32px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #22d3ee, #06b6d4);
    color: #020617;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-content button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(34, 211, 238, 0.3);
}

.hidden {
    display: none !important;
}

/* =========================
   SCROLL REVEAL ANIMATION
========================= */

.card,
.skill-card,
.project-card,
.experience-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.show-element {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Stagger skill cards */
.skill-card:nth-child(2) { transition-delay: 0.05s; }
.skill-card:nth-child(3) { transition-delay: 0.1s; }
.skill-card:nth-child(4) { transition-delay: 0.15s; }
.skill-card:nth-child(5) { transition-delay: 0.2s; }
.skill-card:nth-child(6) { transition-delay: 0.25s; }
.skill-card:nth-child(7) { transition-delay: 0.3s; }
.skill-card:nth-child(8) { transition-delay: 0.35s; }
.skill-card:nth-child(9) { transition-delay: 0.4s; }
.skill-card:nth-child(10) { transition-delay: 0.45s; }
.skill-card:nth-child(11) { transition-delay: 0.5s; }
.skill-card:nth-child(12) { transition-delay: 0.55s; }

/* Stagger project cards */
.project-card:nth-child(2) { transition-delay: 0.1s; }
.project-card:nth-child(3) { transition-delay: 0.2s; }

/* =========================
   ANIMATIONS
========================= */

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

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

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

/* =========================
   RESPONSIVE — TABLET
========================= */

@media (max-width: 900px) {

    .hero h1 {
        font-size: 56px;
    }

    .hero h2 {
        font-size: 18px;
    }

    .description {
        font-size: 16px;
    }

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

    .about-card {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        justify-content: center;
    }

    .experience-timeline {
        padding-left: 30px;
    }
}

/* =========================
   RESPONSIVE — MOBILE
========================= */

@media (max-width: 768px) {

    nav {
        padding: 16px 6%;
    }

    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(5, 8, 22, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 40px 40px;
        gap: 8px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }

    nav ul.active {
        right: 0;
    }

    nav ul li a {
        font-size: 16px;
        padding: 12px 16px;
        display: block;
    }

    .hero {
        padding: 140px 6% 80px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero h2 {
        font-size: 16px;
    }

    .description {
        font-size: 15px;
    }

    .section {
        padding: 80px 6%;
    }

    .section-title {
        font-size: 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-title::after {
        display: none;
    }

    .card {
        padding: 28px;
    }

    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat {
        flex: 1;
        min-width: 100px;
    }

    .project-buttons {
        flex-direction: column;
    }

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

    .experience-timeline {
        padding-left: 24px;
    }

    .experience-marker {
        left: -33px;
        width: 12px;
        height: 12px;
    }

    .experience-card {
        padding: 24px;
    }

    .experience-header {
        flex-direction: column;
    }

    .scroll-indicator {
        display: none;
    }

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

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

@media (max-width: 480px) {

    .hero h1 {
        font-size: 34px;
    }

    .hero h2 {
        font-size: 14px;
    }

    .about-stats {
        flex-direction: column;
    }

    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .skill-card {
        padding: 20px 12px;
    }

    .skill-card i {
        font-size: 22px;
    }

    .skill-card span {
        font-size: 13px;
    }
}