/* --------------------- Fonts ---------------------- */
@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;
}
/*---------------- layout combined (layout,navbar,footer,social-links) --------------*/
/*---------------- layout ----------------------*/

html {
    overflow-y: scroll;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Tajawal', sans-serif !important;

}


body {
    font-family: "Tajawal", sans-serif;
    width: 100%;
    padding-top: 80px;
    min-height: 100vh;
}

@media (max-width:480px) {
    body{
        padding-top: 0;
        /*padding-bottom: 70px;*/
    }
}
.main-page-content-wrapper{
    display: flex;
    flex:1;
    min-height: calc(100vh - 80px);
    flex-direction: column;
    justify-content: space-between;
}
.container {
    max-width: 1350px;
    margin-inline: auto;
    padding-inline: 15px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
}

.swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    background-color: rgba(47, 148, 204, 0.68);
}
.swiper-pagination-bullet-active{
    background-color: #2F94CC;
    width: 20px;
    border-radius: 10px;
}
@media (min-width: 768px) {
    .container {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

nav li {
    list-style-type: none;
}

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

input:focus {
    outline: none;
}

/*Variables*/
:root {
    /* Color Variables */
    --color-primary: #f03d3d;
    --color-primary-dark: #d32f2f;
    --color-text: #000;
    --color-text-light: #333;
    --color-text-lighter: #555;
    --color-text-lightest: #666;
    --color-bg-light: #f8f8f8;
    --color-bg-lighter: #f9f9f9;
    --color-bg-lightest: #f0f0f0;
    --color-border: rgba(0, 0, 0, 0.25);
    --color-overlay: rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-weight-normal: 500;
    --font-weight-bold: 700;
    --font-size-base: 20px;
    --font-size-medium: 18px;
    --font-size-small: 16px;
    --font-size-smaller: 15px;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-xxl: 40px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Z-index */
    --z-index-nav: 100;
    --z-index-overlay: 998;
    --z-index-submenu: 999;

    --global-desktop-gap: 22px;
    --global-tablet-gap: 18px;
    --global-mobile-gap: 16px;

    --global-section-title-gap: 20px;

    --global-section-padding: 55px;


    --global-border-radius: 20px;

    --global-btn-primary: rgba(245, 245, 245, 0.73);


    --title-font-size: 20px;
    --description-font-size: 18px;


    --global-shadow-padding:5px;
}


.section-title-global {
    font-weight: 500;
    font-size: 25px;
    line-height: 100%;
    position: relative;
    display: inline-block;
    width: fit-content;
    padding-bottom: 12px;
    text-align: start;
}

.page-section-title-global {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    position: relative;
    display: inline-block;
    width: fit-content;
    text-align: start;
}

.section-title-global::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #E76D50 0%, #C72127 100%);
    bottom: 0;
    left: 0;
}


.section-description-global {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0;
}

/*---------------- Navbar --------------------*/
/* ======================
   NAVIGATION COMPONENT
   ====================== */


/* Base Navigation Container */
nav {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;

}

.mobile-navbar {
    width: 100%;
    height: 80px;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .nav-container {
    height: 100%;
    margin-inline: auto; /* centers horizontally */
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    overflow: visible;
    align-items: center;
}

.nav-logo-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo Styles */
.logo {
    width: 102px;
    height: 80%;
    transition: transform var(--transition-normal);
}


/* Main Navigation Links */
.nav-container .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-xxl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links .nav-link-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link-main-item {
    vertical-align: middle;
    color: var(--color-text);
    text-decoration: none;
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    font-size: var(--font-size-base);
    line-height: 100%;
    letter-spacing: 0;
    transition: color var(--transition-normal);
    position: relative;
}


.nav-link-main-item:hover {
    color: var(--color-primary);
}

/*.nav-link-main-item::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -10px;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    background-color: var(--color-primary);*/
/*    transition: width var(--transition-normal);*/
/*}*/

/*.nav-link-main-item:hover::after {*/
/*    width: 100%;*/
/*}*/

.nav-link-item.active .nav-link-main-item {
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

/* Navigation Icons */
.nav-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--spacing-xs);
}

.nav-icons-image-container {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.25px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.nav-icons-image-container img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

@media (max-width: 1280px) {
    .nav-container .nav-links {
        gap: var(--spacing-md);

    }

    .nav-link-main-item {
        font-size: var(--font-size-medium);

    }

    .nav-icons-image-container {
        width: 25px;
        height: 25px;
    }

    .logo {
        width: 102px;
        height: 80%;
        transition: transform var(--transition-normal);
    }

    .nav-icons-image-container img {
        width: 14px;
        height: 14px;
        object-fit: contain;
    }
}

/*.nav-icons-image-container:hover {*/
/*    background-color: var(--color-bg-light);*/
/*    !*transform: translateY(-2px);*!*/
/*    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
/*}*/


/* Submenu Overlay */
/* Submenu Styles */
.submenu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.submenu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.submenu {
    position: fixed;
    top: 0;
    width: 250px;
    max-width: 100%;
    height: 100%;
    background-color: #d73d3d;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

/* Add this at the top of your CSS */
.submenu {
    display: none;
    /* Hide by default */
}

.submenu.active {
    display: flex;
    /* Only show when active */
}

.submenu {
    transition: all 0.5s ease;
}

/* RTL/LTR handling */
html[dir="rtl"] .submenu {
    display: flex;
    left: -100%;
    opacity: 0;
}

html[dir="ltr"] .submenu {
    display: flex;

    right: -100%;
    opacity: 0;
}

html[dir="rtl"] .submenu.active {
    left: 0;
    opacity: 100;
}

html[dir="ltr"] .submenu.active {
    right: 0;
    opacity: 100;
}

.submenu-header {
    padding: 15px;
    display: flex;
    justify-content: flex-end;
}

.submenu-close {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.submenu-close:hover {
    transform: rotate(90deg);
}


.submenu-items {
    list-style: none;
    margin: 0;
    /*flex-grow: 1;*/
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    gap: 30px;
}

.submenu-items li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submenu-items li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -3px; /* Position it at the bottom */
    left: 0;
    width: 100%;
    height: 1px; /* Thinner border */
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fa6767 50%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.submenu-items li:hover::after {
    opacity: 1;
}

.submenu-items li a {
    display: flex;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    color: white;
    text-decoration: none;
    font-family: var(--font-family);
    font-size: var(--font-size-medium);
    border-radius: 6px;
    transition: all var(--transition-normal);
}


.submenu-icon {
    margin-left: var(--spacing-sm);
    font-size: var(--font-size-base);
    min-width: 30px;
    text-align: center;
}

/* Responsive Behavior */
@media (max-width: 1024px) {
    nav .nav-container .nav-links {
        display: none;
    }

    .nav-icons-image-container:first-child {
        display: flex;
    }
}

@media (min-width: 1025px) {
    .nav-icons-image-container:first-child {
        /* Intentionally empty - placeholder for potential future styles */
    }
}


/* Container must be relative for dropdown */
.nav-link-item {
    position: relative;
}

/* Dropdown */
.dropdown-under-nav {
    position: absolute;
    top: 120%;
    inset-inline-start: 0;
    min-width: 150px;
    background-color: #d73d3d;
    border-radius: 6px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    pointer-events: none;

}

/* Show dropdown on hover */
.nav-link-item:hover .dropdown-under-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dropdown Items */
.dropdown-under-nav li {
    display: flex;
    align-items: center;
    padding: 0;
}

.dropdown-under-nav li a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

/*.dropdown-under-nav li a:hover {*/
/*    background-color: #d64e4e;*/
/*}*/

/* Optional: divider between items */
.dropdown-under-nav li {
    position: relative;
    padding-bottom: 8px; /* optional spacing */
}

.dropdown-under-nav li:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fa6767 50%, rgba(255, 255, 255, 0) 100%);
}

.mobile-navbar {
    display: none;
}


.nav-icons .nav-logo-wrapper {
    display: none;
}
#mainmenu-toggle{
    display: none;
}

@media (max-width: 480px) {
    nav {
        width: 100%;
        height: 80px;
        position: relative;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;

    }

    nav .nav-logo-wrapper.desktop {
        display: none;
    }

    nav .nav-container .nav-links {
        display: none;
    }

    .nav-icons-image-container:first-child {
        display: none;
    }

    .nav-container .search-container {
        display: none;
    }

    .nav-icons {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
    }

    .nav-icons .nav-logo-wrapper {
        display: flex;
    }

    nav .submenu {
        width: 100%;
    }

    #localization {
        display: none;
    }
    #mainmenu-toggle{
        display: none;
    }
    .logo {
        width: 125px;
        height: 100%;
        transition: transform var(--transition-normal);
    }
}

