/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background-color: white;
    scroll-behavior: smooth;
    scrollbar-width: none;
    box-sizing: border-box;
}

/* Hide scrollbar for Webkit browsers */
::-webkit-scrollbar {
    display: none;
}


/* Ensure loading screen covers everything */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black; /* White background or any preferred color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it's above all content */
}

#quote-container {
    text-align: center;
    font-size: 2.3rem;
    color: white;
    overflow: hidden;
    border-right: 4px solid white;
    box-sizing: border-box;
    word-wrap: break-word; /* Allow long words to wrap */
    white-space: normal; /* Allow multi-line wrapping */
    animation: blink-caret 0.75s step-end infinite;
}

@media (max-width: 768px) {
    #quote {
        font-size: 1.5rem;
        padding: 10px; /* Adjust padding */
        white-space: normal; /* Allow multi-line wrapping on smaller screens */
        word-wrap: break-word; /* Break long words */
    }
}



.intro {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    position: relative;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.intro.show {
    display: flex; /* Display as flex when shown */
    opacity: 1; /* Make it visible */
}



/* Animation Styles */
.main-caption, .design-caption, .arrow-container {
    opacity: 0;
    transition: opacity 1.5s ease-in;
}

/* Prevent the footer logo from rotating during slide-in */
.logo, .menu {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 1s ease-in 1.5s, transform 1.2s ease-in 1.5s; /* Delayed start for logos and menu */
}

.menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: 2rem; /* Space between nav and language toggle */
}

.loaded .main-caption, .loaded .design-caption, .loaded .arrow-container {
    opacity: 1;
}

.loaded .logo, .loaded .menu {
    opacity: 1;
    transform: translateY(0); /* Only translate, no rotation */
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 1400px; /* Add max-width to prevent excessive spreading on wide screens */
    margin: 0 auto;
}

/* Logo Styling */
.logo {
    font-size: 30px;
    font-weight: bold;
    color: black;
}

/* Header and Footer Logo Position */
header .logo, footer .logo {
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    color: black;
}

header .logo {
    left: 15px;
}

.intro-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    text-align: center;
    padding: 20px;
}

/* Blinking Caret Animation */
@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: white;
    }
}

.ark {
    color: #FF4F00;
}

/* Logo Styling */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: black;
    flex: 0 0 auto; /* Prevent logo from growing */
}

.logo .ark {
    /* Optional: additional styling for the "Ark" part */
    color: #FF4F00; /* Example color */
}

nav.menu {
    display: flex;
    align-items: center;
    position: relative;
}


/* Burger Menu Icon Styles */
.menu-toggle {
    display: none; /* Hidden by default, shown on mobile */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 1001; /* Ensure it's above other elements */
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: black; /* Change to desired color */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Animate Burger Icon to X when active */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 10px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Navigation Links */
.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align items to the right */
}

.nav-list li {
    margin-left: 2rem; /* More consistent spacing */
}

.nav-list li:first-child {
    margin-left: 0; /* Remove margin from first item */
}

.nav-list li a {
    text-decoration: none;
    font-size: 18px;
    color: black;
    padding: 8px 16px;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: #FF4F00; /* Change color on hover */
}

.contact-button {
    background-color: #FF4F00;
    color: white;
    border-radius: 5px;
    padding: 8px 16px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #C76e00;
}

/* Language Menu */
.language-menu {
    position: relative;
    flex: 0 0 auto; /* Prevent growing/shrinking */
}

#language-flag {
    width: 30px;  /* Set the desired width */
    height: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align it to the middle of its parent */
    
}

/* Language Toggle (Flag Emoji) */
.language-toggle {
    cursor: pointer;
    font-size: 36px; /* Larger font size for the emoji */
    padding: 20px;
    transition: transform 0.3s;
}

.language-toggle:hover {
    transform: scale(1.1);
}

/* Language Options Dropdown */
.language-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: none; /* Hidden by default */
    position: absolute;
    top: 40px; /* Adjust based on toggle height */
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 1000;
}

.language-list li a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: black;
    background-color: white;
    transition: background-color 0.3s, color 0.3s;
}

.language-list li a:hover {
    background-color: #f1f1f1;
    color: red;
}

/* Show language list when active */
.language-list.show {
    display: block;
    margin-top: 24px;
}

