/* global */
:root {
    --iotedge-purple: #9146FF;
    --iotedge-purple-1: #A873FF;
    --iotedge-yellow-0: #FFE546;
    --iotedge-green-0: #46FF91;
    --iotedge-green-4: #46FF5E;
    --iotedge-divider: #ccc;

    --github-light-purple: #9466e2;
    --baby-pink: #ff94c2;
    --highlight-yellow: #f2d743;
    --background-light: #ffffff;
    --background-dark: #f6f8fa;
    /* --text-color: #24292e; */
    --text-color: hsl(210, 10%, 0%);
    --text-color-1: hsl(210, 10%, 50%);
    --text-color-iot-edge: hsl(210, 10%, 30%);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition-speed: 0.3s;

    font-size: 16px;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background-light);
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.fade-out {
    opacity: 0;
}

section {
    scroll-margin-top: 8rem;
    max-width: 60rem;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    align-items: center;
}

section img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.625rem;
    margin: 0;
    margin-top: 2rem;
    padding: 0;
}

p {
    margin-top: 0;
    text-align: justify;
    /* text-align: left; */
    /* Remove default margin for following text */
}


/* Links styling in p */
p a:link {
    text-decoration: none;
    color: var(--iotedge-purple);
}

p a:visited {
    text-decoration: none;
    color: var(--iotedge-purple);
}

p a:hover {
    text-decoration: underline;
}

p a:active {
    text-decoration: underline;
}


.highlight-iot-edge {
    text-align: left;
    font-weight: 500;
    color: var(--text-color-iot-edge);
}

.img1-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.img1 {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    width: 70%;
}

.clickable-gif {
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 0.625rem;
}

@media (max-width: 768px) {

    body *:not(header):not(footer):not(section img):not(.logo-slider):not(.carousel-wrapper):not(.carousel-item):not(.carousel-item img):not(.slider-container):not(.image-is-96x96):not(.mobile-nav):not(.mobile-nav-item-wrapper):not(.nav-item):not(.mobile-submenu-wrapper):not(.nav-submenu-item):not(.hamburger-menu):not(.hamburger-menu.active):not(.hamburger-menu span):not(.modal) {
        margin-left: 0.3rem;
        margin-right: 0.3rem;
    }
}

/* header */
header {
    background-color: var(--iotedge-purple);
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1001;
    box-shadow: 0 0.25rem 0.375rem var(--shadow-color);
    height: 2.8rem;
    /* following transition is for smooth scrolling in and out when in tilted mode */
    transition: top 0.3s ease-in-out;
}

header .nav-container {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;

    align-items: center;
}


header img {
    width: auto;
    height: 3.5rem;
    cursor: pointer;
    transition: transform var(--transition-speed);
    vertical-align: middle;
}

@media (max-width: 866px) {
    header img {
        height: 3rem;
    }
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
    gap: 1.25rem;
}

nav .nav-item {
    color: #ffffff;
    text-decoration: none;
    padding: 0.625rem 0.25rem;
    border-radius: 0.0625rem;
    font-weight: 500;
    position: relative;
    transition: background-color var(--transition-speed);
}

nav .nav-item:hover:after,
nav .nav-item.active:after {
    width: 100%;
    content: '';
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: var(--iotedge-yellow-0);
    bottom: -0.1875rem;
    left: 0;
    transition: width var(--transition-speed);
}

nav a:hover,
nav a.active {
    color: var(--iotedge-yellow-0);
}