/* ----------- header --------------*/
.header-wrapper {
    width: 100%;
    height: 183px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: -2;
}

.header-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(23, 74, 102, 0) 0%, rgba(23, 74, 102, 0.95) 85.58%);
    z-index: -1;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header-content h3 {
    font-weight: 700;
    font-size: 25px;
    color: rgba(255, 255, 255, 1);
}

.header-content {
    font-weight: 500;
    font-size: 15px;
    color: rgba(255, 255, 255, 1);
}

.breadcrumb-wrapper {
    display: flex;
    flex-direction: row;
    gap: 5px;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    padding-bottom: 3px;
    padding-top: 2px;
}

.breadcrumb-wrapper a {
    color: white;
}

.breadcrumb-wrapper a:last-child {
    font-weight: 700;
}

.breadcrumb-wrapper p {
    display: flex;
    flex-direction: row;
    gap: 5px;
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;

}

/*-------------------- Footer ----------------------*/
footer {
    width: 100%;
    height: auto;
    position: relative;
    color: #fff;
    padding-top: var(--global-desktop-gap);
    display: flex;
    flex-direction: column;
    gap: 21px;

}

.footer-blurred {
    position: relative;
    overflow: hidden;
    color: #fff;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-blurred::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, #174A66 58%, rgba(143, 150, 172, 0) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 17%;
}

