/* ============================================== */
/* === PROFESSIONAL THEME OVERHAUL (FINAL) === */
/* ============================================== */

/* GENERAL STYLES */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #F8F9FA;
    color: #212529;
    overflow-x: hidden;
    position: relative;
}

/* NAVIGATION BAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000; 
    box-sizing: border-box;
    border-bottom: 1px solid #E0E0E0;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    text-decoration: none;
    z-index: 1001;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.navbar .nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.navbar .nav-links li a:hover {
    color: #0056b3;
    transform: scale(1.1);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001;
}

/* HERO SECTION */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    padding: 0 100px;
    gap: 50px;
    box-sizing: border-box;
    background: linear-gradient(to right, #ffffff, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-text {
    max-width: 650px;
    position: relative;
    z-index: 1;
    animation: fadeIn 1.5s ease;
}

.hero-text .title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #212529;
    font-weight: 800;
    min-height: 1.2em; 
}

.typewriter {
    color: #0056b3; 
    position: relative;
}

/* --- NARROW CURSOR & BLINKING EFFECT --- */
.cursor {
    font-size: 3.5rem; 
    color: #333;      
    font-weight: 300;
    opacity: 1;
    animation: blink 0.8s infinite;
    display: inline;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: #555;
    opacity: 1;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 550px;
}

.hero-socials {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.hero-socials a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.hero-socials a:hover {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
}

.hero-btn {
    padding: 14px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    background: #0056b3;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    display: inline-block;
}

.hero-btn:hover {
    background: #004494;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.4);
}

.hero-images {
    position: relative;
    z-index: 1;
    animation: fadeInUp 2s ease;
}

.img-blob {
    width: 450px;
    height: 450px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    animation: blobFloat 8s ease-in-out infinite;
    background: #fff;
}

@keyframes blobFloat {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.img-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Shared Section Styles */
.about-section,
.skills-section,
.projects-section,
.certificates-section,
.contact-section {
    padding: 80px 50px;
    max-width: 1400px;
    margin: auto;
    animation: fadeInUp 1.5s ease;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-section h2,
.skills-section h2,
.projects-section h2,
.certificates-section h2,
.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0056b3;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 3px solid #E0E0E0;
    display: inline-block;
}


/* === ABOUT SECTION (UPDATED) === */
.about-section {
    background: #f1f6fc;
}

.about-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 70px;
    max-width: 1100px; 
    margin: 40px auto 0;
    text-align: left;
    
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); 
    padding: 40px; 
    border: 1px solid #e0e0e0;
}

.about-image {
    flex-basis: 300px; 
    flex-shrink: 0;
    position: relative;
    width: 87%;
    padding-top: 35%; 
    height: 0; 
    overflow: hidden;
}

.about-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 10px; 
    box-shadow: 0 8px 20px rgba(0,0,0,0.15); 
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: translateY(-5px); 
}

.about-text h3 {
    font-size: 1.6rem; 
    font-weight: 700;
    color: #212529; 
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0056b3; 
    display: inline-block; 
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 18px;
}

.about-text p strong {
    color: #0056b3; 
}

.about-text .btn {
    display: inline-block;
    padding: 10px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #0056b3;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.25);
    transition: 0.3s;
}

.about-text .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3);
}

/* === SKILLS SECTION === */
.skills-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    margin-top: 50px;
    grid-auto-rows: 1fr; 
}

.skill-category-card {
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.skill-category-card h3 {
    font-size: 1.25rem;
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E0E0E0;
}

.skill-category-card h3 i {
    font-size: 1.3rem;
    color: #0056b3;
    opacity: 0.8;
}

.skill-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.1);
    border-color: #0056b3;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.skill-tag {
    background: #EBF2F7;
    color: #0056b3;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid #D1E0EB;
    transition: all 0.2s ease;
    cursor: default;
}

.skill-tag:hover {
    background: #CCE4F2;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.1);
}

/* === PROJECTS SECTION === */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    margin-bottom: 40px;
    grid-auto-rows: 1fr; 
}

.project-card {
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #E0E0E0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: left;
    width: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 86, 179, 0.15);
    border-color: #0056b3;
}

.project-image {
    width: 100%;
    height: 140px; 
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-content h3 {
    font-size: 1.1rem;
    color: #212529;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.project-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 12px;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.project-tags span {
    font-size: 0.75rem;
    background: #E3F2FD;
    color: #0056b3;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 500;
}

.project-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 10px;
    margin-top: auto;
}

.github-link {
    text-decoration: none;
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.github-link:hover {
    color: #0056b3;
}

.more-projects {
    margin-top: 30px;
    padding: 10px;
}

.more-projects p {
    font-size: 1.1rem;
    color: #555;
}

.more-projects a {
    color: #0056b3;
    font-weight: 600;
    text-decoration: none;
    margin-left: 5px;
    transition: opacity 0.3s;
}

.more-projects a:hover {
    text-decoration: underline;
    opacity: 0.8;
}


/* === CERTIFICATES SECTION === */
.certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
}

.certificate-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 86, 179, 0.15);
    border-color: #0056b3;
}

.cert-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.cert-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.certificate-card:hover .cert-img-wrapper img {
    transform: scale(1.1);
}

.cert-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cert-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px 0;
}

.cert-body .issuer {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 20px 0;
    font-weight: 500;
}

.cert-link {
    margin-top: auto;
    text-decoration: none;
    color: #0056b3;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.cert-link i {
    transition: transform 0.3s;
}

.cert-link:hover {
    color: #003d80;
}

