@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/tajawal/Tajawal-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/tajawal/Tajawal-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/tajawal/Tajawal-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/tajawal/Tajawal-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/tajawal/Tajawal-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/tajawal/Tajawal-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tajawal';
    src: url('../fonts/tajawal/Tajawal-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


/* ------------- Styles ----------------- */
/* @import url("./cssFiles.css"); */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Tajawal", sans-serif;
    margin-top: 85px;
    max-width: 100vw;
}


.news-card-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 480px) {
    body {
        margin-bottom: 55px;
    }
}
.breadcrumb-section {
    position: relative;
    width: 100%;
    display: flex
;
    height: 150px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 55px;
    box-shadow: 0 -10px 30px rgba(77, 160, 91, 0.3) !important;
}
.container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 85px);
    /* Add space around the minus operator */
}

.page-wrapper {
    display: flex;
    flex-direction: column;
    flex: 3;
    height: 100%;
}

.page-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex: 1;
}

.inner-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 178%;
    /* text-align: right; */
}

.inner-desc {
    font-weight: 400;
    font-size: 17px;
    line-height: 178%;
    text-align: start;
}

.border {
    border-radius: 20px;
}

.app-wrapper {
    width: 100%;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}


/* Media Queries for responsive adjustments */
@media (min-width: 1920px) {
    .app-wrapper {
        max-width: 1500px;
        /* Slightly larger for very large screens */
    }
}