.footer-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-logos {
    width: 245px;
    height: 122px;
    display: flex;
    flex-direction: column;
    gap: 21px;

}

.footer-logos p {
    font-weight: 500;
    font-size: 20px;
    line-height: 171%;
    letter-spacing: 0;

}

.footer-logo-container {
    width: 245px;
    height: 67px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.footer-logo {
    height: 67px;
    width: 94px;
    gap: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
}

.footer-logo:first-child {
    width: 143px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo:first-child img {
    width: 143px;
    height: 44px;
    object-fit: contain;
    margin: auto 0;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 171%;
    letter-spacing: 0;
    text-wrap: nowrap;
}

.subscription-container {
    display: flex;
    flex-direction: column;
    gap: 17px;
}


.subscription-container h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
}

.subscription-container p {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
}

.subscription-container p a {
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
}

.footer-bottom.container p a {
    color: #fff !important;
    padding-top: 5px;

}

.footer-bottom {
    position: relative;
}

.footer-bottom::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #174A66 58%, rgba(143, 150, 172, 0) 100%);
}


.subscription-form {
    display: flex;
    align-items: center;
    height: 40px;
    background-color: #fff;
    border-radius: 14px;
    max-width: 420px;
    width: 100%;
    border: 1px solid #ccc;
    overflow: hidden;
    max-height: 40px;
}

@media (max-width: 480px) {
    .subscription-container {
        display: flex;
        flex-direction: column;
        gap: 17px;
        flex: 1;
    }

    .subscription-form {
        flex: 1;
        max-height: 40px;
    }
}

.subscription-form input {
    flex-grow: 1;
    border: none;
    font-size: 14px;
    outline: none;
    padding: 0 10px;
    height: 40px;

}