/* Responsive Navigation Menu */
@media (max-width: 768px) {
    /* Show the burger menu icon */
    .menu-toggle {
        display: flex;
    }

    /* Hide the main navigation links by default */
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0; /* Align to the left */
        width: 100%;
        background-color: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        border-radius: 0 0 5px 5px;
        z-index: 1000; /* Ensure it's above other elements */
    }

    /* Show navigation links when active */
    .nav-list.show {
        display: flex;
        width: 500%;
        left: -400%;
        top: 140%;
        padding-bottom: 50%;
    }

    /* Adjust navigation link styles for mobile */
    .nav-list li {
        margin: 10px 0;
    }

    .nav-list li a {
        padding: 10px 20px;
        font-size: 1.2rem;
    }

    /* Language Menu Adjustments for Mobile */
    .language-list {
        top: 50px; /* Align below the toggle */
        right: 20px;
        width: 100%;
    }

    .language-list.show {
        display: block;
    }

    .language-toggle {
        padding-left: 0; /* Remove extra padding */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 1rem;
        width: 90%;
    }


    .menu {
        margin-right: 1rem;
    }

    .nav-list.show {
        display: flex;
        width: 100%;
        left: 0;
        top: 100%;
        padding: 1rem;
        background: white;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .nav-list li {
        margin: 0.5rem 0;
    }
}

/* Ensure the language menu doesn't overlap with the burger menu */
header {
    position: relative;
}

/* Main Caption Styles */
.main-caption {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: black;
    margin-bottom: 20px;
}

.main-caption h1 {
    font-size: 7rem;
    margin: 0;
}

.highlight {
    color: #FF4F00;
}

.same-core {
    display: block;
    margin-left: 90px; /* Move "Same Core" slightly to the right */
}

.main-caption h2 {
    font-size: 2rem;
    margin-top: 20px;
}

/* Design Caption Styles */
.design-caption {
    position: absolute;
    top: 40%;
    right: 10%;
    text-align: right;
    color: black;
    margin-bottom: 20px;
}

.design-caption h3 {
    font-size: 1.5rem;
    font-weight: normal;
    color: gray; /* Optional: set the text color to gray for subtlety */
}

/* Arrow Container Styles */
.arrow-container {
    position: absolute;
    left: 50%;
    bottom: 30px; /* Adjust distance from bottom */
    transform: translateX(-50%); /* Center the arrow horizontally */
    opacity: 0;
    transition: opacity 1s ease-in 2s; /* Delay the appearance of the arrow */
    padding: 20px;
    text-align: center;
}

.arrow-container img {
    width: 30px; /* Adjust size as needed */
    height: auto;
}

@media (max-width: 768px) {
    .main-caption h1 {
        font-size: 3.5rem; /* Larger title */
    }
    .main-caption h2 {
        font-size: 1.2rem; /* Smaller subtitle */
        margin-left: 10px;
    }      
    .design-caption h3 {
        margin-top: 70%;
        margin-left: 14%;
        font-size: 1.3rem;
    }
    .same-core {
        margin-left: 0;
    }
    .main-caption {
        left: 0;
    }
}


/* Moving Quote Section */
.aboutMe-scrolling-title {
    width: 100%;
    overflow: hidden; /* Hides content outside the visible area */
    white-space: nowrap;
    position: relative;
    background-color: #f4f4f4;
}

.aboutMe-scrolling-title h2 {
    font-size: 3rem;
    padding: 0;
    animation: scroll-title 10s linear infinite; /* Adjust duration as needed */
    color: black;
}

/* Scrolling animation */
@keyframes scroll-title {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-150%);
    }
}

/* Mobile-specific animation */
@media (max-width: 768px) {
    .aboutMe-scrolling-title h2 {
        animation: scrolling-title-mobile 21s linear infinite; /* Apply the mobile animation */
    }

    @keyframes scrolling-title-mobile {
        from {
            transform: translateX(100%);
        }
        to {
            transform: translateX(-800%);
        }
    }
}

.about-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    padding: 50px;
    margin: 0 auto;          /* Center the container horizontally */
    text-align: center;      /* Ensure text is centered for small screens */
}

.about-image img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 30px;
}

.about-text {
    max-width: 600px;
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left;        /* Keep the text aligned left */
}

/* About Me Education Section */
.aboutMe-education {
    padding: 50px 0;
    background-color: white;
    text-align: center;
}

.aboutMe-education h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.education-container {
    display: flex;
    justify-content: space-around; /* Equally space out the blocks */
    align-items: flex-start;
}

.education-block {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #ccc; /* Add a border with thickness, style, and color */
}

.education-block {
    border: 2px solid #000;   /* Thicker black border */
    border-radius: 15px;      /* Round the corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow for depth */
    padding: 20px;
    width: 30%;
    text-align: center;
}


.edublock-1 {
    color: #ba042c;
}

