@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    font-family: "Poppins", sans-serif;
}
:root{
    --bg-color: #1f242d;
    --second-bg-color: #323946;
    --main-color: #7cf03d;
    --white-color: #fff;
    --disabled-color: #fff3;
}

/* LIGHT MODE VARIABLE OVERRIDES */
body.light-mode {
    --bg-color: #f4f6f8;
    --second-bg-color: #ffffff;
    --white-color: #1e293b;
    --disabled-color: rgba(0, 0, 0, 0.2);
}

html{
    font-size: 62%;
    scroll-behavior: smooth;
}
body{
    color: var(--white-color);
    background: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}
img{
    display:block;
    max-width:100%;
    height:auto;
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background-color 0.3s ease;
}
.logo{
    font-size: 3rem;
    color: var(--white-color);
    font-weight: 700;
}

/* THEME TOGGLE ICON STYLING */
#theme-icon {
    font-size: 2.8rem;
    color: var(--white-color);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    margin-left: auto;
    margin-right: 2rem;
    z-index: 101;
}

#theme-icon:hover {
    color: var(--main-color);
    transform: scale(1.15);
}

nav a{
    font-size: 2rem;
    color: var(--white-color);
    font-weight: 500;
    margin-left: 3.5rem;
    transition: .5s;
}
nav a:hover,
nav a.active{
    color: var(--main-color);
}
#menu-icon{
    font-size: 4rem;
    display: none;
    color: var(--white-color);
    cursor: pointer;
}

section {
    min-height: 100vh;
    padding: 10rem 9% 2rem;
    background: var(--bg-color);
    transition: background-color 0.3s ease;
}

/*================== HOME SECTION ====================*/

.home{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}
.home-detail h1{
    font-size: clamp(3.5rem, 10vw, 5.5rem);
    color: var(--white-color);
}
.home-detail h2{
    display: inline-block;
    font-size: 3rem;
}
.home-detail h2 span{
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: .07rem var(--main-color);
}
.home-detail p{
    font-size: 2rem;
    margin: 1rem 0 2.5rem;
}
.btn-container{
  display: flex;
  margin-top: 2rem;
  gap: 1.5rem;
}
.btn1 {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--main-color);
    border-radius: 4rem;
    font-size: 1.6rem;
    color: #1f242d;
    font-weight: 500;
    border: 1px solid transparent; 
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn1:hover {
    transform: translateY(-3px) scale(1.03);
    background: transparent;
    color: var(--main-color);
    border-color: var(--main-color);
    box-shadow: 0 0 15px rgba(124, 240, 61, 0.3);
}

.btn2 {
    display: inline-block;
    padding: 1rem 3rem;
    background: transparent;
    border-radius: 4rem;
    font-size: 1.6rem;
    color: var(--main-color);
    font-weight: 500;
    border: 2px solid var(--main-color);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn2:hover {
    transform: translateY(-3px) scale(1.03);
    background: var(--main-color);
    color: #1f242d;
    box-shadow: 0 0 15px rgba(124, 240, 61, 0.3);
}

.socials-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 0;
}

.icon {
  cursor: pointer;
  height: 4.5rem;
  background-color: white;
  border-radius: 20%;
}

.home-img .img-box{
    position: relative;
    width:min(32vw,420px);
    height:min(32vw,420px);
    border-radius: 50%;
    padding: .7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.home-img .img-box::before,
.home-img .img-box::after{
    content: '';
    position: absolute;
    width: 50rem;
    height: 50rem;
    background: conic-gradient(transparent, transparent, transparent, var(--main-color));
    transform: rotate(0deg);
    animation: rotate-border 10s linear infinite;
}
.home-img .img-box::after{
    animation-delay: -5s;
}
@keyframes rotate-border{
    100%{
        transform: rotate(360deg);
    }
}
.home-img .img-box .img-item{
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    border-radius: 50%;
    border: .01rem solid var(--bg-color);
    display: flex;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}
.home-img .img-box .img-item img{
    position: absolute;
    top: -4rem;
    display: block;
    width: 100%;
    object-fit: cover;
}

/* STATUS BADGE STYLING */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 1.4rem;
    background: var(--second-bg-color);
    border: 1px solid rgba(124, 240, 61, 0.3);
    border-radius: 2rem;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    width: fit-content;
}
.status-dot {
    width: 0.8rem;
    height: 0.8rem;
    background-color: var(--main-color);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--main-color);
    animation: pulse-dot 2s infinite ease-in-out;
}

/* PULSE ANIMATION FOR GREEN DOT */
@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(124, 240, 61, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(124, 240, 61, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(124, 240, 61, 0);
    }
}

/*================== ABOUT SECTION ====================*/