.cert-link:hover i {
    transform: translateX(5px);
}


/* === CONTACT SECTION === */
.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: -20px;
    margin-bottom: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #E0E0E0;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.contact-info-card h3 {
    font-size: 1.8rem;
    color: #0056b3;
    margin-bottom: 15px;
}

.contact-info-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: #E3F2FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.detail-item a, .detail-item span {
    color: #333;
    font-size: 1.05rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    word-break: break-all; 
}

.detail-item a:hover {
    color: #0056b3;
}

.social-links-bottom {
    margin-top: auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.social-links-bottom p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #F8F9FA;
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #0056b3;
    color: #fff;
    border-color: #0056b3;
    transform: translateY(-3px);
}

.contact-form-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #E0E0E0;
    text-align: left;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:nth-child(3) {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.form-group textarea {
    height: 100%;
    min-height: 120px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #DDE1E4;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 4px rgba(0, 86, 179, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #0056b3;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.25);
    margin-top: auto;
}

.submit-btn:hover {
    background: #004494;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.35);
}

/* === PREMIUM LIGHT FOOTER === */
.footer {
    background: #FFFFFF; 
    color: #555; 
    padding: 80px 20px 30px;
    font-size: 0.95rem;
    margin-top: 100px;
    border-top: 1px solid #E0E0E0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    text-align: left;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #212529; 
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-bio {
    line-height: 1.6;
    max-width: 300px;
    color: #666;
}

.footer-col h4 {
    font-size: 1.1rem;
    color: #0056b3; 
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0056b3;
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: #E3F2FD; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0056b3; 
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #0056b3;
    color: #fff; 
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #f0f0f0;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #777;
}


/* ============================================== */
/* === RESPONSIVE & MOBILE STYLES (CRITICAL) === */
/* ============================================== */

@media (max-width: 992px) {
    .hero {
        padding: 120px 20px 50px 20px;
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        align-items: center;
    }

    .hero-socials {
        justify-content: center;
    }

    .img-blob {
        width: 300px;
        height: 300px;
    }

    .skills-grid-new, 
    .projects-grid,
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr); 
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-card, 
    .contact-form-card {
        height: auto;
    }
}

/* For Mobile (up to 768px) */
@media (max-width: 768px) {
    
    .navbar {
        padding: 10px 20px;
    }

    .hamburger {
        display: block;
        z-index: 1001; 
        color: #333; 
    }

    /* --- FINAL MOBILE SIDEBAR MENU STYLES --- */
    .navbar .nav-links {
        display: flex; 
        position: fixed; 
        top: 0;
        /* Start off-screen to the right */
        right: -60%; 
        
        /* FINAL: Lighter, semi-transparent background with blur */
        background: rgba(255, 255, 255, 0.95); 
        backdrop-filter: blur(10px); 
        
        width: 60%; /* Smaller width as requested */
        height: 100vh; 
        flex-direction: column;
        justify-content: flex-start; /* Start from the top */
        align-items: center;
        gap: 0; /* Reduced gap between links */
        z-index: 999;
        transition: right 0.4s ease-in-out; 
        box-shadow: -5px 0 15px rgba(0,0,0,0.1); 
        padding-top: 80px; /* Space for the navbar height */
        box-sizing: border-box; 
    }

    .navbar .nav-links.active {
        right: 0; /* Slide menu in */
    }

    .navbar .nav-links li {
        width: 100%;
        text-align: center;
    }

    .navbar .nav-links li a {
        display: block;
        padding: 18px 0; /* Adjusted padding for better fit and reduced height */
        font-size: 1.2rem; 
        color: #333; 
        font-weight: 600; 
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .navbar .nav-links li a:hover {
        background-color: #EBF2F7; /* Light hover background */
        color: #0056b3; 
        transform: none; 
    }
    /* ------------------------------------ */


    /* Hero */
    .hero {
        padding: 120px 20px 40px 20px;
        flex-direction: column-reverse;
    }

    .hero-text .title {
        font-size: 2.5rem; 
    }

    .hero-text .title .typewriter,
    .hero-text .title .cursor {
        white-space: nowrap; 
        display: inline-block; 
    }

    .cursor {
        font-size: 2.5rem; 
    }
    

    /* Sections */
    .about-section,
    .skills-section,
    .projects-section,
    .certificates-section,
    .contact-section {
        padding: 60px 15px;
        width: 100%; 
        box-sizing: border-box; 
        overflow-x: hidden; 
    }
    
    .about-section h2,
    .skills-section h2,
    .projects-section h2,
    .certificates-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    /* About */
    .about-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 30px 20px; 
    }
    .about-image {
        flex-basis: auto;
        width: 320px;
        height: 220px;
        margin: 0 auto;
    }
    .about-text {
        flex-basis: auto;
        text-align: left;
    }
    .about-text h3 {
        text-align: center;
    }
    .about-text .btn {
        display: block;
        text-align: center;
    }

    /* Grids 1 Column */
    .skills-grid-new, 
    .projects-grid,
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .skill-category-card {
        padding: 25px;
    }

    .skill-category-card h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    /* Contact Fix */
    .contact-info-card, 
    .contact-form-card {
        padding: 30px 20px;
        width: 100%;
    }

    .contact-info-card h3 {
        font-size: 1.5rem;
    }

    .detail-item {
        font-size: 0.9rem;
        align-items: flex-start;
    }

    .detail-item a {
        word-break: break-all;
    }
    
    /* Footer Mobile */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-bio {
        margin: 0 auto;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}