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

/* ==================== VARIABLES ==================== */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --border: #334155;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* ==================== BASE ==================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

section {
    padding: 5rem 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    top: -200px;
    right: -200px;
    animation: float 8s ease-in-out infinite;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

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

.greeting {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-name {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--text);
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideUp 0.8s ease 0.2s backwards;
}

.profile-img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid var(--primary);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.4);
    position: relative;
    z-index: 2;
    transition: transform 0.3s;
}

.profile-img:hover {
    transform: scale(1.05);
}

.profile-placeholder {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 10rem;
    font-weight: 800;
    color: white;
    border: 5px solid var(--primary);
    box-shadow: 0 0 60px rgba(59, 130, 246, 0.4);
    position: relative;
    z-index: 2;
}

.image-bg {
    position: absolute;
    width: 450px;
    height: 450px;
    background: var(--gradient);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
    z-index: 1;
}

/* ==================== SECTION TITLE ==================== */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* ==================== EDUCATION + LANGUAGE SECTION ==================== */
.about {
    background: var(--dark-light);
}

.education-language-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Agar faqat bittasi bo'lsa, to'liq kenglikda */
.education-language-wrapper:has(.education-column:only-child),
.education-language-wrapper:has(.language-column:only-child) {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.education-column,
.language-column {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.education-column:hover,
.language-column:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.sub-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================== EDUCATION TIMELINE ==================== */
.education-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.timeline-card {
    display: flex;
    gap: 1.5rem;
    background: var(--dark-light);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s;
    position: relative;
}

.timeline-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient);
    border-radius: 1rem 0 0 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.timeline-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
    transform: translateX(5px);
}

.timeline-card:hover::before {
    opacity: 1;
}

.timeline-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s;
}

.timeline-card:hover .timeline-icon {
    background: var(--gradient);
    transform: scale(1.1) rotate(5deg);
}

.timeline-icon svg {
    color: var(--primary);
    transition: all 0.3s;
}

.timeline-card:hover .timeline-icon svg {
    color: white;
}

.timeline-card-content {
    flex: 1;
}

.timeline-date {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 999px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.timeline-degree {
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.timeline-specialization {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== LANGUAGES ==================== */
.language-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.language-item {
    display: flex;
    align-items: center;
    background: var(--dark-light);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.language-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s;
}

.language-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
    transform: translateX(5px);
}

.language-item:hover::before {
    opacity: 1;
}

.language-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.language-item:hover .language-icon {
    background: var(--gradient);
    transform: scale(1.1) rotate(5deg);
}

.language-icon svg {
    color: var(--primary);
    transition: all 0.3s;
}

.language-item:hover .language-icon svg {
    color: white;
}

.language-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.language-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.language-level {
    display: inline-block;
    padding: 0.25rem 0.875rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 999px;
    color: var(--secondary);
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
}

/* Progress bar for language level */
.language-progress {
    width: 100%;
    height: 6px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 999px;
    margin-top: 0.75rem;
    overflow: hidden;
}

.language-progress-bar {
    height: 100%;
    background: var(--gradient);
    border-radius: 999px;
    transition: width 1s ease-out;
}

/* ==================== SKILLS SECTION ==================== */
.skills {
    background: var(--dark);
}

.skills-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.skill-category {
    background: var(--dark-light);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.skill-category:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
}

.category-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
}

.category-icon svg {
    color: var(--primary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.skill-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    transition: all 0.3s;
    cursor: pointer;
}

.skill-item:hover {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.skill-name {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    color: var(--text);
}

/* ==================== PROJECTS SECTION ==================== */
.experience {
    background: var(--dark-light);
}

.projects-section {
    margin-bottom: 4rem;
}

.projects-section:last-child {
    margin-bottom: 0;
}

.projects-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text);
}

.projects-section-title svg {
    color: var(--primary);
}

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

.project-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
}

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

.project-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
    transform: translateY(-8px);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.project-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
}

.project-icon svg {
    color: var(--primary);
}

.work-type-badge {
    padding: 0.375rem 1rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-team {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--secondary);
}

.badge-active {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.badge-learning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--warning);
}

.badge-personal {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--primary);
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tech-section {
    margin-bottom: 1.5rem;
}

.tech-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-badge {
    padding: 0.375rem 0.875rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 999px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.devops-badge {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--secondary);
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    transition: all 0.3s;
}

.project-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: var(--dark);
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-card-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem;
    background: var(--dark-light);
    border: 1px solid var(--border);
    border-radius: 1rem;
    transition: all 0.3s;
    cursor: pointer;
}

.contact-card-link:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-card-link:hover .contact-icon {
    background: var(--gradient);
    transform: scale(1.1) rotate(5deg);
}

.contact-card-link:hover .contact-icon svg {
    color: white;
}

.contact-icon svg {
    color: var(--primary);
    transition: all 0.3s;
}

.contact-details h4 {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-details p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.contact-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-light);
    border-top: 1px solid var(--border);
    padding: 2rem 0;
    text-align: center;
    color: var(--text-muted);
}

/* ==================== SCROLL TO TOP ==================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.6);
}

.scroll-top.show {
    display: flex;
}

/* ==================== ANIMATIONS ==================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-buttons,
    .social-links {
        justify-content: center;
    }

    .education-language-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-card {
        flex-direction: column;
        text-align: center;
    }

    .timeline-icon {
        margin: 0 auto;
    }

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

    .profile-img,
    .profile-placeholder {
        width: 300px;
        height: 300px;
    }

    .profile-placeholder {
        font-size: 8rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        padding: 3rem 0;
        gap: 2rem;
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link::after {
        display: none;
    }

    .profile-img,
    .profile-placeholder {
        width: 250px;
        height: 250px;
    }

    .profile-placeholder {
        font-size: 6rem;
    }

    .image-bg {
        width: 300px;
        height: 300px;
    }

    .education-column,
    .language-column {
        padding: 1.5rem;
    }

    .sub-section-title {
        font-size: 1.5rem;
    }

    .timeline-card,
    .language-item {
        padding: 1.25rem;
    }

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

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-cta {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .profile-img,
    .profile-placeholder {
        width: 200px;
        height: 200px;
    }

    .profile-placeholder {
        font-size: 5rem;
    }

    .timeline-icon,
    .language-icon {
        width: 44px;
        height: 44px;
    }

    .timeline-title {
        font-size: 1.125rem;
    }

    .language-name {
        font-size: 1rem;
    }

    .timeline-card {
        padding: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .skill-item {
        padding: 0.875rem 1rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    .contact-card-link {
        padding: 1.25rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }
}