.heading{
    font-size: 4.3rem;
    text-align: center;
    margin-bottom: 2rem;
}
.heading span{
    color: var(--main-color);
}
.about-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50rem, 1fr));
    gap: 2rem;
}
.about-container .container-box{
    padding: 3rem 2.5rem;
    background: var(--second-bg-color);
    border: .2rem solid var(--second-bg-color);
    border-radius: 1rem;
    transition: .5s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.about-container .container-box:hover{
    border-color: var(--main-color);
    transform: scale(1.02);
}
.container-box h2{
    font-size: 2.5rem;
    margin: .5rem 0 2rem;
    transition: .5s;
}
.container-box:hover h2{
    color: var(--main-color);
}
.container-box li{
    font-size: 2rem;
    text-decoration: none;
    list-style-position: inside;
}
.container-box p{
    font-size: 2rem;
}

/*================== EDUCATION SECTION ====================*/

.education-timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 1rem 0;
}

/* Glowing central/left vertical line */
.education-timeline .timeline-line {
    position: absolute;
    left: 25px;
    top: 25px;
    bottom: 25px;
    width: 3px;
    background: linear-gradient(180deg, var(--main-color) 0%, rgba(124, 240, 61, 0.2) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Node Icon Circle */
.timeline-dot {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    background: var(--second-bg-color);
    border: 2px solid var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--main-color);
    box-shadow: 0 0 15px rgba(124, 240, 61, 0.3);
    flex-shrink: 0;
    transition: 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    background: var(--main-color);
    color: #1f242d;
    box-shadow: 0 0 25px var(--main-color);
}

/* Card Styling */
.timeline-content {
    flex: 1;
    background: var(--second-bg-color);
    border: 1px solid rgba(124, 240, 61, 0.15);
    border-radius: 1.6rem;
    padding: 2.5rem;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.timeline-item:hover .timeline-content {
    transform: translateX(8px);
    border-color: var(--main-color);
    box-shadow: 0 10px 30px rgba(124, 240, 61, 0.15);
}

/* Header inside card */
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.institution {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.institution img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    background: #ffffff;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.institution h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white-color);
    line-height: 1.3;
}

.institution .degree {
    font-size: 1.4rem;
    color: var(--main-color);
    font-weight: 500;
    margin-top: 0.3rem;
}

.year-badge {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white-color);
    background: rgba(124, 240, 61, 0.1);
    border: 1px solid var(--main-color);
    padding: 0.6rem 1.4rem;
    border-radius: 3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

/* Grid for SGPA & Marks Stat Boxes */
.stats-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--bg-color);
    border: 1px solid rgba(124, 240, 61, 0.2);
    padding: 1rem 1.8rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
}

.stat-card.highlight {
    background: linear-gradient(135deg, rgba(124, 240, 61, 0.15), rgba(124, 240, 61, 0.02));
    border-color: var(--main-color);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white-color);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--main-color);
    margin-top: 0.2rem;
}

/* Relevant Course Tags */
.course-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(124, 240, 61, 0.2);
}

