* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

body {
    background: #020617;
    color: #e5e7eb;
    overflow-x: hidden;
}

canvas {
    position: fixed;
    inset: 0;
    z-index: -1;
}

header {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    color: #38bdf8;
}


header {
    align-items: center;
    /* keeps logo + nav perfectly aligned */
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.25));
    transition: transform 0.25s ease, filter 0.25s ease;
}

.logo:hover .logo-img {
    transform: scale(1.04);
    filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.45));
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}


/* ✅ NAV ALIGN FIX (all buttons same level) */
header nav {
    display: flex;
    align-items: center;
    gap: 12px;
    /* spacing between buttons */
}

header nav .nav-item {
    margin: 0;
    /* IMPORTANT: no margin-left */
    padding: 8px 14px;
    line-height: 1;
    /* IMPORTANT: fixes “lower” look */
    display: inline-flex;
    /* IMPORTANT: same baseline for all */
    align-items: center;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
}

/* Optional: make Resume a bit stronger (same height) */
header nav .nav-resume {
    font-weight: 700;
}


.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 40px;
}

.hero-text h1 {
    font-size: 3rem;
    color: #38bdf8;
}

.hero-img {
    perspective: 1000px;
    margin-right: 50px;
    /* Shifts the entire image container left from the right edge */
}

.img-wrapper {
    width: 350px;
    /* Increased from 260px to match the reference look */
    height: 350px;
    /* Increased from 260px to match the reference look */
    border-radius: 50%;
    position: relative;
    animation: float 4s ease-in-out infinite;
}

/* Ensure the image inside scales perfectly */
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Prevents stretching */
    border-radius: 50%;
    border: 4px solid #38bdf8;
    filter: grayscale(100%);
    transition: 0.4s;
}

.img-wrapper:hover img {
    filter: grayscale(0%);
}

.glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.6), transparent 60%);
    opacity: 0;
    transition: 0.3s;
}

.img-wrapper:hover .glow {
    opacity: 1;
}

@keyframes float {
    50% {
        transform: translateY(-12px);
    }
}

.section {
    padding: 80px 40px;
}

.section h2 {
    color: #38bdf8;
    margin-bottom: 20px;
}

.skills span {
    display: inline-block;
    padding: 8px 14px;
    margin: 6px;
    border-radius: 20px;
    background: rgba(56, 189, 248, 0.15);
}

.project-card {
    margin: 20px 0;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.project-card:hover {
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.3);
    transform: translateY(-6px);
}


footer {
    text-align: center;
    padding: 30px;
    color: #94a3b8;
}

/* Cursor */
.cursor {
    width: 18px;
    height: 18px;
    border: 2px solid #38bdf8;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
}

/* =========================
   SKILL BUTTON EFFECTS
========================= */

.skill-btn {
    position: relative;
    display: inline-block;
    padding: 10px 18px;
    margin: 8px;
    border-radius: 999px;
    font-size: 0.95rem;
    color: #e5e7eb;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    cursor: pointer;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    will-change: transform;
}

/* Neon glow */
.skill-btn:hover {
    background: rgba(56, 189, 248, 0.18);
    box-shadow:
        0 0 12px rgba(56, 189, 248, 0.4),
        0 0 24px rgba(56, 189, 248, 0.25);
}

/* Shine sweep */
.skill-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transition: left 0.6s ease;
}

.skill-btn:hover::after {
    left: 120%;
}

/* ✅ Make header nav links use skill-btn look, but sized for nav */
header nav .nav-item {
    margin: 0 0 0 12px;
    padding: 8px 14px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    /* ✅ make About/Skills/Projects/Contact bold too */
}

/* Optional: Resume can be extra bold if you want */
header nav .nav-resume {
    font-weight: 700;
}

/* Mobile nav tweak */
@media (max-width: 768px) {
    header nav .nav-item {
        margin: 6px 8px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}


/* Make Hire Me (skill-btn) fit nicely in hero button row */
.hero-btns .btn-hire {
    margin: 0;
    /* remove chip margin */
    padding: 12px 25px;
    /* match your hero buttons size */
    text-decoration: none;
    /* remove underline */
    font-weight: 700;
}

/* Click feedback */
.skill-btn:active {
    transform: scale(0.92);
}

#typewriter {
    border-right: 2px solid #38bdf8;
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        border-color: transparent;
    }

    50% {
        border-color: #38bdf8;
    }
}

/* Badge above the name */
.welcome-badge {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

/* Gradient Name Effect */
.gradient-text {
    font-size: 4.5rem !important;
    /* Larger as per reference */
    line-height: 1.1;
    background: linear-gradient(to right, #38bdf8, #a855f7);
    /* Blue to Purple */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0;
}

/* CTA Buttons */
.hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #0ea5e9;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
    /* Neon Glow */
    transition: 0.3s;
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.5);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(14, 165, 233, 0.6);
}

