/* ========================================
   Corporate Modern Color Palette
   ======================================== */
:root {
    --charcoal: #2C3E50;
    --royal-blue: #3498DB;
    --light-blue: #5DADE2;
    --soft-gray: #ECF0F1;
    --white: #FFFFFF;
    --success-green: #27AE60;
    --warning-orange: #E67E22;
    --shadow: rgba(44, 62, 80, 0.1);
    --shadow-hover: rgba(44, 62, 80, 0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--soft-gray);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   Header Section
   ======================================== */
.header {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--royal-blue) 100%);
    color: var(--white);
    padding: 60px 20px;
    box-shadow: 0 4px 12px var(--shadow);
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid var(--white);
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.profile-info {
    max-width: 600px;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.title {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
}

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

.contact-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-link i {
    font-size: 1.1rem;
}

/* ========================================
   Navigation Menu
   ======================================== */
.main-nav {
    background-color: var(--white);
    box-shadow: 0 2px 8px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.main-nav .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: 3px;
    z-index: 101;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--charcoal);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.nav-links li {
    margin: 0;
}

.nav-link {
    display: block;
    padding: 18px 25px;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: var(--royal-blue);
    border-bottom-color: var(--royal-blue);
}

.nav-link.active {
    color: var(--royal-blue);
    border-bottom-color: var(--royal-blue);
}

/* ========================================
   KPI Dashboard Cards
   ======================================== */
.kpi-section {
    padding: 40px 20px 0px;
    background-color: var(--soft-gray);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.kpi-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.kpi-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--royal-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
}

.kpi-content {
    flex: 1;
}

.kpi-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--royal-blue);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.kpi-number::after {
    content: '+';
    font-size: 2rem;
    font-weight: 700;
}

.kpi-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-blue);
    line-height: 1;
}

.kpi-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: 5px;
}

.kpi-sublabel {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 3px;
}

/* ========================================
   Main Content Grid
   ======================================== */
.main-content {
    padding: 40px 20px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.content-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px var(--shadow);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--royal-blue);
}

.section-title.centered {
    text-align: center;
    border-bottom: none;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1rem;
}

/* ========================================
   Professional Summary
   ======================================== */
.summary-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.summary-text strong {
    color: var(--royal-blue);
    font-weight: 600;
}

/* ========================================
   Experience Timeline
   ======================================== */
.experience-timeline {
    position: relative;
}

.experience-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.experience-item:last-child {
    border-bottom: none;
}

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

.experience-company {
    flex: 1;
}