.edublock-2 {
    color: #ec008c;
}

.edublock-3 {
    color: #ff7c04;
}

.school-logo {
    width: 200px;    /* Adjust width as needed */
    height: 40px;   /* Adjust height as needed */
    object-fit: contain; /* Ensures the image fits within the dimensions */
    margin-bottom: 15px; /* Adds spacing below the logo */
}

.education-block h3 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: black;
}

.schoolText-link {
    text-decoration: none;
}


.education-block p {
    font-size: 1rem;
    color: #000000;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column; /* Stack the image and text vertically */
    }

    .about-image img {
        width: 200px; /* Resize the image */
        height: 200px; /* Maintain aspect ratio */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 20px; /* Add space between image and text */
    }

    .about-text {
        text-align: center; /* Center the text */
    }

    .education-container {
        flex-direction: column;
        align-items: center; /* Center education blocks */
    }

    .education-block {
        width: 80%; /* Make them larger for better readability on mobile */
        margin-bottom: 20px; /* Add spacing between blocks */
    }
    
}

/* Skills Section */
.aboutMe-skills {
    padding: 50px 0;
    text-align: center;
}

.aboutMe-skills h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.skills-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.skill-block {
    width: 18%;
    text-align: center;
}

.skill-block h3 {
    margin-top: 15px;
    font-size: 1.5rem;
    color: black; /* Default black text */
    transition: color 0.3s ease; /* Smooth transition for text color */
    text-decoration: none;
}

/* Icon size */
.skill-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

/* Grayscale for non-priority skills */
.grayscale {
    filter: grayscale(100%);
    transition: filter 0.3s ease; /* Smooth transition for grayscale effect */
}

/* Bring color back on hover for non-priority skills */
.grayscale:hover {
    filter: grayscale(0%);
}

/* Hover effect for each skill text */
/* Unity hover color */
.skill-block:hover .unity-text {
    color: #3b444e; /* Example color for Unity */
}

/* C# hover color */
.skill-block:hover .csharp-text {
    color: #b14796; /* Example color for C# */
}

/* HTML hover color */
.skill-block:hover .html-text {
    color: #E34F26; /* Example color for HTML */
}

/* CSS hover color */
.skill-block:hover .css-text {
    color: #1572B6; /* Example color for CSS */
}

/* PremierPro hover color */
.skill-block:hover .premierpro-text {
    color: #9999FF; /* Example color for PremierePro */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .skills-container {
        flex-direction: column;
    }

    .skill-block {
        width: 80%;
        margin-bottom: 20px;
    }
}

/* Styling for the Projects Section */
.projects {
    background-color: #f4f4f4;
}

.scrolling-title {
    width: 100%;
    overflow: hidden; /* Hides content outside the visible area */
    white-space: nowrap;
    position: relative;
    
}

#BestRed {
    color: red;
}

.scrolling-title h2 {
    font-size: 3rem;
    padding: 0;
    animation: scroll-title 10s linear infinite; /* Adjust duration as needed */
    color: black;
}

/* Scrolling animation */
@keyframes scroll-title {
    from {
        transform: translateX(100%); /* Starts from the right of the screen */
    }
    to {
        transform: translateX(-148%); /* Scrolls to the left of the screen */
    }
}

@media (max-width: 768px) {
    .scrolling-title h2 {
        animation: scroll-title 20s linear infinite; /* Adjust duration as needed */
    color: black;
    }

    @keyframes scroll-title {
        from {
            transform: translateX(100%); /* Starts from the right of the screen */
        }
        to {
            transform: translateX(-700%); /* Scrolls to the left of the screen */
        }
    }
}

/* Styling for the Grid Container */
.grid-container {
    display: grid;
    width: 97%;
    grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
    gap: 20px; /* Increased gap for better spacing */
    padding: 20px; /* Optional padding */
    overflow-x: hidden;
}

/* Rest of your grid item styles */
.grid-item {
    background-color: #ddd;
    position: relative;
    overflow: hidden;
    text-align: center;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5); /* Enhanced shadow on hover */
}

.grid-item img {
    max-width: 100%;
    height: auto; /* Changed to auto to maintain aspect ratio */
    object-fit: cover;
    transition: filter 0.3s ease;
}

/* Darken the image on hover */
.grid-item:hover img {
    filter: brightness(0.3);
}

/* Hidden title by default */
.grid-item .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    font-size: 2rem;
}

/* Show the title on hover */
.grid-item:hover .title {
    opacity: 1;
}

/* Special height for large grid item */
.grid-item.large {
    grid-column: span 2; /* Span 2 columns */
}