nav .cta-button {
    text-decoration: none;
    background-color: var(--iotedge-green-0);
    color: var(--text-color) !important;
    padding: 0.625rem 1.25rem;
    border-radius: 0.625rem;
    font-weight: 500;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

nav .cta-button:hover {
    background-color: var(--iotedge-green-4);
    transform: scale(1.05);
}


.nav-item-wrapper {
    position: relative;
    padding: 0.625rem;
}

.nav-submenu-wrapper {
    display: none;
    position: absolute;
    top: 150%;
    left: 0;
    background-color: rgba(255, 255, 255);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    width: 12.5rem;
    border-radius: 0.5rem;
}

.nav-hover-zone {
    position: absolute;
    top: 100%;
    left: 0;
    width: 12.5rem;
    height: 3rem;
    z-index: 999;
    background-color: transparent;
}

/* Show submenu on hover */
.nav-item-wrapper:hover .nav-submenu-wrapper,
.nav-hover-zone:hover+.nav-submenu-wrapper {
    display: block;
}

.nav-item-wrapper:hover .nav-hover-zone {
    display: block;
}

.nav-hover-zone {
    display: none;
}

.arrow {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 0.3125rem solid transparent;
    border-right: 0.3125rem solid transparent;
    border-top: 0.3125rem solid currentColor;
    margin-left: 0.3125rem;
    margin-top: 0.25rem;
    transition: transform 0.3s ease;
}

.nav-item-wrapper .arrow,
.mobile-nav-item-wrapper .arrow {
    position: relative;
    top: -0.125rem;
}

/* Keep the arrow rotated when submenu is visible */
.mobile-nav-item-wrapper.active .arrow,
.nav-item-wrapper:hover .arrow {
    transform: rotate(180deg);
}

/* Styling for submenu items */
.nav-submenu-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--iotedge-purple);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-submenu-item:hover {
    /* background-color: rgba(145, 70, 255, 0.5); */
    background-color: var(--iotedge-purple);
    color: var(--iotedge-yellow-0);
    /* color: white; */
}

.mobile-nav {
    display: none;
    background-color: rgba(145, 70, 255, 0.95);
    position: fixed;
    right: 0;
    top: 5.3rem;
    height: calc(100vh - 5.3rem);
    width: 12rem;
    z-index: 1002;
    flex-direction: column;
    align-items: center;
    box-shadow: -0.25rem 0.25rem 0.375rem var(--shadow-color);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity var(--transition-speed), transform var(--transition-speed);
    /* Allow scrolling when content overflows */
    overflow-y: auto;
}

.mobile-nav.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav .nav-item {
    display: block;
    width: 60%;
    padding: 1rem 1.5rem;
    /* Increased padding for a more spacious look */
    color: #ffffff;
    text-align: center;
    font-size: 1.25rem;
    /* Slightly larger text for better readability */
    margin: 0.5rem 0;
    /* Adds spacing between the menu items */
    border-radius: 0.5rem;
    /* Soft rounded corners */
    text-decoration: none;
    transition: background-color var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
    /* Subtle shadow for a clean 3D effect */
}

.mobile-nav .nav-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    /* Light background change on hover */
    box-shadow: 0 0.5rem 0.75rem rgba(0, 0, 0, 0.2);
    /* Slightly stronger shadow on hover */
}

.mobile-nav .cta-button {
    display: block;
    margin-top: 1.5rem;
    padding: 0.75rem 2rem;
    background-color: var(--iotedge-green-0);
    /* Keep the green background */
    color: #24292e !important;
    /* Darker text for contrast */
    border-radius: 0.75rem;
    /* Soft rounded corners for the call-to-action button */
    font-size: 1.25rem;
    /* Slightly larger text for the CTA */
    font-weight: 600;
    /* Make the text bold for emphasis */
    text-decoration: none;
    transition: background-color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
    /* Subtle shadow */
}

.mobile-nav .cta-button:hover {
    background-color: var(--iotedge-green-4);
    /* Darker green on hover */
    transform: scale(1.05);
    /* Slight growth on hover */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    /* More pronounced shadow on hover */
}

.mobile-nav .nav-item,
.mobile-nav .cta-button {
    z-index: 1001;
    /* Ensure buttons are above the scroll button */
}

.mobile-nav-item-wrapper {
    display: flex;
    justify-content: center;
    /* Ensure that the content is centered */
    align-items: center;
    flex-direction: column;
    /* Stack the Use Cases button and submenu vertically */
    width: 100%;
    /* Ensure the same width as other items */
    text-align: center;
}