.subscription-form button {
    width: 80px;
    height: 100%;
    background-color: rgba(23, 74, 102, 1);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: 14px 0 0 14px;
    /* Rounded on the left side only */
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.subscription-form button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

.footer-bottom {
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.footer-social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.footer-social a {
    padding: 4px;
    border: 0.5px solid rgba(253, 253, 253, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;

}

.footer-bottom p {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 1);
}

.footer-blue-wrapper{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 10px;
    transform: translateY(-20px);
    justify-content: start;

}

.footer-blue-link{

    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    color:rgba(255, 255, 255, 1) ;
    font-size: 14px;
}
@media (max-width: 1800px) {
    .footer-columns {
        display: flex;
        flex-direction: row;
        gap: 40px;
        justify-content: space-between;
    }
}

@media (max-width: 1024px) {
    footer {
        gap: 40px;
    }

    .footer-columns {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        gap: 40px;
    }


    .footer-logo-container {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
    }

    .footer-logo {
        width: 50%;
        height: auto;
        padding: 10px;
    }

    .footer-logo:first-child {
        width: 50%;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }


    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        width: 100%;
    }

    .footer-social {
        gap: 10px;
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 14px;
    }
}

@media (max-width:480px){
    .footer-social a{
        padding:8px;
    }
    .footer-social a img {
        width: 20px;
        height: 20px;
        object-fit: contain;
    }
}
/* -------------------------------------- */

/* Hover effect for footer links */
.footer-links a,
.footer-bottom p a {
    position: relative;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-bottom p a:hover {
    color: #CE5656;
    /* Brand accent or highlight */
}


/* Hover effect for footer form button */
/*.footer-form button {*/
/*    transition: background 0.3s ease, transform 0.3s ease;*/
/*}*/

.footer-social a img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Hover effect for social icons */
.footer-social a img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social a:hover img {
    transform: scale(1.1);
    filter: brightness(1.3);
}

.footer-columns-links {
    display: none;
}

@media screen and  (max-width: 480px) {
    footer {
        margin-bottom: 55px;
    }

    /*.footer-background {*/
    /*    display: none;*/
    /*}*/

    .footer-links.footer-columns-table {
        display: none !important;
    }

    .footer-blurred::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: -1;
        background: linear-gradient(90deg, #174A66 58%, #174A66 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .footer-columns-links {
        display: flex;
        flex-direction: column;
        position: relative;
        width: 100%;
    }

    .accordion-header {
        width: 100%;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--bg-primary);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .accordion-header::before {
        content: '';
        position: absolute;
        top: 0;
        inset-inline-end: -100%;
        width: 100%;
        height: 100%;
        /*background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);*/
        transition: all 0.4s ease;
    }

    .accordion-header:hover::before {
        left: 100%;
    }

    .accordion-header h2 {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary);
        margin: 0;
        transition: all 0.4s ease;
    }

    .accordion-header:hover h2 {
        color: var(--accent-color);
    }

    .toggle-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary-gradient);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 300;
        transition: all 0.4s ease;
        box-shadow: var(--shadow-medium);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        background: var(--bg-secondary);
        transition: all 0.4s ease;
        opacity: 0;
    }

    .accordion-content.active {
        opacity: 1;
        display: flex;
        flex-direction: column;
        padding-top: 10px;
        width: 100%;
        gap: 15px;
        color: white;
    }

    .accordion-content a {
        color: white;
        display: none;
    }

    .accordion-content.active a {
        display: block;
        color: white;
    }
}

/*----------------------- social links --------------------*/
.social-links {
    position: fixed;
    inset-inline-start: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 3px;
    z-index: 999;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 35px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 0.25px solid rgba(186, 186, 186, 1);
    background: rgba(226, 226, 226, 0.39);
    border-start-end-radius: 12px;
    border-end-end-radius: 12px;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: linear-gradient(180deg, #2F94CC 0%, #29688B 100%);
    transform: translateX(3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(47, 148, 204, 0.25);
}

.social-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.1);
}

.show-social-links-buttons {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 0.25px solid rgba(186, 186, 186, 1);
    background: rgba(226, 226, 226, 0.39);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(8px);
    transform: scale(1) rotate(0deg);
    opacity: 1;
    z-index: 10;
}