@media (min-width: 1350px) {
    .app-wrapper {
        max-width: 1350px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 1200px) {
    .app-wrapper {
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 992px) {
    .app-wrapper {
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .inner-title {
        font-size: 18px;
    }

    .inner-desc {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    body {
        margin-top: 80px;
        /* Adjust for smaller header */
    }

    .app-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .inner-title {
        font-size: 16px;
        line-height: 150%;
    }


}

@media (max-width: 576px) {
    body {
        margin-top: 60px;
    }

    .inner-title,
    .inner-desc {
        /*text-align: center;*/
        /* Center text on smallest screens */
    }
    .inner-desc {
        font-size: 15px;
        line-height: 150%;

    }
    .border {
        border-radius: 15px;
        /* Slightly smaller radius on mobile */
    }
}

a {
    text-decoration: none;
}

ul,
ol {
    margin-inline-start: 20px;
}

/* ---------------- Navbar ---------------------- */

/* Original 1920px Desktop Styles - Preserved from Figma */
nav {
    width: 100%;
    background-color: #ffffff;
    display: flex;
    justify-items: center;
}

.navContainer {
    width: auto;
    display: flex;
    align-items: center;
    transition: height 0.4s ease-in-out;
}

.navContainerScroll {
    height: 70px;
    width: auto;
    display: flex;
    align-items: center;
    transition: 0.4s;
}

.header-placeholder {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.searchInput {
    font-family: "Tajawal", sans-serif;
}

.header-wrapper {
    width: 1350px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.leftBtn {
    font-family: "Tajawal", sans-serif;
    width: 110px;
    border: 1px solid #4da05b;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 18px;
    background-color: white;
    cursor: pointer;
}

.leftBtn:hover {
    background-color: white;
}

.logoh1 {
    margin-top: 5px;
    font-size: 16px;
    line-height: 2;
  width: 75px;
}

.leftBtn img {
    width: 30px;
}

.leftBtn p {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    color: black;
}

.leftBtn p:hover {
    color: black;
}

.leftBtn p:focus {
    color: black;
}

.navList {
    display: flex;
    align-items: center;
    width: 100%;
}

.leftsideHead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.searchLogo {
    background-color: #4da05b;
    border-radius: 40px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchLogo:hover {
    cursor: pointer;
    background-color: #4da05b;
}

.searchLogo img {
    width: 15px;
    height: 15px;
}

.language {
    width: 35px;
    height: 35px;
    margin: 0 5px;
    margin-left: 15px;
}

.language:hover {
    cursor: pointer;
}

.navList ul {
    display: flex;
    gap: 30px;
}

@media (min-width: 1024px) and (max-width: 1080px) {
    .navList ul {
        gap: 14px;
    }
}

.navList ul li {
    display: block;
    padding: 3.5px 0;
    font-weight: 700;
    font-size: 18px;
    position: relative;
    margin: auto;
}

.navList > ul > li > a {
    text-decoration: none;
    color: black;
}

.navList > ul > li > a:hover {
    color: #4da05b;
    transition-duration: 300ms;
    cursor: pointer;
}

#logo {
    /*width: 120px;*/
    /*height: 70px;*/
    transition: 0.4s ease;
    object-fit: contain;
    object-position: 100%;
    max-width: 100%;
}

.image-wrapper-logo img {
  max-width: 100%;
}

.image-wrapper-logo {
  height: 200px;
  overflow: hidden;
}

body {
    overflow-x: hidden;
}

.mobileSideBar {
    display: none;
}

.openClose:hover {
    cursor: pointer;
}

/* Drop down */
.drop-down-menu a {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-content {
    position: absolute;
    display: flex;
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    width: 180px;
    border-radius: 10px;
    text-align: center;
    z-index: 10;
    transition: 0.4s;
    right: 50%;
    transform: translate(50%, 0px);
}

.drop-down-menu:hover .dropdown-content {
    opacity: 1;
    pointer-events: all;
}

.desktop-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin: 0 2px;
}

.desktop-arrow svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.drop-down-menu:hover .desktop-arrow svg {
    transform: rotate(180deg);
}

.dropdown-content a {
    margin: 2px 0;
    padding: 8px;
    font-weight: 500;
    font-size: 18px;
    text-decoration: none;
    color: white;
    transition-duration: 300ms;
    background-color: #4da05b;
    border-radius: 8px;
    box-shadow: 0px 4px 10px 0px #0000001a;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-content a:hover {
    color: #4da05b;
    background-color: white;
}

.localization-nav {
    width: 30px;
    height: 30px;
    font-size: 15px;
    text-decoration: none;
    transition-duration: 300ms;
    border: 1px solid black;
    border-radius: 15px;
    box-shadow: 0px 4px 10px 0px #0000001a;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.localization-nav {
  display: none;
}

.localization-nav:hover {
    background-color: rgb(228, 228, 228);
}

/* Desktop Search */
.desktop-search-wrapper {
    position: fixed;
    left: 0;
    width: 100vw;
    height: calc(100vh - 1px);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 999;
    display: none;
    transition: opacity 0.4s ease;
}

.desktop-search-wrapper.show-search {
    display: block;
    opacity: 1;
}

.desktop-search-wrapper.hidden {
    opacity: 0;
    display: none;
}

.searchBarContainer {
    margin: 50px auto;
    max-width: 600px;
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.searchBarContainer input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
}

.closeSearch {
    cursor: pointer;
}

/* Mobile Menu Base Styles - RTL/LTR Support */
#mobileMenu {
    position: fixed;
    top: 0;
    width: 85%;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

/* LTR (English) - Slide from right */
html[dir="ltr"] #mobileMenu,
html:not([dir]) #mobileMenu {
    right: -100%;
    left: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

html[dir="ltr"] #mobileMenu.show,
html:not([dir]) #mobileMenu.show {
    right: 0;
}

/* RTL (Arabic) - Slide from left */
html[dir="rtl"] #mobileMenu {
    left: -100%;
    right: auto;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
}

html[dir="rtl"] #mobileMenu.show {
    left: 0;
}

/* Enhanced animations for both directions */
#mobileMenu.animate-in {
    animation-duration: 0.4s;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-fill-mode: forwards;
}

#mobileMenu.animate-out {
    animation-duration: 0.3s;
    animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    animation-fill-mode: forwards;
}

/* LTR Animations */
html[dir="ltr"] #mobileMenu.animate-in,
html:not([dir]) #mobileMenu.animate-in {
    animation-name: slideInRightLTR;
}

html[dir="ltr"] #mobileMenu.animate-out,
html:not([dir]) #mobileMenu.animate-out {
    animation-name: slideOutRightLTR;
}

@keyframes slideInRightLTR {
    from {
        right: -100%;
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        right: 0;
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRightLTR {
    from {
        right: 0;
        opacity: 1;
        transform: translateX(0);
    }

    to {
        right: -100%;
        opacity: 0;
        transform: translateX(20px);
    }
}

/* RTL Animations */
html[dir="rtl"] #mobileMenu.animate-in {
    animation-name: slideInLeftRTL;
}

html[dir="rtl"] #mobileMenu.animate-out {
    animation-name: slideOutLeftRTL;
}