.mobile-submenu-wrapper {
    display: none;
    /* Ensure it's hidden by default */
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin-top: 0.5rem;
    border-radius: 0.5rem;
}

/* Show submenu only when its wrapper has the "active" class */
.mobile-nav-item-wrapper.active .mobile-submenu-wrapper {
    display: flex;
}


.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    cursor: pointer;
    position: relative;
    margin-left: auto;
    transition: transform var(--transition-speed);
}

.hamburger-menu.active {
    transform: none;
}

.hamburger-menu span {
    display: block;
    height: 0.25rem;
    background-color: #fff;
    border-radius: 0.25rem;
    transition: all 0.3s ease-in-out;
}

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

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

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

@media (max-width: 866px) {
    nav {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
}

/* Mobile Navigation for Landscape Mode */
@media (max-width: 866px) and (orientation: landscape) {
    .mobile-nav .nav-item {
        padding: 0.5rem 1rem;
        /* Smaller padding for buttons */
        /* font-size: 1rem; */
        /* Smaller font size */
        margin: 0.25rem 0;
        /* Reduce the space between the items */
    }

    .mobile-nav .cta-button {
        padding: 0.5rem 1.5rem;
        /* Smaller padding for CTA */
        /* font-size: 1rem; */
        /* Smaller font size for the CTA */
        margin-top: 1rem;
        /* Reduce the margin above the CTA button */
    }
}

/* #############################################landing-page */
/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    animation: fadeInUp var(--transition-speed) ease-in-out;
    max-width: 75rem;
}

.hero-caption {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--iotedge-purple);
    margin-top: 3rem;
    margin-bottom: 0rem;
    z-index: 500;
    text-align: center;
    animation: fadeInUp var(--transition-speed) ease-in-out;
}

.highlight {
    color: var(--iotedge-yellow-0);
    font-weight: 1000;
    text-shadow:
        -0.0625rem -0.0625rem 0 var(--iotedge-purple),
        0.0625rem -0.0625rem 0 var(--iotedge-purple),
        -0.0625rem 0.0625rem 0 var(--iotedge-purple),
        0.0625rem 0.0625rem 0 var(--iotedge-purple),
        0 0 1.25rem var(--iotedge-purple),
        0 0 1.875rem var(--iotedge-purple),
        0 0 2.5rem var(--iotedge-purple),
        0 0 3.125rem var(--iotedge-purple);
}

@media (max-width: 866px) {
    .hero-caption {
        font-size: 2.1rem;
        font-weight: 600;
        min-height: 10rem;
        /* Adjust this value based on the maximum slogan height for mobile */
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* architecture svg */
.hero img {
    width: 100%;
    max-width: 100rem;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0.625rem;
    margin: 0;
    margin-top: 0rem;
    padding: 0;
}


/* Scroll to Top Button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 1.875rem;
    right: 1.875rem;
    z-index: 999;
    background-color: var(--iotedge-purple);
    border: none;
    color: var(--background-light);
    padding: 0.625rem 0.9375rem;
    border-radius: 50%;
    /* border: 2px solid var(--border-color, black); */
    box-shadow: 0 0.25rem 0.625rem var(--shadow-color);
    cursor: pointer;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

#scrollTopBtn:hover {
    background-color: var(--highlight-yellow);
    color: var(--text-color);
    transform: scale(1.1);
}

/* ############################################# */
/* sub-hero*/
/* ############################################# */
.sub-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    animation: fadeInUp var(--transition-speed) ease-in-out;
    max-width: 75rem;
}


.sub-hero h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-top: 4rem;
    text-align: center;
    max-width: 60rem;
}

.sub-hero h3 {
    margin-top: -1rem;
    font-size: 1.125rem;
    max-width: 55rem;
    color: var(--text-color-1);
}

.with-flex-boxes {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: space-between;
    gap: 1rem;
    max-width: 75rem;
}

