* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    border: 0px;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #18181a;
    color: white;
}

a {
    text-decoration: none;
}

.navbar {
    position: sticky;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    width: 90vw;
    z-index: 10;
}

.navbar-container {
    background: rgba(103, 108, 127, 0.35);
    /* translucent */
    border-radius: 12px;
    /* smoother roundness */
    display: flex;
    padding: 5px;
    padding-left: 8px;
    padding-right: 8px;
    justify-content: space-between;

    /* Glassmorphism core */
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);

    /* Modern depth */
    /* box-shadow-: 0 8px 32px rgba(0, 0, 0, 0.25); */
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    color: rgb(138, 144, 180);
    border-radius: 12px;
    transition: all 0.25s;
}

.pill-text {
    display: none;
}

.nav-pill:hover {
    color: rgb(116, 123, 163);
}

.nav-pill.active {
    background-color: white;
}

.nav-pill.active:hover {
    background-color: rgb(220, 226, 247);
    color: rgb(111, 117, 156);
}

.container {
    width: 100%;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    scroll-margin-top: 60px;
}

.text-white {
    color: white;
}

.text-sc {
    color: #7c7cb0;
}

.flex-col-lg-row {
    display: flex;
    flex-direction: column;
}

.home {
    height: 80vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.home-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 50px;
}

.home-container>div {
    width: 100%;
    min-height: 50%;
}