.course-chips span {
    font-size: 1.2rem;
    color: var(--white-color);
    background: var(--bg-color);
    padding: 0.4rem 1rem;
    border-radius: 0.6rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Mobile Responsiveness */
@media (max-width: 650px) {

    .education-timeline {
        width: 100%;
        margin-top: 2rem;
        padding: 0.5rem 0;
    }

    /* Timeline line */
    .education-timeline .timeline-line {
        left: 18px;
        top: 20px;
        bottom: 20px;
        width: 2px;
    }

    /* Timeline item */
    .timeline-item {
        gap: 1.2rem;
        margin-bottom: 2.5rem;
        align-items: flex-start;
    }

    /* Timeline icon */
    .timeline-dot {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 1.5rem;
    }

    /* Education card */
    .timeline-content {
        width: calc(100% - 50px);
        padding: 1.6rem;
        border-radius: 1.2rem;
    }

    /* Institution */
    .institution {
        flex-direction: row;
        align-items: center;
        gap: 1.2rem;
    }

    .institution img {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 10px;
        padding: 4px;
    }

    .institution h3 {
        font-size: 1.8rem;
        line-height: 1.25;
    }

    .institution .degree {
        font-size: 1.3rem;
        line-height: 1.4;
        margin-top: 0.3rem;
    }

    /* Year */
    .card-top {
        display: block;
        margin-bottom: 1.5rem;
    }

    .year-badge {
        margin-top: 1.2rem;
        font-size: 1.2rem;
        padding: 0.5rem 1.2rem;
    }

    /* SGPA / Grade / Status */
    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .stat-card {
        padding: 1rem 1.2rem;
        min-width: 0;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.7rem;
        line-height: 1.2;
    }

    /* Course chips */
    .course-chips {
        gap: 0.6rem;
        margin-top: 1.2rem;
        padding-top: 1.2rem;
    }

    .course-chips span {
        font-size: 1.1rem;
        padding: 0.4rem 0.8rem;
    }
}

/*================== PROJECT SECTION ====================*/

.projects-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 3rem;
}
.project-details{
    display: none;
}
.project-details.active{
    display: block;
}
.project-box .numb{
    font-size: 8rem;
    -webkit-text-stroke: .07rem var(--white-color);
    color: transparent;
    line-height: 1;
}
.project-box h3{
    font-size: 3.5rem;
    margin: .8rem 0 2rem;
}
.project-box p{
    font-size: 2rem;
}
.project-box .tech{
    margin: 2rem 0;
    color: var(--main-color);
    border-bottom: .1rem solid var(--white-color);
    padding-bottom: 2rem;
}
.project-box .live-github a{
    position: relative;
    display: inline-flex;
    padding: 1.3rem;
    font-size: 3rem;
    color: var(--white-color);
    border-radius: 50%;
    background-color: var(--second-bg-color);
    transition: .5s;
}
.project-box .live-github a:hover{
    color: var(--main-color);
}
.project-box .live-github a:first-child{
    margin-right: 1.5rem;
}
.project-box .live-github a:first-child i{
    transform: rotate(135deg);
}
.project-box .live-github a span{
    position: absolute;
    top: -60%;
    left: 50%;
    transform: translateX(-50%) scale(.9);
    font-size: 1.6rem;
    white-space: nowrap;
    padding: .5rem 1rem;
    border-radius: .6rem;
    pointer-events: none;
    background: var(--white-color);
    color: var(--bg-color);
    opacity: 0;
    transition: .2s;
}
.project-box .live-github a:hover span{
    top: -70%;
    opacity: 1;
    transform: translateX(-50%) scale(1);
}
.project-box .project{
    width: 100%;
    height: 45rem;
    border-radius: 1rem;
    overflow: hidden;
}
.project .img-slide{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 2rem;
    height: inherit;
    transition: .5s;
}
.project .img-item{
    height: inherit;
}
.project .img-item img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}
.project-box .navigation{
    text-align: right;
    margin-top: 2rem;
}
.project-box .navigation button{
    display: inline-flex;
    padding: .4rem;
    background: var(--second-bg-color);
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    font-size: 4rem;
    color: var(--main-color);
    cursor: pointer;
}
.project-box .navigation button.disabled{
    border-color: var(--second-bg-color);
    color: var(--disabled-color);
}
.project-box .navigation .arrow-right{
    margin-left: 1.5rem;
}

/*================== CONTACT SECTION ====================*/