.show-social-links-buttons.hiding {
    transform: scale(0) rotate(180deg);
    opacity: 0;
    pointer-events: none;
}

.show-social-links-buttons img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.show-social-links-buttons:hover {
    background: linear-gradient(180deg, #2F94CC 0%, #29688B 100%);
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 8px 25px rgba(47, 148, 204, 0.3);
}

.show-social-links-buttons:hover img {
    transform: rotate(90deg);
}

.social-links-container {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
}

.social-item {
    transform: scale(0) translateX(-50px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left center;
}

/* Hide button specific styles */
#hide-social-links {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

#hide-social-links img {
    transition: transform 0.2s ease;
}

#hide-social-links:hover img {
    transform: rotate(90deg) scale(1.1);
}

/* Animation states */
.social-links-container.show .social-item {
    transform: scale(1) translateX(0);
    opacity: 1;
    pointer-events: all;
    animation: slideFromCenter 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: var(--delay);
}

.social-links-container.hide .social-item {
    animation: slideToCenter 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
    animation-delay: calc(var(--delay) * 0.5);
}

@keyframes slideFromCenter {
    0% {
        transform: scale(0) translateX(-50px) rotate(-180deg);
        opacity: 0;
        filter: blur(5px);
    }
    30% {
        transform: scale(0.3) translateX(-25px) rotate(-90deg);
        opacity: 0.3;
        filter: blur(3px);
    }
    60% {
        transform: scale(0.8) translateX(-5px) rotate(-20deg);
        opacity: 0.7;
        filter: blur(1px);
    }
    80% {
        transform: scale(1.05) translateX(2px) rotate(5deg);
        opacity: 0.9;
        filter: blur(0px);
    }
    100% {
        transform: scale(1) translateX(0) rotate(0deg);
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes slideToCenter {
    0% {
        transform: scale(1) translateX(0) rotate(0deg);
        opacity: 1;
        filter: blur(0px);
    }
    20% {
        transform: scale(1.1) translateX(-10px) rotate(-15deg);
        opacity: 0.8;
        filter: blur(0px);
    }
    60% {
        transform: scale(0.6) translateX(-30px) rotate(-90deg);
        opacity: 0.4;
        filter: blur(2px);
    }
    100% {
        transform: scale(0) translateX(-50px) rotate(-180deg);
        opacity: 0;
        filter: blur(5px);
    }
}

/* Pulse effect for show button */
@keyframes gentlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(47, 148, 204, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(47, 148, 204, 0);
    }
}

.show-social-links-buttons.pulse {
    animation: gentlePulse 2.5s ease-in-out infinite;
}

/* Responsive behavior */
@media (max-width: 480px) {
    .show-social-links-buttons {
        display: flex;
    }

    .social-links-container:not(.show) .social-item {
        display: none;
    }


}

@media (min-width: 481px) {


    .social-item {
        transform: scale(1) translateX(0);
        opacity: 1;
        pointer-events: all;
        position: static;
    }

    .social-links-container {
        display: flex;
    }
    .show-social-links-buttons,.hide-social-links-buttons {
        display: none !important;
    }
}

.social-link:focus-visible {
    outline: 2px solid #2F94CC;
    outline-offset: 2px;
}

.social-link img[data-light] {
    transition: opacity 0.3s ease;
}

.social-links-container:not(.initialized) .social-item {
    visibility: hidden;
}

.social-links-container.initialized .social-item {
    visibility: visible;
}

/* -------------------- mobile bottom nav --------------------*/
/* Your existing mobile bottom nav styles remain unchanged */
.mobile-bottom-nav {
    display: none;
}


.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 rgba(197, 197, 197, 0.91);
}

.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-family: var(--font-family);
    font-size: var(--font-size-medium);
    border-radius: 6px;
    transition: all var(--transition-normal);
    padding: var(--spacing-sm) var(--spacing-md);
    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: var(--font-size-medium);
}