.panel {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 12rem;
    max-width: 20rem;
    border: 0.1875rem solid var(--iotedge-purple);
    padding: 0rem 1rem 1rem 1rem;
    background-color: var(--background-light);
    border-radius: 1.25rem;
    text-align: start;
    box-sizing: border-box;
    transition: transform var(--transition-speed);
    padding-left: 3rem;
    position: relative;
}

.panel p {
    text-align: left;
}


.panel p::before {
    content: "\003E";
    color: var(--iotedge-purple);
    font-weight: bold;
    position: absolute;
    left: 0;
    transform: translateX(1.5rem);
}

.panel h2 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    margin-left: -1.5rem;
    text-align: start;
}

@media (max-width: 525px) {
    .with-flex-boxes {
        justify-content: center;
    }

    .panel {
        flex: 1 1 100%;
        max-width: 90%;
    }
}

/* ############################################# */
/* usecases*/
/* ############################################# */

.section-divider-h1 {
    margin-top: 8rem;
    font-size: 2rem;
    color: var(--iotedge-purple);
    font-weight: bold;
    text-transform: capitalize;
    /* for moving the divider */
    padding-bottom: 0.25rem;
    border-bottom: 0.25rem solid var(--iotedge-divider);
}

.section-divider-h2 {
    margin-top: 10rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--iotedge-purple);
    font-weight: bold;
    text-transform: capitalize;
    /* for moving the divider */
    padding-bottom: 0.25rem;
    border-bottom: 0.125rem solid var(--iotedge-divider);
}

/*  
.section-divider-h2::before,
.section-divider-h2::after {
    content: "";
    flex: 1;
    border-bottom: 0.1875rem solid var(--iotedge-purple);
    margin: 0 1.5625rem;
    /* Line color */
/* Spacing between the line and the text */
/* max-width: calc(50% - 5rem); */
/* Limits the line length to 10rem total (5rem on each side of the text) 
}
*/


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

    .section-divider-h1::before,
    .section-divider-h1::after {
        margin: 0 0.5rem;
    }

    .section-divider-h2::before,
    .section-divider-h2::after {
        display: none;
    }

}

/* Use Case Section */

.use-cases img {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    cursor: pointer;
}

.table-1 {
    width: 60rem;
    margin-top: 4rem;
    border-collapse: collapse;
    text-align: center;
    background-color: var(--background-light);
}

.table-1 td,
.table-1 th {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    width: 25%;
    border: 0.1rem solid var(--iotedge-divider);
}

.table-1 tr:first-child th {
    border-top: none;
}

.table-1 tr:first-child td {
    border-top: none;
}

.table-1 tr:last-child td {
    border-bottom: none;
}

.table-1 tr td:first-child,
.table-1 tr th:first-child {
    border-left: none;
}

.table-1 tr td:last-child,
.table-1 tr th:last-child {
    border-right: none;
}

.checkmark {
    color: green;
    border: none;
    width: auto;
    height: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    transform: scale(1.3);
}

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

    .table-1 td,
    .table-1 th {
        padding: 0.25rem 0.25rem;
    }

    .table-1 {
        width: 90%;
        margin: 4rem auto;
    }
}

/* ############################################# */
/* technologies*/
/* ############################################# */

.styled-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.styled-list>li {
    margin-bottom: 20px;
}

.styled-list ul {
    list-style-type: ">  ";
    padding-left: 2rem;
    margin-top: 10px;
}

.styled-list ul li {
    margin-bottom: 0.5rem;
}

.styled-list ul li b {
    color: var(--text-color);
    font-weight: 600;
}

.styled-list a:link {
    text-decoration: none;
    color: var(--iotedge-purple);
}

.styled-list a:visited {
    text-decoration: none;
    color: var(--iotedge-purple);
}

.styled-list a:hover {
    text-decoration: underline;
}

.styled-list a:active {
    text-decoration: underline;
}