/* Status Badge on Image */
.status-badge {
    position: absolute;
    bottom: 10px;
    right: -20px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    /* Green */
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.highlight {
    color: #38bdf8;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Info Card */
.contact-info {
    background: rgba(15, 23, 42, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.info-item .icon {
    width: 45px;
    height: 45px;
    background: rgba(56, 189, 248, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    color: #38bdf8;
}

.info-item .label {
    font-size: 0.7rem;
    color: #94a3b8;
    display: block;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.input-group label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #38bdf8;
    background: rgba(30, 41, 59, 0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.hero-subtitle {
    margin-top: 15px;
    font-size: 1.5rem;
    min-height: 1.5em;
    /* Prevents layout jump while typing */
}

#typewriter {
    color: #38bdf8;
    /* Your theme's blue color */
    font-weight: 600;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
    border-right: 3px solid #38bdf8;
    /* The cursor */
    padding-right: 5px;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #38bdf8;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero {
        flex-direction: column-reverse;
        /* ✅ image first, text after */
        align-items: center;
        /* ✅ center everything */
        padding: 60px 20px;
        text-align: center;
        gap: 40px;
    }

    /* ✅ remove desktop right shift for mobile */
    .hero-img {
        margin-right: 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        /* Smaller font for mobile screens */
    }

    .gradient-text {
        font-size: 3rem !important;
    }

    /* ✅ subtitle tuning for mobile */
    .hero-subtitle {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-top: 10px;
    }

    /* ✅ IMPORTANT if your script uses \n line breaks */
    #typewriter {
        white-space: pre-line;
    }

    .img-wrapper {
        width: 280px;
        /* Slightly smaller image for mobile */
        height: 280px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        /* Stacks contact info and form vertically */
    }

    .form-row {
        flex-direction: column;
    }
}


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

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.contact-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 999px;
    text-decoration: none;
    color: #e5e7eb;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    font-weight: 500;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

/* Hover glow (same as skills) */
.contact-btn:hover {
    background: rgba(56, 189, 248, 0.18);
    box-shadow:
        0 0 12px rgba(56, 189, 248, 0.4),
        0 0 24px rgba(56, 189, 248, 0.25);
}

/* Shine sweep */
.contact-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transition: left 0.6s ease;
}

.contact-btn:hover::after {
    left: 120%;
}

/* Click feedback */
.contact-btn:active {
    transform: scale(0.94);
}

.icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.6));
}

/* Individual icons */
.icon.email {
    background-image: url("https://img.icons8.com/?size=100&id=GoQbcSSHazaK&format=png&color=000000");
}

.icon.github {
    background-image: url("https://img.icons8.com/?size=100&id=52539&format=png&color=000000");
}

.icon.location {
    background-image: url("https://img.icons8.com/?size=100&id=44023&format=png&color=000000");
}

.icon.facebook {
    background-image: url("https://img.icons8.com/?size=100&id=118501&format=png&color=000000");
}

/* Tooltip */
.contact-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #020617;
    color: #e5e7eb;
    padding: 6px 12px;
    font-size: 0.7rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
    border: 1px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
}

.contact-btn:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


/* Icon                                                      animation */
.contact-btn .icon {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.contact-btn:hover .icon {
    transform: scale(1.25) rotate(-5deg);
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.9));
}


/* Tooltip success animation */
.contact-btn.copied::before {
    content: "Copied!";
    background: #22c55e;
    border-color: #22c55e;
    color: #020617;
    animation: popFade 1.2s ease forwards;
}

@keyframes popFade {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px) scale(0.9);
    }

    30% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1.1);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px) scale(1);
    }
}

/* Success tick animation */
.copy-icon.success img {
    content: url("https://img.icons8.com/ios-filled/50/22c55e/checkmark.png");
    animation: tickPop 0.4s ease;
}

@keyframes tickPop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}


/* Copy icon inside email button (image based) */
.copy-icon {
    margin-left: auto;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 0.75;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.copy-icon img {
    width: 18px;
    height: 18px;
    filter: invert(1);
    /* Makes icon white for dark theme */
}

.copy-icon:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Success tick animation */
.copy-icon.success img {
    animation: tickPop 0.4s ease;
}

/* =========================
   PROJECT TAGS
========================= */

.project-tags {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    font-size: 0.7rem;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    transition: 0.3s;
}

.project-card:hover .project-tags span {
    background: rgba(56, 189, 248, 0.25);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.35);
}

/* =========================
   MODAL GITHUB BUTTON
========================= */

.github-btn {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    background: rgba(56, 189, 248, 0.15);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.github-btn:hover {
    background: rgba(56, 189, 248, 0.25);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.45);
    transform: translateY(-2px);
}