/* 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;
    background-color: #fafafa;
    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: scroll;
        min-height: 80vh;
    }
    .menu-item {
        padding: var(--spacing-xs) var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .menu-items {
        padding-top: 20px;
        overflow: 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: #e94f1d;
        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 (768px <= width <= 1024px) {
    .menu-container {
        background-color: #fff;
        width: 50%;
        max-width: 50%;
        height: 100%;
        max-height: 100vh;
        display: flex;
        flex-direction: column;
    }

    html[dir="rtl"] .mobileSubmenu-toggle {
        inset-inline-end: 0;
        transform: translateX(-50%);
    }

    html[dir="rtl"] .menu-container {
        transform: translateX(-50vw);
    }

    html[dir="ltr"] .mobileSubmenu-toggle {
        inset-inline-end: 0;
        transform: translateX(50%);
    }

    html[dir="ltr"] .menu-container {
        transform: translateX(50vw);
    }

    .menu-overlay.active .menu-container {
        transform: translateX(0);
        inset-inline-end: 0;
    }

    .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;
        justify-content: end;
        align-items: center;
        opacity: 0;
        visibility: hidden;
        display: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(1px);
    }
}

/* -------------- about global -----------------*/
.about-us-wrapper {
    padding: var(--global-section-padding) 0;
    display: flex;
    flex-direction: column;
    gap: var(--global-section-padding);
}
/*--------------- stations --------------------*/
.home-section {
    margin-bottom: var(--global-section-padding);
}
.stations-page-section .home-section{
    margin-bottom: 0 !important;
    padding-top:var(--global-section-padding);
    padding-bottom:var(--global-section-padding);
}

.station-page-wrapper{
    padding-top:var(--global-section-padding);
    padding-bottom:var(--global-section-padding);
}
.station-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--global-section-padding);
}


.about-us-station-card-page {
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.about-us-station-card .about-us-station-card-header img{
    display: block;
}
/* receiving-station */
.receiving-station-gallery{
    height: 100%;
    padding-top:10px ;
    padding-bottom:10px ;
}
.cards-wrapper{
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--global-desktop-gap);
}
.receiving-card {
    display: flex;
    flex-direction: column;
    gap: var(--global-mobile-gap);
    width: 320px;
    align-items: center;
    height: 100%;
    padding: 10px 0;
}

.receiving-card-item-image-wrapper {
    width: 100px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

.receiving-card .receiving-card-item-image-wrapper img {
    width: 50px;
    aspect: 1/1;
    object-fit: contain;
}

.receiving-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}

.receiving-card-content p {
    font-weight: 500;
    font-size: 15px;
    leading-trim: Cap height;
    line-height: 140%;
    color: rgba(129, 129, 129, 1);
}

/*Safe Space Station*/
.safe-space-station-list {
    display: flex;
    flex-direction: column;
    gap: var(--global-section-padding);
}

.safe-space-list-item {
    display: flex;
    flex-direction: column;
    gap: var(--global-desktop-gap);
}

.safe-space-item-content {
    display: flex;
    gap: 16px;
    align-items: start;
}

.safe-space-item-text-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    height: auto;
}

.safe-space-item-content img {
    width: 20px;
    height: 20px;
}

.safe-space-item-text-content h3 {
    font-weight: 500;
    font-size: 18px;
    line-height: 80%;
}

.safe-area-item-images-gallery {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    align-items: center;
    padding: 0 5px;
}


.safe-area-gallery-card {
    display: flex;
    flex-direction: column;
    gap: var(--global-mobile-gap);
    align-items: center;
}

.safe-area-item-gallery-image-wrapper {
    width: 100px;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}

.safe-area-item-gallery-image-wrapper img {
    width: 60px;
    height: 60px;
}

.safe-area-gallery-card h4 {
    font-size: 16px;
}


/*Secret Cave Station*/
.secret-cave-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--global-section-padding);
}

.secret-cave-item-content {
    display: flex;
    flex-direction: column;
    gap: var(--global-desktop-gap);
}

.secret-cave-title {
    display: flex;
    gap: 8px;
}

.secret-cave-title img {
    width: 20px !important;
    aspect-ratio: 1/1;
    max-height: 30px;
}