@keyframes slideInLeftRTL {
    from {
        left: -100%;
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        left: 0;
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutLeftRTL {
    from {
        left: 0;
        opacity: 1;
        transform: translateX(0);
    }

    to {
        left: -100%;
        opacity: 0;
        transform: translateX(-20px);
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Header - RTL/LTR Layout Support */
.mobile-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: white;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* LTR Layout - Logo left, Close right */
html[dir="ltr"] .mobile-header,
html:not([dir]) .mobile-header {
    justify-content: space-between;
    flex-direction: row;
}

/* RTL Layout - Logo right, Close left */
html[dir="rtl"] .mobile-header {
    justify-content: space-between;
    flex-direction: row-reverse;
}

.mobile-logo-wrapper {
    display: flex;
    align-items: center;
}

.mobile-menu-logo {
    width: 100px;
    height: 60px;
    object-fit: contain;
}

/* Close button positioning */
.internalClose {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    background: rgba(77, 160, 91, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.internalClose:hover {
    background: rgba(77, 160, 91, 0.2);
    transform: scale(1.1);
}

.internalClose svg {
    width: 20px;
    height: 20px;
    color: #4da05b;
}

/* Enhanced Mobile Search with Website Colors */
.mobileSearchBar {
    display: flex;
    align-items: center;
    margin: 25px 20px;
    background: white;
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mobileSearchBar.focused {
    box-shadow: 0 6px 25px rgba(77, 160, 91, 0.2);
    transform: translateY(-2px);
}

.mobileSearchBar .searchInput {
    flex: 1;
    border: none;
    outline: none;
    height: 45px;
    padding: 0 20px;
    font-size: 16px;
    font-family: "Tajawal", sans-serif;
    border-radius: 25px;
    background: transparent;
}

.mobileSearchBar .searchInput::placeholder {
    color: #999;
    font-weight: 400;
}

.mobileSearchBar .searchLogo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #4da05b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
}

.mobileSearchBar .searchLogo:hover {
    background: #3d8049;
    transform: scale(1.05);
}

.mobileSearchBar .searchLogo img {
    width: 18px;
    height: 18px;
}

/* Mobile Navigation List with RTL/LTR Support */
.mobileUl {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.mobileUl > li {
    margin: 0;
    border-bottom: 1px solid rgba(238, 238, 238, 0.5);
}

.mobileUl > li:last-child {
    border-bottom: none;
}

.mobileUl > li > a {
    display: block;
    padding: 18px 25px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: start;
}

.mobileUl > li > a::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(77, 160, 91, 0.1), transparent);
    transition: 0.4s ease;
}

/* LTR - Animation from left to right */
html[dir="ltr"] .mobileUl > li > a::before,
html:not([dir]) .mobileUl > li > a::before {
    left: -100%;
    transition: left 0.4s ease;
}

html[dir="ltr"] .mobileUl > li > a:hover::before,
html:not([dir]) .mobileUl > li > a:hover::before {
    left: 100%;
}

html[dir="ltr"] .mobileUl > li > a:hover,
html:not([dir]) .mobileUl > li > a:hover {
    padding-left: 35px;
}

/* RTL - Animation from right to left */
html[dir="rtl"] .mobileUl > li > a::before {
    right: -100%;
    left: auto;
    transition: right 0.4s ease;
}

html[dir="rtl"] .mobileUl > li > a:hover::before {
    right: 100%;
}

html[dir="rtl"] .mobileUl > li > a:hover {
    padding-right: 35px;
}

.mobileUl > li > a:hover {
    color: #4da05b;
    background: rgba(77, 160, 91, 0.05);
}

/* Mobile Dropdown Styles with RTL/LTR Support */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* LTR Layout - Arrow left, text right */
html[dir="ltr"] .mobile-dropdown-toggle,
html:not([dir]) .mobile-dropdown-toggle {
    justify-content: space-between;
    flex-direction: row;
}

/* RTL Layout - Arrow right, text left */
html[dir="rtl"] .mobile-dropdown-toggle {
    justify-content: space-between;
    flex-direction: row-reverse;
}

.mobile-dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(77, 160, 91, 0.1), transparent);
    transition: left 0.4s ease;
}

/* LTR - Animation from left to right */
html[dir="ltr"] .mobile-dropdown-toggle::before,
html:not([dir]) .mobile-dropdown-toggle::before {
    left: -100%;
}

html[dir="ltr"] .mobile-dropdown-toggle:hover::before,
html:not([dir]) .mobile-dropdown-toggle:hover::before {
    left: 100%;
}

/* RTL - Animation from right to left */
html[dir="rtl"] .mobile-dropdown-toggle::before {
    right: -100%;
    left: auto;
}

html[dir="rtl"] .mobile-dropdown-toggle:hover::before {
    right: 100%;
}

.mobile-dropdown-toggle:hover {
    color: #4da05b;
    background: rgba(77, 160, 91, 0.05);
}

/* LTR hover padding adjustment */
html[dir="ltr"] .mobile-dropdown-toggle:hover,
html:not([dir]) .mobile-dropdown-toggle:hover {
    padding-left: 35px;
}

/* RTL hover padding adjustment */
html[dir="rtl"] .mobile-dropdown-toggle:hover {
    padding-right: 35px;
}

.mobile-arrow {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(77, 160, 91, 0.1);
    flex-shrink: 0;
}

.mobile-arrow svg {
    width: 14px;
    height: 14px;
    color: #4da05b;
    transition: transform 0.3s ease;
}

/* Arrow rotation for different directions */
.mobile-dropdown.open .mobile-arrow svg {
    transform: rotate(90deg);
}

html[dir="rtl"] .mobile-dropdown.open .mobile-arrow svg {
    transform: rotate(-90deg);
}

.nav-title {
    flex: 1;
}

/* Text alignment based on direction */
html[dir="ltr"] .nav-title,
html:not([dir]) .nav-title {
    text-align: right;
}

html[dir="rtl"] .nav-title {
    text-align: right;
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    max-height: 400px;
    padding: 10px 0;
}

.mobile-dropdown.open .mobile-arrow {
    background: #4da05b;
}

.mobile-dropdown.open .mobile-arrow svg {
    color: white;
}

.mobile-dropdown-menu li {
    margin: 0;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 12px 25px;
    text-decoration: none;
    color: #555;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
    text-align: start;
}

/* LTR - Left border and padding */
html[dir="ltr"] .mobile-dropdown-menu a,
html:not([dir]) .mobile-dropdown-menu a {
    padding-left: 50px;
    border-left-width: 3px;
    border-right-width: 0;
}

html[dir="ltr"] .mobile-dropdown-menu a:hover,
html:not([dir]) .mobile-dropdown-menu a:hover {
    padding-left: 55px;
    border-left-color: #4da05b;
}

/* RTL - Right border and padding */
html[dir="rtl"] .mobile-dropdown-menu a {
    padding-right: 50px;
    border-right-width: 3px;
    border-left-width: 0;
}

html[dir="rtl"] .mobile-dropdown-menu a:hover {
    padding-right: 55px;
    border-right-color: #4da05b;
}

.mobile-dropdown-menu a:hover {
    color: #4da05b;
    background: white;
}

/* Mobile Bottom Section with Website Colors */
.mobile-bottom-section {
    position: sticky;
    bottom: 0;
    background: white;
    padding: 25px 20px;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.mobile-localization {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(77, 160, 91, 0.1);
    border: 1px solid rgba(77, 160, 91, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #4da05b;
}

.mobile-localization:hover {
    background: rgba(77, 160, 91, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(77, 160, 91, 0.2);
}

.lang-icon {
    width: 20px;
    height: 20px;
}

.mobile-inquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    background: #4da05b;
    color: white;
    border: 1px solid #4da05b;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 16px;
    font-family: "Tajawal", sans-serif;
}

.mobile-inquiry-btn:hover {
    background: white;
    color: #4da05b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 160, 91, 0.3);
}

.inquiry-icon {
    width: 22px;
    height: 22px;
}

.mobile-inquiry-btn:hover .inquiry-icon {
    filter: none;
}

/* Library dropdown for mobile menu backwards compatibility */
.library-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
}

.arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.library-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background-color: #f9f9f9;
    padding-right: 30px;
}

.library-menu li a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

.library-dropdown.open .arrow {
    transform: rotate(90deg);
}

.library-dropdown.open .library-menu {
    max-height: 300px;
}

/* Original sideImg styling for backwards compatibility */
.sideImg {
    width: 150px;
    height: 40px;
    border: 1px solid #4da05b;
    border-radius: 30px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    gap: 4px;
    line-height: 1;
}

.sideImg:hover {
    cursor: pointer;
}

.sideImg p {
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    margin: 0;
    line-height: 1;
}

.sideImg img {
    width: 30px;
    height: 30px;
    margin: 0;
}

.sideSvg {
    width: 25px;
}

/* Utility Classes */
body.no-scroll {
    overflow: hidden;
    height: 100vh;
}

/* ========== RESPONSIVE DESIGN ========== */
/* Original 1280px Laptop Styles - Preserved */
@media (min-width: 1025px) and (max-width: 1280px) {
    nav {
        background-color: #ffffff;
        display: flex;
        justify-items: center;
    }

    .navContainer {
        width: 100%;
        margin: 0 auto;
        display: flex;
        align-items: center;
    }

    .header-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .leftBtn p {
        font-weight: 600;
        font-size: 15px;
        text-align: center;
        color: black;
    }

    .leftBtn img {
        width: 35px;
    }

    .navList {
        display: flex;
        align-items: center;
    }

    .searchLogo {
        background-color: #4da05b;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navList ul {
        margin-right: 0 !important;
    }

    .searchLogo img {
        width: 15px;
        height: 15px;
    }

    .navList ul {
        display: flex;
        gap: 16px;
    }

    .navList ul li {
        padding: 3.5px 0;
        font-weight: 600;
        font-size: 16px;
        margin: auto;
    }

    .navList ul li a {
        text-decoration: none;
    }

    .navList ul li:hover {
        color: #4da05b;
        transition-duration: 300ms;
        cursor: pointer;
    }
}

@media (min-width: 1024px) and (max-width: 1080px) {
    .navList ul {
        gap: 12px;
    }
}

/* Hide mobile elements on desktop - Preserved Original */
@media (min-width: 1025px) {

    .mobileSideBar,
    #mobileMenu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* Original Tablet Styles - Preserved */
@media (min-width: 768px) and (max-width: 1024px) {
    .navList {
        display: none;
    }

    .nav {
        height: 110px;
    }

    .header-wrapper {
        margin: auto;
        gap: 170px;
    }

    .no-scroll {
        overflow: hidden;
        height: 100vh;
    }

    .searchLogo {
        margin: auto;
    }

    .navContainer {
        display: none;
    }

    .mobileSideBar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }

    .leftBtn p {
        font-weight: 700;
        font-size: 20px;
        text-align: center;
    }

    .leftBtn img {
        width: 50px;
        margin: 8px 0;
    }

    #mobileMenu {
        width: 70%;
        max-width: 350px;
    }
}

/* Original Mobile Styles - Enhanced with Website Colors */
@media (min-width:768px) and (max-width: 1024px) {
    #mobile-logo {
        width: 120px;
        height: 79px;
        transition: width 0.4s ease, height 0.4s ease;
        object-fit: contain;
        object-position: 100%;
        margin:auto 0;
    }
}
@media (max-width: 767px) {
#mobile-logo {
        width: 100px;
        object-fit: contain;
        aspect-ratio: 148/82;
    }
    .navList {
        display: none;
    }

    .navContainer {
        display: none;
    }

    nav {
        height: 80px;
    }

    .mobileSideBar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        width: 100%;
    }


    .openClose {
        cursor: pointer;
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .openClose:hover {
        background-color: rgba(77, 160, 91, 0.1);
    }

    .openClose svg {
        color: #333;
        transition: color 0.3s ease;
    }

    .openClose:hover svg {
        color: #4da05b;
    }

    .no-scroll {
        overflow: hidden;
        height: 100vh;
    }

    .header-wrapper {
        width: 100%;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    #logo {
        max-width: 100px;
        height: 55px;
    }

    #mobileMenu {
        width: 60%;
        max-width: none;
    }

    .mobile-header {
        padding: 15px 20px;
    }

    .mobile-menu-logo {
        width: 80px;
        height: 50px;
    }

    .mobileSearchBar {
        margin: 20px 15px;
    }

    .mobileUl > li > a {
        font-size: 17px;
        padding: 16px 20px;
    }

    .mobile-dropdown-toggle {
        font-size: 17px;
        padding: 16px 20px;
    }

    .mobile-dropdown-menu a {
        padding: 10px 20px 10px 40px;
        font-size: 15px;
    }

    .mobile-bottom-section {
        padding: 20px 15px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    nav {
        height: 70px;
    }

    .mobileSideBar {
        padding: 10px 15px;
    }

    #mobile-logo {
        width: 100px;
        height: 55px;
    }

    #mobileMenu {
        width: 95%;
    }

    .mobile-header {
        padding: 12px 15px;
    }

    .mobile-menu-logo {
        width: 70px;
        height: 45px;
    }

    .mobileSearchBar {
        margin: 15px 10px;
    }

    .mobileSearchBar .searchInput {
        font-size: 14px;
        padding: 0 15px;
    }

    .mobileUl > li > a {
        font-size: 16px;
        padding: 14px 15px;
    }

    .mobile-dropdown-toggle {
        font-size: 16px;
        padding: 14px 15px;
    }

    .mobile-dropdown-menu a {
        padding: 8px 15px 8px 35px;
        font-size: 14px;
    }

    .mobile-bottom-section {
        padding: 15px 10px;
    }

    .mobile-localization,
    .mobile-inquiry-btn {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* -------------- Footer ---------------- */

footer {
    box-shadow: 0 -4px 20px 0 #5555550d;
    overflow-x: hidden;
}

.listWrapper {
    width: 100%;
}


.footerList {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 37px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.footerList li {
    display: block;
    margin-top: 16px;
    font-weight: 700;
    font-size: 18px;
    line-height: 156%;
}

.footerList li a {
    text-decoration: none;
    color: black;
}

.footerList li a:hover {
    color: #4da05b;
    transition-duration: 300ms;
    cursor: pointer;
}

.listWrapper::after {
    content: "";
    display: flex;
    flex-direction: column;
    background-color: rgb(240, 240, 240);
    height: 1px;
}

.footerBottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footerList {
    margin-inline-start: 0 !important;
}

.flex-wrapper {
    margin-bottom: 55px;
}

.footerBottom p {
    margin: 0;
    font-weight: 400;
    font-size: 20px;
    padding: 0;
    line-height: 100%;

}

.footerBottom p:first-child {
    font-size: 15px;
    text-align: center;
    justify-self: start;
}

.footerBottom p:last-child {
    font-size: 15px;
    text-align: left;
    justify-self: end;
}

.footerBottom p:last-child a {
    color: black;
    text-decoration: none;
}

.icon-circle {
    background-color: transparent;
    border: 0.5px solid #787878;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    position: relative;
    /* Add this */
}

.icon-circle img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    transition: 0.3s;
}

/* Create a pseudo-element for the light icon */
.icon-circle::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: var(--light-icon);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transition: 0.3s;
}

