@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;600;700&display=swap');
:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-blue: #088F9C;
    --color-gray: #f5f5f5;
    --color-dark-gray: #3B4243;
    --color-brown-gray: #5E5959;
    --color-teal-gray: #699093;
    --font-primary: 'Lora', serif;
    --font-secondary: 'Noto Sans', sans-serif;
}

.color-black {
    color: var(--color-black);
}

.color-white {
    color: var(--color-white)!important;
}

.color-blue {
    color: var(--color-blue);
}

.color-gray {
    color: var(--color-gray);
}

.color-dark-gray {
    color: var(--color-dark-gray);
}

.color-brown-gray {
    color: var(--color-brown-gray);
}

.color-teal-gray {
    color: var(--color-teal-gray);
}

.bg-black {
    background-color: var(--color-black);
}

.bg-gray {
    background-color: var(--color-gray);
}

.bg-white {
    background-color: var(--color-white);
}

.bg-blue {
    background-color: var(--color-blue);
}

.bg-dark-gray {
    background-color: var(--color-dark-gray);
}

.bg-brown-gray {
    background-color: var(--color-brown-gray);
}

.bg-teal-gray {
    background-color: var(--color-teal-gray);
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora/Lora-VariableFont_wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora/Lora-Italic-VariableFont_wght.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('fonts/Noto_Sans/NotoSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-style: normal;
    font-weight: 100 900;
}

@font-face {
    font-family: 'Noto Sans';
    src: url('fonts/Noto_Sans/NotoSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-style: italic;
    font-weight: 100 900;
}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1500px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
}

body {
    font-family: var(--font-secondary);
}

.font-primary {
    font-family: var(--font-primary);
}

.font-secondary {
    font-family: var(--font-secondary);
}

h1, .sh1 {
    font-size: 3.125em;
}

h2, .sh2 {
    font-size: 2.5em;
}

h3, .sh3 {
    font-size: 2em;
}

h4, .sh4 {
    font-size: 1.75em;
}

h5, .sh5 {
    font-size: 1.5em;
}

h6, .sh6 {
    font-size: 1.25em;
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
    h1, .sh1 {
        font-size: 2.75em;
    }

    h2, .sh2 {
        font-size: 2.25em;
    }

    h3, .sh3 {
        font-size: 1.75em;
    }

    h4, .sh4 {
        font-size: 1.5em;
    }

    h5, .sh5 {
        font-size: 1.25em;
    }

    h6, .sh6 {
        font-size: 1.125em;
    }
}

/* Small screens (phones) */
@media (max-width: 768px) {
    h1, .sh1 {
        font-size: 2.25em;
    }

    h2, .sh2 {
        font-size: 1.875em;
    }

    h3, .sh3 {
        font-size: 1.5em;
    }

    h4, .sh4 {
        font-size: 1.375em;
    }

    h5, .sh5 {
        font-size: 1.125em;
    }

    h6, .sh6 {
        font-size: 1em;
    }
}

/* Extra small screens (mobile phones in portrait mode) */
@media (max-width: 480px) {
    h1, .sh1 {
        font-size: 2em;
    }

    h2, .sh2 {
        font-size: 1.75em;
    }

    h3, .sh3 {
        font-size: 1.375em;
    }

    h4, .sh4 {
        font-size: 1.25em;
    }

    h5, .sh5 {
        font-size: 1em;
    }

    h6, .sh6 {
        font-size: 0.875em;
    }
}


.toggleMenuBtn {
    z-index: 5;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

.button1 {
    letter-spacing: 1.6px;
    display: flex;
    align-items: center;
    border: none;
    padding: 20px 30px;
    width: fit-content;
    outline: none;
    gap: 15px;


    img {
        transform: rotate(90deg);
    }
}

.menuNav {
    z-index: 2;
}

header {
    z-index: 3;
}

.menu-active {
    overflow: hidden;
}

.menu-active header {
    pointer-events: none;
}

.menu-active header .menu-container {
    pointer-events: all;
}

.menu-active .logoWrap {
    visibility: hidden;
}

.background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logoWrap .logo {
    max-width: 175px;
    width: 100%;
    height: auto;
    transition: width 0.2s ease;
}

.menu-container {
    cursor: pointer;
    z-index: 5;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 20px;
    padding: 0;
    height: 22px;
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
}

.line {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease-in-out;
    transform-origin: center;
}

.line.line1 {
    width: 70%;
    align-self: end;
}

.line.line3 {
    width: 70%;
    align-self: start;
}

.menu-text {
    padding-left: 6px;
    font-family: var(--font-secondary);
    color: var(--color-white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.menu-container:has(.hamburger-menu.active) .menu-text {
    padding-left: 2px;
}

.hamburger-menu:not(.active):hover .line, .menu-container:not(:has(.hamburger-menu.active)):has(.menu-text:hover) .line {
    width: 100%;
}

.hamburger-menu.active .line {
    position: absolute;
    width: 20px;
}

.hamburger-menu.active {
    justify-content: center;
}

.hamburger-menu.active .line1 {
    transform: rotate(45deg);
}

.hamburger-menu.active .line2 {
    opacity: 0;
}

.hamburger-menu.active .line3 {
    transform: rotate(-45deg);
}

.transparentHeader {
    padding: 20px 15px;
    transition: all 0.1s ease-in-out;
}

.scrolled.transparentHeader {
    padding: 10px 0;
    background-color: #000000a1;
}

.menu-active .transparentHeader {
    background-color: transparent;
    padding: 10px 0 !important;
}

.heroSection {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.scroll-container {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y proximity;
    position: relative;
    z-index: -1;
    scroll-behavior: smooth;
}

.scroll-snap-start {
    scroll-snap-align: start;
}

.no-snap {
    scroll-snap-type: none;
}

body.homepage {
    overflow: hidden;
}

.verticalSlides {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    top: 0;
    left: 0;
    z-index: -10;
}

main, body {
    position: relative;
    z-index: -1;
}

.verticalSwiper {
    height: 100%;
    transform: translateY(-100%);
}

.verticalSwiper, .swiper-wrapper {
    height: 100%;
}

.verticalSwiper, .verticalSwiper .swiper-slide {
    height: 100vh;
}

/*.verticalSwiper .swiper-pagination{*/
/*    --swiper-pagination-right: 2em;*/
/*    --swiper-pagination-bullet-vertical-gap: 10px;*/
/*    --swiper-theme-color: var(--color-blue);*/
/*    --swiper-pagination-bullet-inactive-color: var(--color-white);*/
/*    --swiper-pagination-bullet-inactive-opacity: 1;*/

/*    background: #272626CC;*/
/*    padding: 10px 10px;*/
/*    pointer-events: all;*/
/*}*/

.custom-pagination {
    position: absolute;
    width: 32px;
    right: 2em;
    top: 50%;
    background: #272626CC;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    padding: 10px;
    gap: 10px;
    pointer-events: all;
    z-index: 1;
    transition: width 0.2s ease-in-out;
}

/* Pagination bullets */
.custom-bullet {
    width: 12px;
    height: 12px;
    background: #fefefe;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease;
}

.custom-bullet.active {
    background: var(--color-blue);
}

.custom-bullet::after {
    opacity: 0;
    content: attr(data-title);
    transition: opacity 0.3s ease-in-out;
    visibility: hidden;
}

.slideLeftCol {
    background-size: cover;
    background-position: center center;
}

.slideLeftCol .contentWrap {
    max-width: 500px;
    width: 100%;
}

.slideRightTopCol .contentWrap {
    max-width: 930px;
    width: 100%;
}

.bg-cover {
    background-size: cover;
    background-position: center center;
}

.paddingLeft-100 {
    padding-left: 100px;
}

.custom-pagination:hover .custom-bullet::after {
    text-transform: uppercase;
    position: absolute;
    display: block;
    right: 100%;
    transform: translateY(-50%);
    top: 50%;
    white-space: nowrap;
    color: #fff;
    padding: 0 10px;
    line-height: 1;
    font-size: 14px;
    visibility: visible;
    opacity: 1;
}

.custom-pagination-wrapper {
    position: fixed;
    top: 50%;
    right: 2em;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1;
}

.custom-pagination:hover {
    width: 150px;
}

.mobilePadding {
    padding: 60px;
}

.h-300 {
    height: 300px;
}

.slide-up-animation .animate-section {
    animation: slideUp 0.3s ease-in-out;
}

.slide-down-animation .animate-section {
    animation: slideDown 0.3s ease-in-out;
}

.inner-cover {
    max-height: 40vh;
    object-fit: cover;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.menu-active .transparentHeader .logoWrap {
    height: 65px;
}

.menu-list {
    column-count: 2;
    column-gap: 20px;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}


.menu-list a {
    text-decoration: none;
    color: var(--color-black);
    transition: color 300ms ease;
    font-family: var(--font-primary);
}

.servicesBtn {
    max-width: 350px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.two-column-subservices {
    display: flex;
    flex-wrap: wrap;
    gap: 30px; /* Space between columns */
}

.column-subservices {
    flex: 1;
    min-width: 250px;
}

.two-column-subservices  .column-subservices ul li {
    color: #272626;
    font-family: Lora, sans-serif;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 41.4px */
    padding-top: 0;
    text-decoration: none;
}

.two-column-subservices  .column-subservices ul li a {
    color: #272626;
    text-decoration: none;
}

.two-column-subservices  .column-subservices ul li a:hover {
    color: var(--color-blue);
    text-decoration: none;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(0);
    }
}

.scrollDown {
    position: absolute;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    bottom: 115px;
    left: 50%;
    transform: translateX(-50%);
}

.scrollDown img {
    animation: float 2s ease-in-out infinite;
}

.terms a {
    text-decoration: none;
    color: var(--color-black);
    transition: color 300ms ease;
}

.menu-list a:hover, .terms a:hover {
    color: var(--color-blue);
}

.socials img {
    transition: all 300ms ease;
}

.socials a:hover img {
    filter: invert(36%) sepia(79%) saturate(1269%) hue-rotate(154deg) brightness(91%) contrast(94%);
}

.menu-list li {
    break-inside: avoid; /* Ensures items don't split between columns */
    line-height: 1;
}

.flex-1 {
    flex: 1;
}

.menuRow {
    padding-top: 85px;
}

.backBtnWrap {
    height: 85px;
    display: block;
    width: fit-content;
}

.backBtnWrap .button1 {
    padding: 8px 20px;
}

.menu-active .menu-container {
    /*padding: 8px 20px;*/
    background-color: var(--color-blue);
}

.scrolled.transparentHeader .logoWrap .logo {
    max-width: 125px;
}

.menuNav {
    background-color: var(--color-white);
}

.scrollableRightCol {
    height: 100vh;
    overflow-y: auto;
    margin-left: auto;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
}

.nav-tabs {
    background-color: var(--color-blue);
    display: flex;
    flex-wrap: wrap; /* optional: for mobile responsiveness */
    padding: 0; /* make sure no extra space is added */
    margin: 0;
}

.nav-tabs .nav-item {
    flex: 1 0 auto;
    text-align: center;
}

.nav-tabs .nav-link {
    color: #fff;
    text-transform: uppercase;
    padding: 30px 20px;
    border-radius: 0 !important;
    border: none !important;
    margin-bottom: 0 !important;
    line-height: 1;
    width: 100%; /* make button fill its parent */
}

.nav-tabs .nav-link:hover {
    color: #fff;
    background-color: var(--bs-nav-tabs-link-active-bg);
}

.tab-pane {
    padding: 65px 0 65px 0;
    max-width: 80%;
    width: 100%;
}

.tab-pane a {
    color: var(--color-blue);
}

.inner-layout {
    display: block;
    padding: 0;
}

.tab-content ul li {
    padding-bottom: 35px;
}

.bg-gray-box {
    background-color: #F1F1F1;
}

.newsbox {
    padding: 20px;
    margin-bottom: 30px;
}

.mt-150 {
    margin-top: 150px;
}

.box-item a {
    color: var(--bs-heading-color);
    text-decoration: none;
}

.team-box-desc {
    padding: 20px;
}

.team-box .title {
    text-decoration: none;
    color: #000;
}

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

.team-position {
    color: var(--color-blue);
    text-decoration: none;
    text-align: left;
    font-family: var(--font-secondary), sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.team-box img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.news-tag {
    padding: 10px;
    width: fit-content;
    margin-bottom: 0;
}

.newsbox .title {
    padding-top: 30px;
}

.team-layout .menu-text {
    color: var(--bs-heading-color);
}

.team-layout .line {
    background-color: #000;
}

.spaced-text {
    text-align: left;
    font-family: var(--font-secondary), sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 1.6px;
}

.spaced-li {
    font-family: var(--font-secondary), sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 2; /* 135% */
}

.filter-white {
    filter: brightness(0) invert(1);
}

.border-1-white {
    border: 1px solid #fff;
    line-height: 1;
}

.tab-title-content {
    padding-bottom: 65px;
}

.main-layout {
    display: flex;
    min-height: 100vh;
}

.left-col {
    position: sticky;
    top: 0;
    left: 0;
    min-height: 300px;
    height: 100vh;

    background-size: cover;
    background-position: center;
    z-index: 1;
}

.left-col .contentWrap {
    padding-left: 100px;
}

.right-col {
    margin-left: 41.666667%;
    width: 58.333333%;
    padding-bottom: 50px;
}

.contactMap {
    max-width: 500px;
}

@media (max-width: 991.98px) {
    .left-col {
        position: relative;
        width: 100%;
        height: auto;
    }

    .right-col {
        margin-left: 0;
        width: 100%;
    }
    .inner-layout {
        display: block;
        padding: 90px 0 0 0;
    }
}

footer {
    background-color: #f8f9fa;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-control {
    background-color: #F1F1F1 !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 25px 15px 15px 15px !important;
    height: auto !important;
}

textarea.form-control {
    min-height: 120px;
}

.form-label {
    position: absolute;
    top: 20px;
    text-transform: uppercase;
    font-size: 16px;
    left: 30px;
    font-family: "Noto Sans", sans-serif;
    color: #088F9C;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    top: 5px;
    left: 15px;
    font-size: 12px;
}

.form-control::placeholder {
    color: transparent;
}

.form-select {
    background-color: #F1F1F1 !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 20px 15px 20px 30px;
    height: auto !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23088F9C' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px 12px;

}

.select-label {
    position: absolute;
    top: 20px;
    left: 30px;
    color: #088F9C;
    transition: all 0.3s ease;
    pointer-events: none;
    text-transform: uppercase;
    font-weight: 500;
}

.form-select:focus + .select-label,
.form-select:not([value=""]):valid + .select-label {
    top: 5px;
    left: 15px;
    font-size: 12px;
}

.required:after {
    content: " *";
    color: #088F9C;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    text-transform: uppercase;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px 20px 30px;
    background-color: #F1F1F1;
    border-radius: 5px;
    cursor: pointer;
}

.file-upload-text {
    color: #088F9C;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-upload-icon {
    flex-shrink: 0;
    margin-left: 10px;
}

.file-hint {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    padding-left: 15px;
}

.formTitle {
    padding: 60px 0 30px 0;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-tab {
    padding: 8px 20px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-tab:hover {
    background-color: #d0d0d0;
}

.filter-tab.active {
    background-color: #007bff;
    color: white;
}

/* Custom filter tabs  */
.custom-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: start;
}

.custom-filter-tab {
    padding: 8px 0;
    background: none;
    border: none;
    cursor: pointer;
    color: rgba(39, 38, 38, 0.60); /* Inactive color */
    text-align: center;
    font-family: "Noto Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline animation */
.custom-filter-tab::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #088F9C;
    transition: width 0.3s ease;
}
/* Active state */
.custom-filter-tab.active {
    color: #272626;
}

/* Hover state */
.custom-filter-tab:hover:not(.active) {
    color: rgba(39, 38, 38, 0.60);
}

/* Show underline on hover and active */
.custom-filter-tab:hover::after,
.custom-filter-tab.active::after {
    width: 100%;
}

.custom-filter-tab.active::after {
    width: 100%;
    background-color: #088F9C; /* Match active text color */
}

.content-item.hiding {
    opacity: 0;
    transform: translateY(5px);
    pointer-events: none;
}

.content-item.hidden {
    display: none !important;
}

.newsSlider2 .swiper-slide img, .newsSlider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16 / 9;
}

.newsSlider .swiper-slide img {
    opacity: 0.6;
}

.newsSlider2 .swiper-slide-active img {
    opacity: 1;
}

.newsSlider .swiper-slide-thumb-active img{
    opacity: 1;
}


@media (max-width: 991px) {
    .transparentHeader {
        background-color: var(--color-dark-gray);
        transition: padding 0.1s ease-in-out;
    }

    .menu-active .transparentHeader .logoWrap {
        visibility: hidden;
    }

    #after-hero {
        scroll-margin-top: 131px;
    }

    .scroll-container {
        scroll-snap-type: none;
    }

    .tab-pane {
        padding: 30px 30px;
        max-width: 100%;
    }

    .left-col .contentWrap {
        padding: 30px 0 30px 0;
    }

    .logoWrap .logo {
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    .menu-list {
        column-count: 1;
    }



    #after-hero {
        scroll-margin-top: 92px;
    }

    .menuRow {
        padding-top: 20px;
    }
}

@media (max-width: 379px) {
    .mobilePadding {
        padding: 30px;
    }
}

.hero-title {
    word-break: break-word;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.1;
    white-space: normal;
    padding-left: 10px;
}

@media (max-width: 1024px) {
    .hero-title {
        max-width: 700px;
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .hero-title {
        max-width: 90vw;
        font-size: 1.5em;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.menu-logo {
    max-width: 60px; /* or your preferred size */
    height: auto;
    display: block;
    margin-bottom: 1rem;
}
.menu-logo-links {
    align-items: center;
}

.menu-bottom-info {
    min-width: 270px;
    max-width: 350px;
    /*position: absolute;
    bottom: 0;
    right: 0;*/
    padding-bottom: 2rem;
    padding-right: 2rem;
    text-align: end;
}

.menu-logo-links {
    margin-top: 0;
    margin-bottom: 0;
}

.menu-list {
    margin-bottom: 0;
    text-align: left;
}

.menu-bottom-info .contact-info {
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: #222;
}

.menu-bottom-info .socials {
    justify-content: flex-end;
}

.menu-bottom-info .terms {
    font-size: 0.95rem;
}

@media (max-width: 991px) {
    .row.flex-nowrap.align-items-start {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .menu-bottom-info {
        max-width: 100%;
        text-align: left !important;
    }
    .menu-bottom-info .socials {
        justify-content: flex-start;
    }
    .menu-bottom-info .terms {
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .menu-bottom-info {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        padding-bottom: 1rem;
        max-width: 100%;
    }
    .menu-bottom-info .contact-info {
        font-size: 0.95rem;
    }
    .menu-bottom-info .terms {
        font-size: 0.85rem;
        white-space: normal; /* allow wrapping if needed */
    }
    .menu-bottom-info .socials {
        gap: 0.5rem;
    }
}

@media (max-width: 400px) {
    .menu-list a {
        font-size: 1.1em; /* Reduce menu item font size */
    }
    .menu-bottom-info .contact-info {
        font-size: 0.85rem;
    }
    .menu-bottom-info {
        padding-right: 0.2rem;
        padding-left: 0.2rem;
        padding-bottom: 0.5rem;
        min-width: 0;
        max-width: 100%;
        font-size: 0.85rem;
    }
    .menu-logo-links {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .menu-list {
        margin-bottom: 0.5rem;
    }
    .terms {
        font-size: 0.75rem;
        white-space: normal;
    }
    .copyright {
        font-size: 0.8rem;
    }
}