/* =========================
   PROJECT THUMBNAILS
========================= */

.project-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.project-img {
    width: 130px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

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

.project-content {
    flex: 1;
}

/* Mobile */
@media (max-width: 768px) {
    .project-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .project-img {
        width: 100%;
        height: 160px;
    }
}

/* =========================
   PROJECT FILTERS
========================= */

.project-filters {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: #e5e7eb;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.8rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.4);
    color: #38bdf8;
}

/* =====================================================
   CLEAN, MODERN MODAL — FINAL & CORRECT
===================================================== */

/* Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Modal card */
.modal {
    position: relative;
    width: 90%;
    max-width: 560px;
    max-height: 90vh;

    padding: 36px 40px;
    border-radius: 18px;

    background: radial-gradient(circle at top,
            #020617,
            #020617 40%,
            #010314);

    box-shadow:
        0 0 40px rgba(56, 189, 248, 0.25),
        0 0 80px rgba(56, 189, 248, 0.12);

    overflow-y: auto;
    /* scroll ONLY if content is too tall */
}

/* Title */
#modalTitle {
    margin: 0 0 16px;
    font-size: 1.45rem;
    line-height: 1.35;
    color: #e5e7eb;
}

/* Description */
#modalDesc {
    line-height: 1.7;
    color: #cbd5f5;
    margin-bottom: 28px;
}

/* Modern close button */
.modal button {
    position: absolute;
    top: 16px;
    right: 16px;

    width: 36px;
    height: 36px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    color: #cbd5f5;

    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.25);
    cursor: pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        color 0.25s ease;
}

.modal button:hover {
    background: rgba(56, 189, 248, 0.25);
    color: #38bdf8;
    transform: scale(1.08);
}

/* Optional: subtle scrollbar (only if needed) */
.modal::-webkit-scrollbar {
    width: 6px;
}

.modal::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.35);
    border-radius: 10px;
}

/* =========================================
   MODAL SCROLLBAR – MODERN & ADVANCED
   Paste at VERY END of CSS
========================================= */

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

/* WebKit browsers (Chrome, Edge, Brave) */
.modal::-webkit-scrollbar {
    width: 8px;
}

.modal::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.6);
    border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            rgba(56, 189, 248, 0.9),
            rgba(99, 102, 241, 0.9));
    border-radius: 10px;
    box-shadow:
        0 0 6px rgba(56, 189, 248, 0.6),
        inset 0 0 3px rgba(255, 255, 255, 0.35);
}

/* Hover effect */
.modal::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg,
            #38bdf8,
            #a855f7);
    box-shadow:
        0 0 10px rgba(56, 189, 248, 0.8);
}

/* Firefox */
.modal {
    scrollbar-width: thin;
    scrollbar-color: #38bdf8 rgba(15, 23, 42, 0.6);
}

/* =====================================================
   MOBILE ORGANIZATION FIXES (Header / Nav / Hero)
   Paste-at-end overrides to keep layout clean on phones
===================================================== */

/* Prevent nav buttons from shrinking + clipping text */
header nav .nav-item {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Mobile layout improvements */
@media (max-width: 768px) {

    header {
        padding: 12px 14px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    /* Make logo smaller + nicer */
    .logo {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 14px;
        background: rgba(2, 6, 23, 0.35);
        border: 1px solid rgba(56, 189, 248, 0.12);
    }

    .logo-img {
        height: 35.5px;
        /* smaller than your current 40px */
        width: auto;
        max-width: 200px;
    }

    /* Nav wraps into 2 lines neatly */
    header nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    header nav .nav-item {
        padding: 7px 12px;
        font-size: 0.85rem;
        margin: 0;
    }

    /* Hero spacing + centering */
    .hero {
        padding: 56px 16px;
        gap: 28px;
    }

    .hero-img {
        margin-right: 0;
        /* removes desktop offset */
    }

    .img-wrapper {
        width: 260px;
        height: 260px;
        margin: 0 auto;
    }

    .status-badge {
        right: 0;
        /* avoids badge going outside */
        bottom: 8px;
        font-size: 0.72rem;
    }

    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Section padding on mobile */
    .section {
        padding: 60px 18px;
    }

    /* Cursor off on mobile */
    .cursor {
        display: none;
    }
}

@media (max-width: 768px) {

    /* Remove logo badge/border on mobile */
    .logo {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }

    /* Make logo bigger on mobile */
    .logo-img {
        height: 48px !important;
        /* increase size */
        max-width: 240px;
        filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.25));
    }
}


/* =========================
   STYLISH FOOTER 
========================= */
footer {
    padding: 18px 16px;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: rgba(229, 231, 235, 0.78);
}

footer p strong {
    color: rgba(229, 231, 235, 0.95);
    font-weight: 700;
}