.home-container .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.home-container .hero-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    z-index: 1;

    /* optional subtle shadow for depth */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.img-name {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.img-name img {
    border-radius: 12px;
    width: 30px;
    height: 30px;
}

.intro {
    font-size: 30px;
}

.intro-buttons {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 30px;
    margin-top: 30px;
}

.intro-buttons .btn {
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 12px;
    font-size: medium;
    cursor: pointer;
}

/* Modal background */
.modal {
    display: none;
    /* hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    /* dark semi-transparent */
    backdrop-filter: blur(2px);
    /* subtle blur behind modal */
    animation: fadeIn 0.3s ease forwards;
}

/* Modal content */
.modal-content {
    background-color: #1e1e1e;
    color: #f1f1f1;
    margin: 10% auto;
    padding: 20px;
    border-radius: 12px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    opacity: 0;
    animation: slideIn 0.3s forwards;
}

/* Close button */
.close {
    color: #bbb;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #fff;
}

/* Modal title */
.modal-title {
    margin-top: 0;
    margin-bottom: 12px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

/* ==== */

.btn.hire {
    background: linear-gradient(135deg, #4facfe 0%, #0072ff 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    /* Smooth effect */
    transition: background 0.4s ease, transform 0.2s ease;
}

/* Hover effect for modern feel */
.btn.hire:hover {
    background: linear-gradient(135deg, #6fc3ff 0%, #0059ff 100%);
    transform: translateY(-2px);
}

.tools {
    padding: 20px;
    background-color: #212123;
    height: fit-content;
}

.tools-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}

.tools-grid .tool {
    padding: 10px;
    padding-left: 13px;
    padding-right: 13px;
    border: 0.5px solid gray;
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: calc(50% - 10px);
    gap: 5px;
}

.tool-img {
    height: 30px;
    width: 30px;
    border-radius: 12px;
}

.services {
    margin-top: 50px;
}

.services-grid {
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.items-center {
    align-items: center;
}

.my {
    margin-block: 5px;
}

.img-link-pill {
    width: 20px;
    height: 20px;
    border-radius: 8px;
}

.period {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgb(133, 124, 124);
}

.service {
    display: flex;
    align-items: start;
    gap: 10px;
    width: 100%;
}

.service-info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.service-img {
    width: 80px;
    border-radius: 12px;
}

.contact {
    margin-top: 50px;
}

.contact-container {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.contact-container>div,
form {
    width: 100%;
}

.contact-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-list .channel {
    color: white;
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border: 1px solid rgb(111, 123, 128);
    border-radius: 12px;
    transition: all 0.15s ease-in;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.channel:hover {
    border: 1px solid #0059ff;
}

.channel-img {
    width: 35px;
    height: 35px;
    border-radius: 12px;
}

.contact-info {
    border: 1px solid rgb(148, 158, 199);
    border-radius: 5px;
    color: white;
    background-color: #18181a;
    width: 100%;
    padding-inline: 10px;
    padding-block: 8px;
}

.message-box {
    border: 1px solid rgb(148, 158, 199);
    border-radius: 5px;
    color: white;
    background-color: #18181a;
    width: 100%;
    padding-inline: 10px;
    padding-block: 8px;
}

.message .hire {
    font-size: medium;
}

.activities {
    margin-top: 50px;
}

.activity {
    width: 98%;
    padding: 5px;
    display: flex;
    gap: 10px;
    border: 1px solid rgb(148, 158, 199);
    border-radius: 12px;
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

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

.activity:hover {
    box-shadow: 0 4px 12px rgba(210, 210, 210, 0.5);
    transform: translateY(-2px);
    /* optional: gives a tiny lift */
}

.activity-info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.thanks {
    display: flex;
    gap: 20px;
    flex-direction: column;
    min-height: 50vh;
}

.thanks>div {
    width: inherit;
}

.thanks .flower {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.thanks-flower {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}

@media(min-width:1024px) {
    .thanks {
        /* width: 25vw; */
        min-height: 25vh;
        gap: 30px;
        flex-direction: row;
    }

    .thanks>div {
        width: 40%;
    }

    .navbar {
        width: fit-content;
    }

    .container {
        width: 50%;
    }

    .home-container {
        flex-direction: row;
    }

    .flex-col-lg-row {
        flex-direction: row;
    }

    .intro {
        font-size: 50px;
    }

    .home-container>div {
        width: 50%;
    }

    .tools {
        border-radius: 12px;
        padding: 30px;
    }

    .tools-grid .tool {
        width: calc(25% - 10px);
        padding-inline: 5px;
    }

    .pill-text {
        display: inherit;
    }

    .services-grid {
        flex-direction: row;
        padding: 15px;
    }

    .service {
        flex-direction: row;
        width: calc(50% - 10px);
    }

    .contact-container {
        flex-direction: row;
    }

    .contact-list .channel {
        width: calc(50% - 10px);
    }

    .contact-container>div {
        width: calc(70% - 10px);
    }

    .contact-container>form {
        width: calc(30% - 10px);
    }

    .activity {
        padding: 8px;
        width: calc(33.33% - 10px);
    }
}

/* ====== Humble & Warm Thanks Section ====== */
#thanks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50vh;
    padding: 40px 20px;
    text-align: center;
    /* background: linear-gradient(135deg, #7c7cb0 85%);  */
    /* mostly blue/purple with a soft red touch */
    color: #fdf6e3;
    /* soft warm off-white */
    font-family: 'Merriweather', 'Georgia', serif;
    /* warm, humble font */
}

#thanks .flower {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

#thanks .thanks-flower {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    animation: float 3s ease-in-out infinite;
    /* gentle floating */
}

#thanks .thanks-flower-text {
    font-size: 18px;
    font-weight: 500;
    color: #ffb3b3;
    /* gentle soft pink for warmth */
    font-style: italic;
}


#thanks .thanks-text {
    font-family: 'Quicksand', 'Comfortaa', sans-serif;
    /* soft, friendly, readable */
    font-size: 20px;
    line-height: 1.7;
    /* airy and comfortable */
    color: #fce8e6;
    /* warm, soft off-white */
    max-width: 450px;
    font-style: normal;
    /* remove heavy cursive */
    text-align: center;
    /* quoter-like alignment on large screens */
}

/* Links */
#thanks .thanks-text a {
    color: #ff6b81;
    /* gentle love touch */
    font-weight: 600;
    transition: all 0.25s ease;
    text-decoration: none;
}

#thanks .thanks-text a:hover {
    color: #ff4c61;
    transform: scale(1.05);
}

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

/* Thin formal footer */
#footer {
    width: 100%;
    padding: 10px 0;
    /* thin height */
    background-color: #121212;
    /* slightly darker than main background */
    text-align: center;
    color: #aaa;
    /* soft gray for subtlety */
    font-size: 13px;
    padding-inline: 3px;
    /* small and discreet */
    font-family: 'Courier New', Courier, monospace;
    /* matches your tech style */
    border-top: 1px solid #333;
    /* optional subtle separator line */
}

/* Optional: make it fixed at bottom if desired */
/*
#footer {
    position: fixed;
    bottom: 0;
}
*/

/* Floating animation for flower */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Responsive tweaks */
@media(min-width:1024px) {
    .touch {
        justify-content: start;
    }

    #thanks {
        flex-direction: row;
        gap: 40px;
        text-align: left;
        min-height: 25vh;
    }

    #thanks .flower {
        flex: 0 0 40%;
    }

    #thanks .thanks-text {
        flex: 0 0 50%;
        font-size: 22px;
        text-align: left;
    }

    #thanks .thanks-flower {
        width: 160px;
        height: 160px;
    }

    #thanks .thanks-flower-text {
        font-size: 20px;
    }
}



.size-20 {
    width: 20px;
    height: 20px;
}

.size-25 {
    width: 25px;
    height: 25px;
}

.size-30 {
    width: 30px;
    height: 30px;
}

.size-60 {
    width: 60px;
    height: 60px;
}

.br-12 {
    border-radius: 12px;
}