.secret-cave-item-content h4 {
    font-weight: 500;
    font-size: 18px;
}

/*groundskeeper*/
.groundskeeper-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 6px;
}


.about-us-station-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    border-radius: 26px;
    border-width: 1px;
    padding: var(--global-desktop-gap);
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(202, 202, 202, 0.5);
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.about-us-station-card:hover {
    box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.1);
}

.about-us-station-card-header {
    display: flex;
    align-items: center;
    gap: 15px;

}

.about-us-station-card p {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0;
}

.about-us-station-card img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.station-description-inline {
    display: inline;
}

.station-description-inline .station-item-note {
    display: inline;
    color: rgba(23, 74, 102, 1);
    font-weight: 500;
}

/* ------------------- about - content*/
.about-us-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--global-section-padding);
}


.about-us-text-content {
    flex:1;
    display: flex;
    flex-direction: column;
    gap: var(--global-section-title-gap);
    overflow:hidden;
}



.about-us-text-content p {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0;
}

.about-us-gallery {
    position: relative;
    display: flex;
    width: 530px;
    height: 360px;
    align-items: center;
    justify-content: center;
}
@media (max-width: 1024px) {
    .about-us-content {
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: var(--global-section-padding);
    }
    .about-us-gallery {
        margin: 0 auto;
    }
    /* Left Image */

}

/* Left Image */
.gallery-image.left-img {
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    width: 367px;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    z-index: 1;
}

/* Right Image */
.gallery-image.right-img {
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 279px;
    height: 197px;
    object-fit: cover;
    border-radius: 10px;
    z-index: 2;
}
@media (max-width: 568px) {
    .about-us-gallery {
        position: relative;
        display: flex;
        width: 100%;
        height: 360px;
        align-items: center;
        justify-content: center;
    }
    .gallery-image.left-img {
        width: 70%;
        aspect-ratio: 7/10;
    }

    /* Right Image */
    .gallery-image.right-img {
        width: 52%;
        aspect-ratio: 1/2;
    }
}
/* Middle Card */
.about-us-gallery-description {
    position: relative;
    z-index: 3;
    width: 215px;
    height: 153px;
    border-radius: 11px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center;
    background: linear-gradient(0deg, #FFFFFF, #FFFFFF),
    radial-gradient(73.53% 73.53% at 50% 50%, rgba(206, 86, 86, 0) 0%, rgba(206, 86, 86, 0.05) 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}
.about-us-gallery-description h4 {
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    text-align: center;
}

.circle-view {
    width: 66px;
    height: 66px;
    gap: 10px;
    border-radius: 64px;
    border-width: 0.5px;
    padding: 5px;
    border: 0.5px solid rgba(206, 86, 86, 1);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
    linear-gradient(0deg, rgba(233, 164, 166, 0.05), rgba(233, 164, 166, 0.05));

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-view p {
    font-weight: 700;
    font-size: 30px;
    leading-trim: Cap height;
    line-height: 100%;
    vertical-align: middle;
    color: rgba(206, 86, 86, 1);


}


.circle-view span {
    position: absolute;
    top: 50%;
    inset-inline-end: -10px;
    transform: translateY(-50%);

    width: 18px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 700;
    font-size: 40px;
    color: rgba(206, 86, 86, 1);
    border: 2px solid white;
    background-color: white;
}

/* Dotted Pattern */
.dotted-pattern {
    position: absolute;
    inset-inline-end: 100px;
    bottom: 34px;
    width: 146px;
    height: 96px;
    background-image: radial-gradient(#d9d9d9 1px, transparent 1px);
    background-size: 10px 10px;
    z-index: 0;
}

/* ------------------- about station -------------------------*/
#about-us-stations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--global-desktop-gap);
    padding-top: var(--global-section-padding) 0 ;
}

@media (max-width: 568px) {
    #about-us-stations {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 480px) and (max-width:1024px) {
    #mainmenu-toggle{
        display: flex;
    }
}
li:not(nav li) {
    margin-inline-start: 1rem;
}