/* Special height for medium grid item */
.grid-item.medium {
    grid-column: span 1; /* Span 1 column */
}

/* Standard height for small grid item */
.grid-item.small {
    grid-column: span 1; /* Span 1 column */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjusted for smaller screens */
        width: 89%;
    }
    .grid-item.large, .grid-item.medium, .grid-item.small {
        grid-column: span 1; /* All items span 1 column on smaller screens */
    }
    .grid-item .title {
        font-size: 1.1rem;
    }
}

/* Additional Text Section in Modal */
.additional-text {
    margin: 20px 0;             /* Add spacing around the text */
    font-size: 1rem;            /* Set the font size */
    color: #555;                /* Set the color */
    text-align: left;           /* Align text to the left */
    line-height: 1.5;           /* Set line height for readability */
    border-top: 1px solid #eee; /* Optional border for separation */
    padding-top: 10px;          /* Padding above the additional text */
}

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.8); /* Black with opacity */
    justify-content: center;
    align-items: center;
    opacity: 0; /* Start with opacity 0 */
    transition: opacity 0.8s ease; /* Transition for fade in/out */
}

.modal.show {
    display: flex; /* Flex to center content */
    opacity: 1; /* Show with opacity 1 */
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 5% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 800px;
    max-height: 90vh; /* Set a maximum height relative to viewport */
    border-radius: 10px;
    position: relative;
    overflow-y: auto; /* Allow vertical scrolling if content exceeds max-height */
    box-sizing: border-box; /* Include padding and border in size */
}

.modal-banner img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.modal-banner h1 {
    margin-top: 10px;
    font-size: 2rem;
    text-align: center;
}

.text-box {
    margin: 20px 0;
}

#modalText, #additionalModalText {
    font-size: 1.1rem;
}

.text-box-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.image-grid img,
.image-grid video {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.modal-footer {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #ddd;
    color: #777;
}

.close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: black;
}

/* Additional Text Section in Modal */
.additional-text {
    margin: 20px 0;             /* Add spacing around the text */
    font-size: 1rem;            /* Set the font size */
    color: #555;                /* Set the color */
    text-align: left;           /* Align text to the left */
    line-height: 1.5;           /* Set line height for readability */
    border-top: 1px solid #eee; /* Optional border for separation */
    padding-top: 10px;          /* Padding above the additional text */
}

/* Zoom Modal */
.zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001; /* Higher than main modal */
}

.zoom-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}


/* General footer styling */
.footer {
    background-color: #f5f5f5;
    color: #333;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

/* Top section of the footer */
.footer-top {
    background-color: white; /* Top part stays white */
    text-align: center;
    padding: 20px 0;
}

.footer-top p {
    margin: 5px 0;
    font-size: 1.2rem;
}

.contact-button-footer {
    background-color: #FF4F00;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.3rem;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.contact-button-footer a {
    text-decoration: none; /* Remove the underline */
    color: inherit; /* Use the button's text color */
}

.contact-button-footer:hover {
    background-color: #C76e00;
    color: white;
    transform: scale(1.1);
    transition: transform 0.3s;
}

/* Grouped section with light grey background */
.footer-bottom-group {
    background-color: #d3d3d3; /* Light grey background for bottom part */
    padding: 20px 0;
}

/* Bottom section of the footer */
.footer-bottom {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

/* Button link styling */
.footer-button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 1.1rem;  /* Slightly bigger text */
    color: white;
    background-color: #333;  /* Button background color */
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.footer-button:hover {
    background-color: #555;  /* Darker color on hover */
    transform: scale(1.05);  /* Slightly enlarge on hover */
}

#backToTopButton {
    background-color: #FF4F00;
}

#backToTopButton:hover {
    background-color: #C76e00;
    color: white;
}

/* Footer images section */
.footer-images {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.footer-extra-logo {
    max-width: 150px; /* Adjusted max-width for better visibility */
    max-height: 130px;
    margin: 0 15px;
    transition: transform 0.3s;
}

.footer-extra-logo:hover {
    transform: scale(1.3);
}

/* Footer copyright */
.footer-copyright {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #777;
    text-align: center;
}

@media (max-width: 768px) {
    /* Footer image grid for mobile */
    .footer-images {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 2 logos per row on mobile */
        justify-content: center;
    }

    .footer-extra-logo {
        max-width: 100px; /* Smaller logo size for mobile */
        max-height: 100px;
    }

    .footer-bottom {
        /* flex-direction: column; Stack the footer sections vertically */
        align-items: center;
    }

    .footer-section {
        margin: 10px 0; /* Add space between sections */
    }
}