.contact-container{
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
}
.contact-container .contact-box:first-child{
    align-self: center;
}
.contact-box h2{
    font-size: 4.5rem;
}
.contact-box p{
    font-size: 1.9rem;
}
.contact-box p a{
    color: var(--white-color);
}
.contact-box .desc{
    margin: 1.5rem 0 2.5rem;
}
.contact-box .contact-details{
    display: flex;
    align-items: center;
    margin: 2rem 0;
}
.contact-details i{
    display: inline-flex;
    background: var(--second-bg-color);
    color: var(--main-color);
    font-size: 3rem;
    padding: 1.2rem;
    border-radius: .6rem;
    margin-right: 1.5rem;
}
.contact-details .detail p:first-child{
    color: var(--main-color);
}
.contact-box form{
    background: var(--second-bg-color);
    padding: 2.5rem 3.5rem 3.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.contact-box .heading{
    font-size: 3.5rem;
}
.contact-box .field-box{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.contact-box .field-box input,
.contact-box .field-box textarea{
    padding: 1.5rem;
    background: var(--bg-color);
    border: .15rem solid var(--bg-color);
    border-radius: .6rem;
    font-size: 1.6rem;
    color: var(--white-color);
}
.contact-box .field-box textarea{
    grid-column: 1/-1;
    height: 26rem;
    resize: none;
}
.contact-box .field-box input:focus,
.contact-box .field-box textarea:focus {
    border-color: var(--main-color);
}
.contact-box .btn1{
    margin-top: 2rem;
    cursor: pointer;
}
.contact-box .socials-media a i{
    display: inline-flex;
    background: var(--second-bg-color);
    color: var(--white-color);
    font-size: 3rem;
    padding: 1.2rem;
    border-radius: .6rem;
    margin-right: 1.5rem;
    margin-top: 2rem;
}

/*================== RESPONSIVE BREAKPOINTS ==================*/

/* ---------- Large Screens ---------- */
@media screen and (max-width: 1200px) {
    html {
        font-size: 55%;
    }
}

/* ---------- Tablets / Smaller Laptops ---------- */
@media screen and (max-width: 992px) {
    header {
        padding: 2rem 4%;
    }
    section {
        padding: 10rem 4% 2rem;
    }
}

/* ---------- Tablets ---------- */
@media screen and (max-width: 900px) {

    /* Header */
    #menu-icon {
        display: block;
    }
    #theme-icon {
        margin-left: auto;
        margin-right: 1.5rem;
    }
    header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        background: var(--bg-color);
        border-top: 0.1rem solid rgba(0, 0, 0, 0.2);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
        text-align: center;
        display: none;
    }
    header nav.active {
        display: block;
    }
    header nav a {
        display: block;
        margin: 2.5rem 0;
    }

    /* Home */
    .home {
        flex-direction: column-reverse;
        justify-content: center;
        gap: 3rem;
        text-align: center;
    }
    .home-detail {
        width: 100%;
    }
    .home-detail .btn-container {
        justify-content: center;
    }
    .home-detail .socials-container {
        justify-content: center;
    }
    .home-img .img-box {
        width: 30rem;
        height: 30rem;
    }

    /* About */
    .about-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-container .container-box {
        padding: 2rem 1.5rem;
    }
    .container-box h2 {
        font-size: 2rem;
    }
    .container-box p,
    .container-box li {
        font-size: 1.8rem;
    }

    /* Projects */
    .projects-container {
        grid-template-columns: 1fr;
    }
    .projects-container .project-box:first-child {
        order: 1;
    }

    /* Contact */
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-box h2 {
        font-size: 3.5rem;
    }
    .contact-box form {
        padding: 2.5rem 3rem 3.5rem;
    }
    .contact-box .field-box {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- Smaller Tablets / Large Phones ---------- */
@media screen and (max-width: 810px) {

    .contact-box .field-box {
        grid-template-columns: 1fr;
    }
    .contact-box form {
        padding: 2.5rem 2rem 3rem;
    }
}


/* ---------- Mobile ---------- */
@media screen and (max-width: 600px) {

    section {
        padding-left: 3%;
        padding-right: 3%;
    }
    .home {
        gap: 2rem;
    }
    .home-img .img-box {
        width: 27rem;
        height: 27rem;
    }
    .contact-box .field-box {
        grid-template-columns: 1fr;
    }
}

/* ---------- Small Mobile ---------- */
@media screen and (max-width: 450px) {

    html {
        font-size: 55%;
    }
    header {
        padding: 1.8rem 4%;
    }
    .home-img .img-box {
        width: 25rem;
        height: 25rem;
    }
    header nav a {
        margin: 2rem 0;
    }
}

/* ---------- Extra Small Mobile ---------- */
@media screen and (max-width: 400px) {

    .home-detail,
    .container-box h2 {
        text-align: center;
    }
    .home-detail .socials-container {
        justify-content: center;
    }
    .home-detail .btn-container {
        flex-direction: column;
    }
    .heading {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    /* Education */
    .timeline-content {
        padding: 1.3rem;
    }
    .institution {
        gap: 1rem;
    }
    .institution img {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }
    .institution h3 {
        font-size: 1.6rem;
    }
    .institution .degree {
        font-size: 1.2rem;
    }
    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 0.7rem;
    }
    .stat-card {
        padding: 0.9rem;
    }
    .stat-value {
        font-size: 1.5rem;
    }
    .course-chips span {
        font-size: 1rem;
    }
}

/*================== FOOTER ====================*/

.footer {
    background-color: var(--second-bg-color);
    color: var(--white-color);
    padding: 25px 20px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    transition: background-color 0.3s ease;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer h3,
.footer h4 {
    margin-bottom: 6px;
    color: var(--white-color);
}

.footer p,
.footer a {
    color: var(--white-color);
    font-size: 15.5px;
    text-decoration: none;
    opacity: 0.85;
}

.footer a:hover {
    color: var(--main-color);
    opacity: 1;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 2px;
}

.social-icons a {
    font-size: 25px;
    margin-right: 12px;
    color: var(--white-color);
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--main-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 15px;
    border-top: 1px solid var(--disabled-color);
    padding-top: 15px;
    font-size: 13px;
    color: var(--white-color);
}


/* ---------- Mobile / Tablet Footer ---------- */

@media screen and (max-width: 900px) {

    .footer {
        padding: 2.5rem 2rem 2rem;
    }
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    /* Quick Links are already available
       through the hamburger navigation */
    .footer-links {
        display: none;
    }
    .social-icons a {
        margin: 0 10px;
    }
    .footer-bottom {
        margin-top: 1rem;
    }
}