.icon-circle:hover {
    background-color: #4da05b;
}

.icon-circle:hover img {
    opacity: 0;
}

.icon-circle:hover::after {
    opacity: 1;
}

.socialMedia {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.powered_by {
    widows: 200px;
    display: flex;
    align-items: center;
    height: 100%;
    gap: 5px;
}


/* Mobile View */
@media (max-width: 767px) {
    .footerList {
        flex-wrap: wrap;
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 25px;
        margin-top: 7px;
    }

    .footerList li {
        font-size: 15px;
    }

    .footerBottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
    }

    .footerBottom p {
        text-align: center;
    }

    .newsCards {
        margin-bottom: 44px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .footerList {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        padding: 0 15px;
    }

    .footerBottom {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 10px;
    }

    .footerBottom p {
        text-align: center;
    }

    .newsCards {
        margin-bottom: 44px;
    }
}

/* Small laptop Screen */
@media (min-width: 1025px) and (max-width: 1280px) {
    .footerList {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding: 0 15px;
    }

    .footerBottom {
        width: auto;
    }
}

@media (min-width: 1281px) and (max-width: 1400px) {
    .footerList li {
        font-size: 18px;
    }
}

.desktop-arrow {
    width: 10px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}
footer details {
    display: none;
}

@media (max-width: 480px) {
    .footerList {
        display: none;
    }

    footer details summary {
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        list-style: none;
        outline: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* Hide the marker completely across all browsers */
    footer details summary::marker,
    footer details summary::-webkit-details-marker {
        display: none;
    }

    /* For older browsers */
    footer details > summary {
        list-style: none;
    }

    footer details > summary::-webkit-details-marker {
        display: none;
    }

    /* Arrow styling */
    footer details summary .arrow {
        transition: transform 0.3s ease;
        font-size: 14px;
        font-weight: bold;
    }

    /* Rotate arrow when details is open */
    footer details[open] summary .arrow {
        transform: rotate(180deg);
    }

    footer details {
        display: flex;
        font-size: 16px;
        padding: 15px 0;
        flex-direction: column;
        /*align-items: center;*/
        justify-content: center;
        overflow: hidden;
    }

    /* Animation for opening */
    footer details[open] .mobile-footer-list {
        animation: slideDown 0.3s ease-out forwards;
    }

    /* Animation for closing - this targets when details is closing */
    footer details:not([open]) .mobile-footer-list {
        animation: slideUp 0.3s ease-in forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            max-height: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            max-height: 300px;
            transform: translateY(0);
        }
    }

    @keyframes slideUp {
        from {
            opacity: 1;
            max-height: 300px;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            max-height: 0;
            transform: translateY(-10px);
        }
    }

    .mobile-footer-list {
        list-style: none;
        padding: 0;
        margin: 10px 0 0 0;
        width: 100%;
    }

    .mobile-footer-list li {
        padding: 8px 0;
    }

    .mobile-footer-list a {
        text-decoration: none;
        color: #333;
    }
}


/* --------------------- Pagination ------------------------------- */
.pagination-section {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 50px;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.pagination-page,
.pagination-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #e5e7eb;
    background-color: #ffffff;
    color: #374151;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pagination-page::before,
.pagination-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.pagination-page:hover,
.pagination-arrow:hover {
    background: linear-gradient(135deg, #4da05b, #42935a);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 160, 91, 0.25);
}

.pagination-page:hover::before,
.pagination-arrow:hover::before {
    inset-inline-start: 100%;
}

.pagination-page.active {
    background: linear-gradient(135deg, #4da05b, #42935a);
    color: #ffffff;
    cursor: default;
    pointer-events: none;
    transform: scale(1.05);
}

.pagination-page:active,
.pagination-arrow:active {
    transform: translateY(0) scale(0.95);
    transition: transform 0.1s ease;
}

/* Focus states for accessibility */
.pagination-page:focus,
.pagination-arrow:focus {
    outline: none;
    border-color: #4da05b;
    box-shadow: 0 0 0 3px rgba(77, 160, 91, 0.2);
}

/* Disabled state for arrows when at first/last page */
.pagination-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
    .pagination-list {
        gap: 4px;
    }

    .pagination-page,
    .pagination-arrow {
        width: 38px;
        height: 38px;
        font-size: 13px;
    }
}

/* Tablet adjustments */
@media (max-width: 768px) {
    .pagination-section {
        margin-top: 1.5rem;
    }

    .pagination-page,
    .pagination-arrow {
        width: 40px;
        height: 40px;
    }
}

/* Touch device hover prevention */
@media (hover: none) {
    .pagination-page:hover,
    .pagination-arrow:hover {
        background-color: #ffffff;
        color: #374151;
        border-color: #e5e7eb;
        transform: none;
        box-shadow: 0 2px 4px rgba(77, 160, 91, 0.08);
    }

    .pagination-page:hover::before,
    .pagination-arrow:hover::before {
        inset-inline-start: -100%;
    }
}

/* ---------------------------Tablet -------------------------*/
@media (min-width: 480px) and (max-width: 1024px) {
    .mobileSideBar {
        display: flex;
    }
}

@media (max-width: 480px) and (max-width: 1024px) {
    .mobileSideBar {
        display: none;
    }
}

/* -------------------- mobile bottom nav --------------------*/
/* Your existing mobile bottom nav styles remain unchanged */
.mobile-bottom-nav {
    display: none;
}

.mobile-top-nav-image {
    margin: 2px auto;
    height: 100%;
    display: none;
}

@media (max-width: 480px) {
    .logoh1 {
        margin-top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-top-nav-image {
        display: block;
    }

    .mobile-nav-image {
        height: 60px;
        aspect-ratio: calc(148 / 82);
        object-fit: contain;
    }
}

.mobile-bottom-nav.nav-hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.mobile-bottom-nav ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    width: 100%;
    height: 100%;
    margin: 0;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    gap: 10px;
    padding: 10px 0;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #666;
}

.mobile-bottom-nav .nav-item:not(:last-child) {
    border-inline-end: 1px solid rgb(131 207 124 / 63%);
}

.mobile-bottom-nav .nav-item.active {
    position: relative;
}

.mobile-bottom-nav .nav-item:active {
    transform: scale(0.95);
}

.mobile-bottom-nav .nav-icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

.mobile-bottom-nav .nav-item.active .nav-icon {
    animation: bounce 0.4s ease;
}

.mobile-bottom-nav .nav-label {
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    transition: all 0.2s ease;
    opacity: 1;
    color: white;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}


/* Menu Overlay Styles */
.menu-overlay {
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;

}

.menu-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px;
    align-items: center;
    position: fixed;
    inset-inline-end: 0;
    top: 0;
    width: 100%;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
    display: flex;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.menu-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-container {
    background-color: #fff;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

}


.close-menu {
    background: none;
    border: none;
    color: black;
    font-size: 1.5rem;
    cursor: pointer;
}

.menu-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 100%;
    margin: auto 0;
    overflow: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.menu-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    flex: 1;
    text-decoration: none;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    padding: 10px 15px;
    width: 100%;
}

.menu-item-container {
    width: 80%;
    padding-bottom: 10px;
    position: relative;
}

.menu-item-wrapper {
    position: relative;

}

.menu-item-container:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -3px;
    inset-inline-end: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #555151 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.menu-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
}

.menu-item span {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
}
.mobileSubmenu-item-text{
    font-size: 16px;
}
/* Enhanced Menu Overlay Styles */
.menu-overlay {
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}


.close-menu {
    background: none;
    border: none;
    color: black;
    font-size: 1.5rem;
    cursor: pointer;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.close-menu:hover {
    transform: rotate(90deg);
}

.menu-item-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
}


.mobileSubmenu-toggle {
    position: absolute;
    inset-inline-end: 0;
    background: none;
    border: none;
    margin-inline-end: 10px;
    cursor: pointer;
    color: #666;
    transition: transform 0.2s ease;
}

.menu-item-container.open .mobileSubmenu-toggle {
    transform: rotate(180deg);
}

.mobileSubmenu-chevron {
    transition: transform 0.2s ease;
}

.mobileSubmenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
}