/* Logo Slider */
/* General Container Styling */
.slider-container {
    max-width: 75rem;
    margin: 0 auto;
    margin-top: 0rem;
    overflow: hidden;
    padding: 1.25rem 0;
}

.logo-slider {
    overflow: hidden;
    background-color: var(--background-light);
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: transform 1s ease-in-out;
    position: relative;
}

.carousel-item {
    flex: 0 0 auto;
    width: auto;
    margin-right: -1.4rem;
}

.image-is-96x96 {
    margin-bottom: 0;
}

.carousel-item img {
    height: 60px;
    width: 60px;
    display: block;
}

.fade-out {
    opacity: 0;
}


.technologies img {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 866px) {
    .carousel-item {
        margin-right: -1.5rem;
    }

    .image-is-96x96 {
        margin-left: 0;
    }
}

/* ############################################# */
/* contact*/
/* ############################################# */

.badge-container {
    display: flex;
    justify-content: center;

    gap: 2rem;


    margin-bottom: 4rem;
}

.contact h4 {
    margin-top: 4rem;
    margin-bottom: 4rem;
    font-size: 1.125rem;
    max-width: 60rem;
    color: var(--text-color);
}

.profile-badge {
    max-width: 300px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 0;
}

/* LinkedIn logo area */
.badge-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.badge-header img {
    height: 20px;
}

/* Profile content area */
.profile-content {
    text-align: left;
}

.profile-picture {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 1.5rem auto 1rem;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    text-align: center;
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 0.95rem;
    color: #555;
    text-align: center;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.profile-university {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    margin: 0 0 1rem;
}

/* View profile button */
.view-profile-btn {
    display: block;
    text-align: center;
    background-color: #fff;
    color: var(--iotedge-purple);
    /* LinkedIn color */
    border: 1px solid var(--iotedge-purple);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: bold;
    margin: 2rem auto;
    width: fit-content;
    cursor: pointer;
    transition: all 0.2s ease;
}

.view-profile-btn-container {
    display: flex;
    justify-content: center;
    /* Optional: aligns buttons horizontally */
    /* gap: -2rem; */
    /* Optional: adds space between buttons */
}

.view-profile-btn:hover {
    background-color: var(--iotedge-purple);
    color: #fff;
}

@media (max-width: 768px) {
    .badge-container {
        flex-direction: column;
        /* Stack badges vertically */
        gap: 1rem;
        /* Reduce gap between badges */
    }

    .profile-badge {
        max-width: 100%;
        /* Allow badge to take full width */
        margin: 0 auto;
        /* Center badges */
        padding: 1rem;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        /* Adjust shadow for a lighter look */
    }

    .view-profile-btn-container {
        flex-direction: column;
        align-items: center;
        /* Stack buttons vertically */
        gap: 0.5rem;
        /* Reduce gap between buttons */
    }

    .view-profile-btn {
        width: 25%;
        /* Make buttons stretch nearly full width */
        margin: 0.2rem auto;
        /* Center buttons */
    }
}

/* ############################################# */
/* footer*/
/* ############################################# */

footer {
    background-color: var(--iotedge-purple);
    padding: 1rem;
    text-align: center;
    bottom: 0;
    box-shadow: 0 -0.25rem 0.375rem var(--shadow-color);
}

footer .footer-container {
    display: flex;
    justify-content: space-between;
    width: 15%;
    max-width: 75rem;
    margin: 0 auto;
    align-items: center;
}

.footer-copyright,
.footer-link {
    color: #ffffff;
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--iotedge-yellow-0);
}

@media (max-width: 768px) {
    footer .footer-container {
        flex-direction: row;
        /* Ensure elements are placed side by side */
        justify-content: center;
        /* Center them horizontally */
        gap: 1rem;
        /* Add spacing between items */
        width: 100%;
        /* Ensure full width */
        text-align: center;
        /* Center the text */
    }

    .footer-copyright,
    .footer-link {
        font-size: 0.75rem;
        /* Adjust font size for better fit */
        white-space: nowrap;
        /* Prevent text wrapping */
    }
}