.experience-company h3 {
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.experience-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

.experience-role {
    font-size: 1.1rem;
    color: var(--royal-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.expand-btn {
    background: none;
    border: none;
    color: var(--royal-blue);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.expand-btn:hover {
    transform: scale(1.1);
}

.experience-item.collapsed .expand-btn i {
    transform: rotate(0deg);
}

.experience-item:not(.collapsed) .expand-btn i {
    transform: rotate(180deg);
}

.experience-details {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.experience-item.collapsed .experience-details {
    max-height: 0;
}

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

.experience-details li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
    color: #555;
}

.experience-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--royal-blue);
    font-weight: bold;
}

.experience-details strong {
    color: var(--charcoal);
    font-weight: 600;
}

/* ========================================
   Skills & Proficiency (Segmented Bars)
   ======================================== */
.skills-container {
    margin-bottom: 15px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
}

.skill-level {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--royal-blue);
    padding: 3px 10px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 12px;
}

.skill-bar {
    display: flex;
    gap: 4px;
    height: 12px;
}

.segment {
    flex: 1;
    background: var(--soft-gray);
    border-radius: 3px;
    transition: all 0.4s ease;
    opacity: 0.3;
}

.segment.filled {
    background: linear-gradient(90deg, var(--royal-blue), var(--light-blue));
    opacity: 1;
    animation: fillSegment 0.6s ease forwards;
}

@keyframes fillSegment {
    from {
        transform: scaleX(0);
        opacity: 0;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

.segment:hover {
    transform: scaleY(1.3);
}

.skill-legend {
    margin-top: 15px;
    padding-top: 15px;
    font-size: 0.9rem;
    border-top: 1px solid #e0e0e0;
    color: #7f8c8d;
    text-align: center;
}

/* ========================================
   Technology Stack
   ======================================== */
.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-category h4 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 12px;
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tag {
    background: linear-gradient(135deg, var(--light-blue), var(--royal-blue));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.tech-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.tech-tag:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--charcoal);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    margin-bottom: 8px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ========================================
   Certifications Section
   ======================================== */
.certifications-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.cert-category {
    margin-bottom: 40px;
}

.cert-category:last-child {
    margin-bottom: 0;
}

.cert-category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--royal-blue);
    display: flex;
    align-items: center;
    gap: 12px;
}

.cert-category-title i {
    color: var(--royal-blue);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.cert-card {
    background: var(--soft-gray);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
    opacity: 0;
    transform: translateY(20px);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px var(--shadow-hover);
}

.cert-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.ai-cert {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.azure-cert {
    background: linear-gradient(135deg, var(--royal-blue), #2980b9);
}

.sre-cert {
    background: linear-gradient(135deg, var(--success-green), #229954);
}

.itil-cert {
    background: linear-gradient(135deg, var(--warning-orange), #d35400);
}

.agile-cert {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.devops-cert {
    background: linear-gradient(135deg, #16a085, #138d75);
}

/* Certification Logo Wrapper */
.cert-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cert-card:hover .cert-icon-wrapper {
    transform: scale(1.1);
}

.cert-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.cert-card h4 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-weight: 600;
}

.cert-org {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 5px;
}

.cert-date {
    font-size: 0.85rem;
    color: var(--royal-blue);
    font-weight: 600;
}

/* ========================================
   Education Section
   ======================================== */
.education-section {
    padding: 40px 0px;
    background-color: var(--soft-gray);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.education-card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.education-card:hover {
    transform: translateY(-5px);
}

.education-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.education-card h4 {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-weight: 700;
    line-height: 1.3;
}

.education-field {
    font-size: 1rem;
    color: var(--royal-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.education-school {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.4;
}

.education-date {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 8px;
}

.education-honors {
    font-size: 0.95rem;
    color: var(--success-green);
    margin-top: 10px;
}

.education-location {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

/* ========================================
   Hobbies Section
   ======================================== */
.hobbies-section {
    padding: 40px 20px;
    background-color: var(--white);
}

.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.hobby-card {
    background: var(--soft-gray);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.hobby-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--shadow-hover);
}

.hobby-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--warning-orange), #d35400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    flex-shrink: 0;
}

.hobby-content {
    flex: 1;
}

.hobby-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--warning-orange);
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hobby-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-top: 5px;
}

.hobby-sublabel {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 3px;
}


/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 40px 20px;
    background-color: var(--soft-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px var(--shadow-hover);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--royal-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.contact-card h4 {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-detail {
    font-size: 0.95rem;
    color: var(--royal-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail:hover {
    color: var(--light-blue);
    text-decoration: underline;
}

.contact-card p.contact-detail {
    color: #555;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 4px 12px var(--shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--royal-blue), var(--light-blue));
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-response {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    display: none;
}

.form-response.success {
    background-color: rgba(39, 174, 96, 0.1);
    color: var(--success-green);
    border: 1px solid var(--success-green);
    display: block;
}

.form-response.error {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid #e74c3c;
    display: block;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.footer-content {
    opacity: 0.9;
}

.footer-update {
    margin-top: 8px;
    font-size: 0.9rem;
    opacity: 0.75;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* Mobile Navigation */
    .main-nav {
        background-color: transparent;
        box-shadow: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding-top: 80px;
        box-shadow: -4px 0 12px var(--shadow);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        border-bottom: 1px solid var(--soft-gray);
    }

    .nav-link {
        padding: 20px 25px;
        border-bottom: none;
        border-left: 3px solid transparent;
    }

    .nav-link:hover,
    .nav-link.active {
        border-bottom: none;
        border-left-color: var(--royal-blue);
        background-color: rgba(52, 152, 219, 0.05);
    }

    /* Profile Section */
    .profile-section {
        flex-direction: column;
        text-align: center;
    }

    .name {
        font-size: 2rem;
    }

    .title {
        font-size: 1rem;
    }

    .contact-links {
        justify-content: center;
    }

    /* KPI Grid */
    .kpi-grid {
        grid-template-columns: 1fr;
    }

    /* Smaller Certification Cards - 2 Columns on Mobile */
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .cert-card {
        padding: 12px 8px;
    }

    .cert-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .cert-logo {
        width: 28px;
        height: 28px;
    }

    .cert-card h4 {
        font-size: 0.8rem;
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .cert-org {
        font-size: 0.75rem;
        margin-bottom: 3px;
    }

    .cert-date {
        font-size: 0.7rem;
    }

    /* Education Grid */
    .education-grid {
        grid-template-columns: 1fr;
    }

    /* Hobbies Grid */
    .hobbies-grid {
        grid-template-columns: 1fr;
    }


    /* Contact Grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .profile-photo {
        width: 120px;
        height: 120px;
    }

    .name {
        font-size: 1.75rem;
    }

    .kpi-number {
        font-size: 2rem;
    }

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

    .tech-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

/* ========================================
   Animations & Utilities
   ======================================== */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}