.menu-item-container.open .mobileSubmenu {
    max-height: 1000px;
}

.mobileSubmenu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    border-inline-end: 3px solid transparent;
}


.mobileSubmenu-item-icon {
    width: 16px;
    height: 16px;
    margin-right: 10px;
}


@media (max-width: 360px) {
    .menu-items {
        padding-top: 20px;
        overflow-y: scroll;
        min-height: 80vh;
    }

    .menu-item {
        padding: var(--spacing-xs) var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .menu-items {
        padding-top: 20px;
        overflow-y: scroll;
    }

    .mobileSubmenu-toggle {
        position: absolute;
        inset-inline-end: 0;
        background: none;
        border: none;
        margin-inline-end: 10px;
        width: 40px;
        height: 100%;
        padding: 8px;
        cursor: pointer;
        color: #666;
        transition: transform 0.2s ease;
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-item-container.open .mobileSubmenu-toggle {
        transform: rotate(180deg) translateY(15px);
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        inset-inline-end: 0;
        right: 0;
        height: 55px;
        background: #4da05b;
        width: 100%;
        z-index: 500;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-container {
        background-color: #fff;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        overflow-y: auto;
        transform: translateY(100vh);
        transition: transform 0.5s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
    }

    .mobileSubmenu-toggle {
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-overlay.active .menu-container {
        transform: translateY(0);
    }

    .menu-container {
        background-color: #fff;
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100vh;
    }

    .menu-container {
        transform: translateY(100vh);
    }

    .menu-overlay.active .menu-container {
        transform: translateY(0);
    }
}



@media (max-width: 768px) {
    .home-page-title{
        font-size: 20px;
    }
}
