* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 10px;
    -webkit-appearance: none;
}

::-webkit-scrollbar-track {
    background: transparent;
    -webkit-overflow-scrolling: touch;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 0;
    border: 6px solid transparent;
    background-clip: padding-box;
    min-height: 50px;
    -webkit-overflow-scrolling: touch;
}

::-webkit-scrollbar-thumb:hover {
    background: transparent;
    border: 6px solid transparent;
    background-clip: padding-box;
}

/* For Firefox and mobile */
* {
    scrollbar-width: inherit;
    scrollbar-color: #17898c transparent;
    -webkit-overflow-scrolling: touch;
}

html {
    /*overflow: scroll;*/
    -webkit-overflow-scrolling: touch;
}

html, body {
    height: 100%;
    /*overflow: auto;*/
    background: #000;
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 2000;
    padding: 20px 50px;
    background: transparent;
    transition: background 0.3s ease;
}

/* Add this new style for dark sections */
header.dark-bg {
    background: rgba(0, 0, 0, 0.4);
}

.categories-btn {
    border: none;
    outline: none;
    background: none;
    color: white;
    padding: 12px 20px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2000;
}

.categories-btn.dark-color {
    color: black;
}

.categories-btn.green-color {
    color: #17898c;
}

.menu-toggle {
    background: transparent;
    border: none;
    color: white;
    font-size: 25px;
    cursor: pointer;
    margin-left: 20px;
    position: relative;
    transition: all 0.3s ease;
    z-index: 2000;
}

.menu-toggle.dark-color {
    color: black;
}

.menu-toggle.green-color {
    color: #17898c;
}

.header-divider.dark-color {
    color: black;
    background: black;
}

.header-divider.green-color {
    color: #17898c;
    background: #17898c;
}

.layout-root {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2000;
}

.logo-link-header {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.logo-icon {
    width: 160px;
    height: 39px;
    /*background: white;*/
    color: #667eea;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 12px;
}

.categories-btn:hover {
    color: #17898c;
}

.categories-btn.dark-color:hover {
    color: #17898c;
}

.menu-toggle:hover {
    color: #17898c;
}

.menu-toggle.dark-color:hover {
    /*color: #25D366;*/
    color: #17898c;
}

.header-divider {
    width: 1px;
    height: 30px;
    background: white;
    margin: 0 15px;
}

/* Navigation Styles */
.navigation-root {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    z-index: 9999;
    transition: right 0.3s ease;
}

.navigation-root.active {
    right: 0;
}

.navigation-root.active ~ body {
    overflow: hidden;
}

.navigation-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.navigation-nav {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #333;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
}

.main-content {
    padding: 30px;
}

.menu-block ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-block li {
    margin-bottom: 15px;
}

.menu-block a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.menu-block a:hover {
    color: #667eea;
}

@media (max-width: 768px) {
    .main-content {
        padding: 0 30px;
    }

    .menu-block a {
        color: #333;
        text-decoration: none;
        font-size: 16px;
        display: block;
        padding: 2px 0;
        transition: color 0.3s ease;
    }
}

.menu-secondary {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.offices {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.city {
    color: #667eea;
    text-decoration: none;
    font-style: normal;
}

/* Main Content */
.main-section {
    height: 100vh !important;
    min-height: 100vh;
    color: white;
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.fullscreen-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 100px 60px;
}

.fullscreen-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.fullscreen-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 57%);
    z-index: 1;
}

/* Split Section Styles (Second Section) */
/* Default styles (desktop and above) */
.split-section {
    display: flex;
    padding: 0;
    height: 100vh;
}

.split-section .text-content {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: #f5ededf2;
    color: #000;
}

.split-section .media-content {
    width: 50%;
    position: relative;
    overflow: hidden;
    height: 100%;
    background-color: #17898c;
}

.full-media-content {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Mobile styles */
@media (max-width: 768px) {
    .why-kafou-page .split-section {
        flex-direction: column;
        min-height: 100vh;
    }

    .why-kafou-page .split-section .media-content {
        width: 100%;
        max-height: 35vh; /* Adjust based on how much video you want */
        flex-shrink: 0;
    }

    .why-kafou-page .split-section .text-content {
        width: 100%;
        flex-grow: 1; /* Take up remaining space */
        padding: 24px;
        overflow-y: auto;
    }

    .why-kafou-page .split-section .section-title {
        font-size: 20px;
        margin-top: 10px;
        /*margin-bottom: 8px;*/
    }

    .why-kafou-page .split-section .section-description {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Red Section Styles (Third Section) */
.red-split-section {
    display: flex;
    padding: 0;
    height: 100vh;
}

.red-split-section .text-content {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: white;
    color: #000;
}

.red-split-section .media-content-red {
    width: 50%;
    position: relative;
    overflow: hidden;
    height: 100%;
    background-color: #17898c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.red-split-section .media-content-red img {
    width: 180px;
    height: auto;
}

.split-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-title {
    font-size: 26px;
    font-weight: 300;
    line-height: 40px;
    margin-bottom: 20px;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.welcome-main-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 40px;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    /*margin-bottom: 30px;*/
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    /*margin-bottom: 30px;*/
    max-width: 500px;
}

.why-kafou-page .section-title {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
    /*margin-bottom: 30px;*/
}

.why-kafou-page .section-description {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    /*margin-bottom: 30px;*/
    max-width: 500px;
}

.cta-button {
    background: transparent;
    border: 2px solid #17898c;
    color: white;
    width: fit-content;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.cta-button:hover {
    background: #17898c;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .class-d-none {
        display: none;
    }

    header {
        padding: 15px 20px;
    }

    .navigation-root {
        width: 100%;
        right: -100%;
    }

    .fullscreen-section {
        padding: 20px;
        padding-bottom: 80px;
    }

    .split-section {
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }

    .split-section .text-content {
        width: 100%;
        height: 50%;
        padding: 65px 20px 0 20px;
        justify-content: center;
        font-size: clamp(0.8rem, 1.5vw, 1rem);
    }

    .split-section .text-content .section-title {
        font-size: 17px;
        /*margin-top: 20px;*/
        /*font-size: clamp(1.2rem, 3vw, 1.8rem);*/
    }

    .split-section .text-content p {
        padding: 0 !important;
        line-height: 16px !important;
    }

    .split-section .text-content ul {
        margin: 0;
        line-height: 16px;
        letter-spacing: -0.5px;
    }

    .split-section .media-content {
        width: 100%;
        height: 50%;
    }

    /* Mobile styles for red section */
    .red-split-section {
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }

    .red-split-section .text-content {
        display: none;
    }

    .red-split-section .media-content-red {
        width: 100%;
        height: 100%;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: center;
    }

    .red-split-section .mobile-text {
        color: white;
        text-align: left;
    }

    .red-split-section .mobile-text .section-title {
        color: white;
        font-size: 32px;
        line-height: 1.2;
        /*margin-bottom: 20px;*/
    }

    .red-split-section .mobile-text .section-description {
        color: white;
        font-size: 16px;
        line-height: 1.5;
        /*margin-bottom: 20px;*/
    }

    .section-title {
        font-size: 25px;
        margin-bottom: 0px;
        line-height: 1.2;
    }

    .dribbble-section .section-title {
        font-size: 35px !important;
        margin-bottom: 0px;
        line-height: 1.2;
    }

    /*.why-kafou-page .section-title {
        font-size: 12px;
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .why-kafou-page .section-description {
        font-size: 10px;
        line-height: 1.2;
        margin-bottom: 0;
        color: #666;
    }*/

    .section-description {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 0;
        color: #666;
    }

    .categories-btn {
        display: none;
    }

    .footer-wrapper {
        min-height: 100vh;
        height: auto;
        padding: 0;
    }

    .footer-section {
        padding: 100px 0 40px;
    }

    .footer-logo-wrapper {
        margin-top: 20px;
    }

    /* Adjust the header background when footer is active */
    .footer-wrapper.active ~ header {
        background: transparent;
    }

    .footer-wrapper.active {
        padding-top: 60px;
    }

    .dribbble-section {
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }

    /*.dribbble-section .text-content {
        width: 100%;
        padding: 80px 20px 30px 20px;
    }*/

    .dribbble-section .media-content {
        width: 100%;
        padding: 0 20px 20px 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        height: auto;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .red-split-section .media-content-red {
        padding: 30px 20px;
    }

    .red-split-section .mobile-text .section-title {
        font-size: 28px;
    }

    .red-split-section .mobile-text .section-description {
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .red-split-section .media-content-red img {
        width: 200px;
        margin-top: 50px;
        margin-bottom: 30px;
    }
}

/* Dribbble Section Styles */
.dribbble-section {
    display: flex;
    padding: 0;
    height: 100vh;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.dribbble-section .text-content {
    width: 30%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #000;
}

.dribbble-section .media-content {
    width: 70%;
    position: relative;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-content: center;
    height: 100%;
    overflow: hidden;
}

.icon_box img {
    width: 260px;
    height: 180px;
}

@media (max-width: 768px) {
    .class-d-none {
        display: none;
    }

    .dribbble-section {
        display: flex;
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }

    .dribbble-section .media-content {
        flex: 1 1 auto;
        width: 100%;
        padding: 20px 20px 0 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-content: center;
        align-items: center;
        height: auto;
        overflow: hidden;
        order: 1; /* Images appear first */
    }

    .dribbble-section .text-content {
        width: 100%;
        padding: 0 10px 80px 25px;
        background: transparent;
        order: 2; /* Text appears second */
    }

    .icon_box img {
        width: 100%;
        height: 100%;
    }
}

/*.dribbble-section {
    display: flex;
    padding: 0;
    height: 100vh;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.dribbble-section .text-content {
    width: 40%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000;
}

.dribbble-section .media-content {
    width: 60%;
    position: relative;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-content: center;
    height: 100%;
    overflow: hidden;
}

.icon_box {
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    height: 100%;
}

.icon_box a {
    text-decoration: none;
    color: inherit;
}

.icon_box .icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: green;
}

.icon_box h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
}

.icon_box .desc_wrapper {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .class-d-none {
        display: none;
    }

    .dribbble-section {
        display: flex;
        flex-direction: column;
        height: 100vh;
        overflow: hidden;
    }
    .dribbble-section .media-content {
        flex: 1 1 auto;
        width: 100%;
        padding: 0 20px 20px 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-content: center;
        align-items: center;
        height: auto;
        overflow: hidden;
    }
    .dribbble-section .text-content {
        width: 100%;
        margin-top: auto;
        padding: 16px 10px 24px 10px;
        text-align: center;
        background: transparent;
    }

    .icon_box img {
        width: 100%;
        height: 100%;
    }
}*/

/*@media (max-width: 480px) {
    .dribbble-section .text-content {
        padding: 80px 20px 30px 20px;
    }
}

@media (max-width: 380px) {
    .dribbble-section .text-content {
        padding: 80px 20px 30px 20px;
    }
}*/

/* Change menu color to black when the last section is in view */
.dribbble-section.active ~ header .categories-btn,
.dribbble-section.active ~ header .menu-toggle {
    color: black;
}

/* Footer Styles */
.footer-wrapper {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("../images/footerbg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.footer-section {
    width: 100%;
    padding: 0;
    color: white;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-content {
    max-height: calc(100vh - 40px);
    padding: 20px 0;
}

.footer-logo-wrapper {
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.about-text {
    margin-bottom: 20px;
}

.about-text p {
    font-size: 14px;
    line-height: 1.6;
    color: white;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00a0e1;
    color: #fff;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: black;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00a0e1;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #fff;
    font-size: 14px;
}

.contact-info i {
    color: #00a0e1;
    margin-top: 4px;
}

.contact-info a {
    color: #fff !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #00a0e1;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: #fff;
}

.copyright i {
    color: #00a0e1;
    margin: 0 3px;
}

.messenger-links {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.messenger-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.messenger-link.whatsapp {
    background: #25D366;
}

.messenger-link.figma {
    background: #1E1E1E;
}

.messenger-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .footer-wrapper {
        height: 100vh;
        overflow: hidden;
    }

    .footer-section {
        padding: 0 0 20px;
    }

    .footer-content {
        max-height: calc(100vh - 80px);
        padding: 0;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .footer-logo-wrapper {
        margin-top: -80px;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 0 15px 15px;
    }
}

/* Mission & Vision Page Styles */
.mission-vision-page {
    background: white;
}

.mission-vision-container {
    display: flex;
    min-height: 100vh;
    padding-top: 80px; /* Space for header */
}

.mission-vision-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    overflow: hidden;
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-size: 80px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.mission-vision-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mission-vision-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.mission-vision-content {
    width: 50%;
    margin-left: 50%;
    background: #fff;
    min-height: 100vh;
    overflow-y: auto;
}

.content-section {
    width: 100%;
    margin-bottom: 80px;
    padding: 60px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
}

.content-section p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.content-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

.content-section ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: green;
    border-radius: 50%;
}

/* Values Grid Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.value-item {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

.value-item i {
    font-size: 60px;
    margin-bottom: 20px;
    color: green;
}

.value-item h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .mission-vision-container {
        flex-direction: column;
        padding-top: 60px;
    }

    .mission-vision-video {
        position: relative;
        width: 100%;
        height: 70vh;
    }

    .mission-vision-content {
        width: 100%;
        margin-left: 0;
    }

    .content-section {
        padding: 40px;
    }

    .content-section h2 {
        font-size: 42px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .value-item {
        padding: 30px;
    }

    .video-content {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .mission-vision-video {
        height: 60vh;
    }

    .mission-vision-content {
        padding: 0;
    }

    .content-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .content-section h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .content-section p {
        font-size: 16px;
    }

    .content-section ul li {
        font-size: 16px;
    }

    .value-item {
        padding: 25px;
    }

    .value-item i {
        font-size: 48px;
    }

    .value-item h3 {
        font-size: 24px;
    }

    .video-content {
        font-size: 36px;
    }
}

/* Mission & Vision Page Specific Styles */
.mission-vision-page header {
    background: transparent !important;
}

.mission-vision-page .menu-toggle {
    position: fixed;
    top: 20px;
    right: 50px;
    margin: 0;
    color: black;
    background: transparent !important;
}

.mission-vision-page .layout-root {
    background: transparent !important;
}

.mission-vision-page .navigation-root {
    background: transparent;
}

@media (max-width: 768px) {
    .mission-vision-page .menu-toggle {
        right: 20px;
        top: 15px;
    }
}

.icon-i {
    font-size: 60px;
    margin-bottom: 20px;
    color: green;
}

/* Showcase Section Styles */
.showcase-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.showcase-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
.showcase-content {
    position: relative;
    z-index: 2;
}
.showcase-text {
    color: #fff;
    text-align: left;
    padding: 40px 0;
}
.showcase-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.showcase-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.showcase-slider-col {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.showcase-slider-3d {
    perspective: 1200px;
    width: 320px;
    height: 480px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.showcase-slide {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.4;
    z-index: 1;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    overflow: hidden;
    transition:
            transform 0.5s cubic-bezier(.4,2,.6,1),
            opacity 0.5s,
            z-index 0s,
            width 0.5s,
            height 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.showcase-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.showcase-slide.center {
    width: 220px;
    height: 220px;
    opacity: 1;
    z-index: 3;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.showcase-slide.above {
    width: 160px;
    height: 160px;
    opacity: 0.7;
    z-index: 2;
    transform: translate(-50%, calc(-50% - 130px)) scale(0.85) rotateX(10deg);
}
.showcase-slide.below {
    width: 160px;
    height: 160px;
    opacity: 0.7;
    z-index: 2;
    transform: translate(-50%, calc(-50% + 130px)) scale(0.85) rotateX(-10deg);
}
.showcase-slide.far-above {
    width: 100px;
    height: 100px;
    opacity: 0.3;
    z-index: 1;
    transform: translate(-50%, calc(-50% - 220px)) scale(0.6) rotateX(20deg);
}
.showcase-slide.far-below {
    width: 100px;
    height: 100px;
    opacity: 0.3;
    z-index: 1;
    transform: translate(-50%, calc(-50% + 220px)) scale(0.6) rotateX(-20deg);
}
/* Responsive */
@media (max-width: 991px) {
    .showcase-section {
        min-height: 80vh;
    }
    .showcase-slider-col {
        height: 400px;
    }
    .showcase-slider-3d {
        width: 180px;
        height: 320px;
    }
    .showcase-slide {
        width: 120px;
        height: 120px;
    }
    .showcase-title {
        font-size: 2rem;
    }
}
@media (max-width: 767px) {
    .showcase-section {
        min-height: 80vh;
        padding: 30px 0 40px 0;
        display: block;
    }
    .showcase-content .row {
        flex-direction: column;
        align-items: center;
    }
    .showcase-text, .showcase-slider-col {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 0;
    }
    .showcase-text {
        margin-bottom: 24px;
    }
    .showcase-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    .showcase-desc {
        font-size: 1rem;
        margin-bottom: 18px;
        max-width: 100%;
    }
    .cta-button, .showcase-btn {
        font-size: 1rem;
        padding: 10px 24px;
        margin-top: 10px;
        margin-bottom: 30px;
    }
    .showcase-slider-col {
        margin-top: 0;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .showcase-slider-3d {
        width: 160px;
        height: 220px;
        margin: 0 auto;
    }
    .showcase-slide {
        width: 120px;
        height: 120px;
        border-radius: 12px;
    }
    .showcase-slide.center {
        width: 160px;
        height: 160px;
        border-radius: 16px;
    }
    .showcase-slide.above, .showcase-slide.below {
        width: 100px;
        height: 100px;
    }
    .showcase-slide.far-above, .showcase-slide.far-below {
        width: 70px;
        height: 70px;
    }
    .showcase-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
        left: 100%;
        transform: translateX(-60%);
    }
    .showcase-arrow-up {
        top: 0;
    }
    .showcase-arrow-down {
        bottom: 0;
    }
}

.showcase-arrow {
    position: absolute;
    left: 100%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.5);
    border: 2px solid #17898c;
    color: #17898c;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.2s, color 0.2s;
}
.showcase-arrow:hover {
    background: #17898c;
    color: #222;
}
.showcase-arrow-up {
    top: 10px;
}
.showcase-arrow-down {
    bottom: 10px;
}

@media (max-width: 768px) {
    .icon_box .icon {
        display: none;
    }
}
/* 3D Card Carousel Demo Styles */
.card-carousel-demo-section {
    background: #181c20;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}
.card-carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}
.card-carousel {
    position: relative;
    width: 400px;
    height: 300px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card {
    position: absolute;
    width: 220px;
    height: 300px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: #181c20;
    transition: transform 0.5s cubic-bezier(.4,2.08,.55,.44), opacity 0.5s;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}
.card.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0deg);
    z-index: 5;
    pointer-events: auto;
}
.card.left {
    opacity: 0.7;
    transform: translateX(-120px) scale(0.85) rotateY(30deg);
    z-index: 4;
}
.card.right {
    opacity: 0.7;
    transform: translateX(120px) scale(0.85) rotateY(-30deg);
    z-index: 4;
}
.card.far-left {
    opacity: 0.3;
    transform: translateX(-240px) scale(0.7) rotateY(45deg);
    z-index: 3;
}
.card.far-right {
    opacity: 0.3;
    transform: translateX(240px) scale(0.7) rotateY(-45deg);
    z-index: 3;
}
.carousel-controls {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
}
.carousel-arrow {
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: #181c20;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-arrow:hover {
    background: #17898c;
    color: #fff;
}
@media (max-width: 600px) {
    .card-carousel {
        width: 90vw;
        height: 220px;
    }
    .card {
        width: 140px;
        height: 180px;
        font-size: 2rem;
    }
    .card.left, .card.right {
        transform: translateX(-70px) scale(0.85) rotateY(30deg);
    }
    .card.right {
        transform: translateX(70px) scale(0.85) rotateY(-30deg);
    }
    .card.far-left {
        transform: translateX(-140px) scale(0.7) rotateY(45deg);
    }
    .card.far-right {
        transform: translateX(140px) scale(0.7) rotateY(-45deg);
    }
}
/* 3D Card Carousel Demo Styles (Vertical Wheel) */
.card-carousel-demo-section {
    background: #181c20;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}
.card-carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
}
.card-carousel-vertical {
    position: relative;
    width: 220px;
    height: 400px;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective-origin: 50% 50%;
}
.card {
    position: absolute;
    width: 220px;
    height: 140px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    color: #181c20;
    transition: transform 0.7s cubic-bezier(.4,2.08,.55,.44), opacity 0.5s;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
    backface-visibility: hidden;
}
.card.active {
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
}
.carousel-controls-vertical {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}
.carousel-arrow {
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    color: #181c20;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-arrow:hover {
    background: #17898c;
    color: #fff;
}
@media (max-width: 600px) {
    .card-carousel-vertical {
        width: 90vw;
        height: 220px;
    }
    .card {
        width: 90vw;
        height: 90px;
        font-size: 2rem;
    }
}
/* Centered Google Map Section */
.iframe-map {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #0f0f0f;
}
.iframe-map-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: 100%;
}
.iframe-map-container iframe {
    width: 100%;
    max-width: 600px;
    height: 30vh;
    max-height: 400px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border: 0;
    background: #fff;
}
@media (max-width: 991px) {
    .iframe-map-container iframe {
        max-width: 90vw;
        height: 35vh;
        max-height: 300px;
    }
}
@media (max-width: 600px) {
    .iframe-map-container iframe {
        max-width: 90vw;
        width: 90vw;
        height: 20vh;
        max-height: 120px;
        margin-top: 20px;
    }
}

.showcase-section .banner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    perspective: 1500px;
}

.banner {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.banner .slider {
    position: absolute;
    width: 180px;
    height: 140px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 20s linear infinite;
}

/* Auto Rotation Animation */
@keyframes autoRun {
    from {
        transform: perspective(1000px) rotateX(360deg);
    }
    to {
        transform: perspective(1000px) rotateX(0deg);
    }
}

/* Each Item Positioned in 3D Circle */
.banner .slider .item {
    position: absolute;
    width: 160px;
    height: 100px;
    transform: rotateX(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
    translateZ(210px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .slider .item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    background-color: white;
    opacity: 0.9;
    padding: 5px;
}

/* ---------- Responsive Styles ---------- */
@media (min-width: 992px) {
    .showcase-section .banner {
        margin: -250px;
    }

    .showcase-content .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .showcase-text, .banner {
        height: 100%;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .footer-logo-wrapper .footer-logo {
        margin-bottom: 10px;
    }
}
@media (max-width: 991px) {
    .banner {
        min-height: 300px;
        perspective: 1000px;
    }

    .banner .slider {
        width: 110px;
        height: 110px;
    }

    .banner .slider .item {
        width: 110px;
        height: 90px;
        transform: rotateX(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(170px);
    }
}
@media (max-width: 767px) {
    .showcase-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .banner {
        min-height: 250px;
        perspective: 800px;
    }

    .banner .slider {
        width: 100px;
        height: 70px;
    }

    .banner .slider .item {
        width: 100px;
        height: 85px;
        transform: rotateX(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(180px);
    }
}
@media (max-width: 480px) {
    .banner {
        min-height: 220px;
        perspective: 600px;
    }

    .banner .slider {
        width: 100px;
        height: 70px;
    }

    .banner .slider .item {
        width: 100px;
        height: 85px;
        transform: rotateX(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(180px);
    }
}

/*-------------------------------------------------Mission&Vision-------------------------------------------------*/
.welcome-title {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .why-kafou-page .fullscreen-section {
        padding: 20px 10px 60px 10px;
    }
    .why-kafou-page .fullscreen-section .section-title {
        font-size: 22px !important;
        /*margin-bottom: 14px;*/
    }
    .why-kafou-page .fullscreen-section .welcome-title {
        font-size: 15px;
        margin-bottom: 18px;
        max-width: 100%;
    }
}
@media (max-width: 600px) {
    .why-kafou-page .fullscreen-section {
        padding: 10px 4vw 40px 4vw;
    }
    .why-kafou-page .fullscreen-section .section-title {
        font-size: 16px !important;
        /*margin-bottom: 10px;*/
    }
    .why-kafou-page .fullscreen-section .welcome-title {
        font-size: 13px;
        margin-bottom: 12px;
        max-width: 100%;
    }
}
@media (min-width: 992px) {
    .why-kafou-page .fullscreen-section > .row {
        display: flex;
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .why-kafou-page .fullscreen-section > .row > .section-title,
    .why-kafou-page .fullscreen-section > .row > .welcome-title {
        flex: 1 1 0;
        min-width: 0;
        margin-bottom: 0;
    }
    .why-kafou-page .fullscreen-section > .row > .section-title {
        margin-right: 16px;
        margin-bottom: 0;
        align-self: flex-start;
    }
    .why-kafou-page .fullscreen-section > .row > .welcome-title {
        margin-left: 0;
        align-self: flex-start;
    }
}

/*------------------------------------------------------- Main Carousel ---------------------------------------*/
.carousel-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
}

.carousel-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.carousel-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.carousel-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.carousel-container {
    flex: 1;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-carousel img {
    width: 100%;
    height: 100%;
    /*border-radius: 50%;*/
    margin-bottom: 10px;
    object-fit: cover;
}

.name {
    margin-bottom: 2px;
    color: #8c52ff;
}

.occupation {
    font-style: italic;
    margin-top: 2px;
}

input[type="radio"] {
    display: none;
}

main#main-carousel {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    perspective: 600px;
    --items: 5;
    --middle: 3;
    --position: 3;
}

/*main#main-carousel-partners {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    perspective: 600px;
    --items: 5;
    --middle: 3;
    --position: 3;
}*/

.item-carousel {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    color: #000;
    position: absolute;
    width: 250px;
    height: 250px;
    transition: all 0.4s ease;
    cursor: pointer;
    --r: calc(var(--position) - var(--offset));
    --abs: max(calc(var(--r) * -1), var(--r));
    transform: rotateY(calc(-15deg * var(--r))) translateX(calc(-200px * var(--r))) translateZ(calc(-50px * var(--abs)));
    z-index: calc(10 - var(--abs));
    opacity: calc(1 - (var(--abs) * 0.2));
}

/* Navigation dots */
.carousel-nav {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #8c52ff;
    transform: scale(1.2);
}

/* Offset calculations for each item */
.item-carousel:nth-of-type(1) { --offset: 1; }
.item-carousel:nth-of-type(2) { --offset: 2; }
.item-carousel:nth-of-type(3) { --offset: 3; }
.item-carousel:nth-of-type(4) { --offset: 4; }
.item-carousel:nth-of-type(5) { --offset: 5; }

/* Position control via radio buttons */
input:nth-of-type(1):checked ~ .carousel-container main#main-carousel { --position: 1; }
input:nth-of-type(2):checked ~ .carousel-container main#main-carousel { --position: 2; }
input:nth-of-type(3):checked ~ .carousel-container main#main-carousel { --position: 3; }
input:nth-of-type(4):checked ~ .carousel-container main#main-carousel { --position: 4; }
input:nth-of-type(5):checked ~ .carousel-container main#main-carousel { --position: 5; }

/* Responsive Design */
@media (max-width: 1024px) {
    .carousel-title {
        font-size: 2.2rem;
    }

    .item-carousel {
        width: 240px;
        height: 220px;
        transform: rotateY(calc(-12deg * var(--r))) translateX(calc(-160px * var(--r))) translateZ(calc(-40px * var(--abs)));
    }

    .item-carousel img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 768px) {
    /*.row {
        flex-direction: column;
        gap: 20px;
    }*/

    .carousel-text {
        text-align: center;
        padding: 60px 0;
    }

    .carousel-title {
        font-size: 2rem;
    }

    .carousel-container {
        height: 280px;
    }

    main#main-carousel {
        height: 280px;
    }

    /*main#main-carousel-partners {
        height: 280px;
    }*/

    .item-carousel {
        width: 220px;
        height: 200px;
        transform: rotateY(calc(-8deg * var(--r))) translateX(calc(-120px * var(--r))) translateZ(calc(-30px * var(--abs)));
    }

    .item-carousel img {
        width: 100%;
        height: 100%;
    }

    .name {
        font-size: 1rem;
    }

    .occupation {
        font-size: 0.8rem;
    }

    .testimonial {
        font-size: 0.75rem;
    }
}
@media (max-width: 480px) {
    .carousel-section {
        padding: 10px;
    }

    .carousel-title {
        font-size: 1.8rem;
    }

    .carousel-container {
        height: 250px;
    }

    main#main-carousel {
        height: 250px;
        perspective: 400px;
    }

    /*main#main-carousel-partners {
        height: 250px;
        perspective: 400px;
    }*/

    .item-carousel {
        width: 180px;
        height: 180px;
        padding: 15px;
        transform: rotateY(calc(-5deg * var(--r))) translateX(calc(-80px * var(--r))) translateZ(calc(-20px * var(--abs)));
    }

    .item-carousel img {
        width: 100%;
        height: 100%;
    }

    .name {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }

    .occupation {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    .testimonial {
        font-size: 0.7rem;
        line-height: 1.3;
    }

    .carousel-nav {
        bottom: -30px;
    }

    .nav-dot {
        width: 10px;
        height: 10px;
    }
}
@media (max-width: 320px) {
    .item-carousel {
        width: 160px;
        height: 160px;
        transform: rotateY(calc(-3deg * var(--r))) translateX(calc(-60px * var(--r))) translateZ(calc(-15px * var(--abs)));
    }

    .carousel-title {
        font-size: 1.5rem;
    }
}
/* Large screen layout adjustments */
@media (min-width: 769px) {
    /*.row {
        display: flex;
        align-items: center;
        gap: 40px;
        !*height: 100%;*!
    }*/

    .carousel-text {
        flex: 0 0 35%; /* Takes exactly 1/4 of the width */
        max-width: 35%;
        padding: 40px 20px 40px 0;
    }

    .carousel-container {
        flex: 0 0 60%;
        max-width: 60%;
        height: 400px;
    }

    main#main-carousel {
        height: 400px;
        width: 100%;
        perspective: 800px;
    }

    /*main#main-carousel-partners {
        height: 400px;
        width: 100%;
        perspective: 800px;
    }*/

    .item-carousel {
        width: 300px;
        height: 270px;
        transform: rotateY(calc(-18deg * var(--r))) translateX(calc(-220px * var(--r))) translateZ(calc(-60px * var(--abs)));
    }
}

/* Extra large screens */
@media (min-width: 1200px) {
    .carousel-container {
        height: 450px;
    }

    main#main-carousel {
        height: 450px;
        perspective: 1000px;
    }

    /*main#main-carousel-partners {
        height: 450px;
        perspective: 1000px;
    }*/

    .item-carousel {
        width: 320px;
        height: 280px;
        transform: rotateY(calc(-20deg * var(--r))) translateX(calc(-250px * var(--r))) translateZ(calc(-70px * var(--abs)));
    }
}

main#main-carousel-partners {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    perspective: 600px;
    --items: 5;
    --middle: 3;
    --position: 3;
}

main#main-carousel-partners .item-carousel {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    color: #000;
    position: absolute;
    width: 280px;
    height: 250px;
    transition: all 0.4s ease;
    cursor: pointer;
    --r: calc(var(--position) - var(--offset));
    --abs: max(calc(var(--r) * -1), var(--r));
    transform: rotateY(calc(-15deg * var(--r))) translateX(calc(-200px * var(--r))) translateZ(calc(-50px * var(--abs)));
    z-index: calc(10 - var(--abs));
    opacity: calc(1 - (var(--abs) * 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
}

main#main-carousel-partners .item-carousel img {
    width: auto;
    height: auto;
    max-width: 200px;
    max-height: 150px;
    object-fit: contain;
    border-radius: 0;
}

/* Responsive adjustments for partners carousel */
@media (max-width: 1024px) {
    main#main-carousel-partners {
        height: 280px;
    }

    main#main-carousel-partners .item-carousel {
        width: 240px;
        height: 220px;
        transform: rotateY(calc(-12deg * var(--r))) translateX(calc(-160px * var(--r))) translateZ(calc(-40px * var(--abs)));
    }

    main#main-carousel-partners .item-carousel img {
        max-width: 180px;
        max-height: 130px;
    }
}
@media (max-width: 768px) {
    main#main-carousel-partners {
        height: 280px;
    }

    main#main-carousel-partners .item-carousel {
        width: 220px;
        height: 200px;
        transform: rotateY(calc(-8deg * var(--r))) translateX(calc(-120px * var(--r))) translateZ(calc(-30px * var(--abs)));
    }

    main#main-carousel-partners .item-carousel img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 480px) {
    main#main-carousel-partners {
        height: 250px;
        perspective: 400px;
    }

    main#main-carousel-partners .item-carousel {
        width: 180px;
        height: 180px;
        padding: 15px;
        transform: rotateY(calc(-5deg * var(--r))) translateX(calc(-80px * var(--r))) translateZ(calc(-20px * var(--abs)));
    }

    main#main-carousel-partners .item-carousel img {
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 320px) {
    main#main-carousel-partners .item-carousel {
        width: 160px;
        height: 160px;
        transform: rotateY(calc(-3deg * var(--r))) translateX(calc(-60px * var(--r))) translateZ(calc(-15px * var(--abs)));
    }
}

/* main-carousel-vertically */
main#main-carousel-vertically {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform-style: preserve-3d;
    perspective: 800px;
    --items: 5;
    --middle: 3;
    --position: 3;
}

main#main-carousel-vertically .item-carousel {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    color: #000;
    position: absolute;
    width: 280px;
    height: 250px;
    transition: all 0.4s ease;
    cursor: pointer;
    --r: calc(var(--position) - var(--offset));
    --abs: max(calc(var(--r) * -1), var(--r));
    transform: rotateX(calc(20deg * var(--r))) translateY(calc(-150px * var(--r))) translateZ(calc(-50px * var(--abs)));
    z-index: calc(10 - var(--abs));
    opacity: calc(1 - (var(--abs) * 0.2));
}

/* Responsive adjustments for vertical carousel */
@media (min-width: 769px) {
    main#main-carousel-vertically .carousel-container {
        height: 500px; /* Increase height for better vertical display */
    }

    main#main-carousel-vertically {
        height: 500px;
        perspective: 1000px;
    }

    main#main-carousel-vertically .item-carousel {
        transform: rotateX(calc(20deg * var(--r))) translateY(calc(-180px * var(--r))) translateZ(calc(-60px * var(--abs)));
    }
}
@media (min-width: 1200px) {
    main#main-carousel-vertically .carousel-container {
        height: 550px;
    }

    main#main-carousel-vertically {
        height: 550px;
        perspective: 1200px;
    }

    main#main-carousel-vertically .item-carousel {
        transform: rotateX(calc(18deg * var(--r))) translateY(calc(-200px * var(--r))) translateZ(calc(-70px * var(--abs)));
    }
}
@media (max-width: 1024px) {
    main#main-carousel-vertically .carousel-container {
        height: 450px;
    }

    main#main-carousel-vertically {
        height: 450px;
    }

    main#main-carousel-vertically .item-carousel {
        width: 240px;
        height: 220px;
        transform: rotateX(calc(16deg * var(--r))) translateY(calc(-130px * var(--r))) translateZ(calc(-40px * var(--abs)));
    }
}
@media (max-width: 768px) {
    main#main-carousel-vertically .carousel-container {
        height: 400px;
    }

    main#main-carousel-vertically {
        height: 400px;
    }

    main#main-carousel-vertically .item-carousel {
        width: 220px;
        height: 200px;
        transform: rotateX(calc(14deg * var(--r))) translateY(calc(-100px * var(--r))) translateZ(calc(-30px * var(--abs)));
    }
}
@media (max-width: 480px) {
    main#main-carousel-vertically .carousel-container {
        height: 350px;
    }

    main#main-carousel-vertically {
        height: 350px;
        perspective: 600px;
    }

    main#main-carousel-vertically .item-carousel {
        width: 180px;
        height: 180px;
        padding: 15px;
        transform: rotateX(calc(12deg * var(--r))) translateY(calc(-80px * var(--r))) translateZ(calc(-20px * var(--abs)));
    }
}

@media (max-width: 320px) {
    main#main-carousel-vertically .item-carousel {
        width: 160px;
        height: 160px;
        transform: rotateY(calc(8deg * var(--r))) translateX(calc(-60px * var(--r))) translateZ(calc(-15px * var(--abs)));
    }
}
/*-----------------------------------Section Show Images-----------------------------------------------*/
.single-carousel {
    width: 300px;
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-carousel img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease-in-out;
}
/*-----------------------------------banner horizontally-----------------------------------------------*/
.showcase-section .new-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    perspective: 1500px;
}

.new-banner {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.new-banner .new-slider {
    position: absolute;
    width: 180px;
    height: 140px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRunHorizontally 20s linear infinite;
}

/* Auto Rotation Animation */
@keyframes autoRunHorizontally {
    from {
        transform: perspective(1000px) rotateY(360deg);
    }
    to {
        transform: perspective(1000px) rotateY(0deg);
    }
}

/* Each Item Positioned in 3D Circle */
.new-banner .new-slider .new-item {
    position: absolute;
    width: 110px;
    height: 100px;
    transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
    translateZ(230px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-banner .new-slider .new-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    background-color: white;
    opacity: 0.9;
    padding: 5px;
}

@media (min-width: 992px) {
    .showcase-section .new-banner {
        margin: -250px;
    }

    .showcase-content .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .showcase-text, .new-banner {
        height: 100%;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media (max-width: 991px) {
    .new-banner {
        min-height: 300px;
        perspective: 1000px;
    }

    .new-banner .new-slider {
        width: 110px;
        height: 110px;
    }

    .new-banner .new-slider .new-item {
        width: 110px;
        height: 90px;
        transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(170px);
    }
}
@media (max-width: 767px) {
    .showcase-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .new-banner {
        min-height: 250px;
        perspective: 800px;
    }

    .new-banner .new-slider {
        width: 100px;
        height: 70px;
    }

    .new-banner .new-slider .new-item {
        width: 77px;
        height: 77px;
        transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(160px);
    }
}
@media (max-width: 480px) {
    .new-banner {
        min-height: 220px;
        perspective: 600px;
    }

    .new-banner .new-slider {
        width: 100px;
        height: 70px;
    }

    .new-banner .new-slider .new-item {
        width: 77px;
        height: 77px;
        transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(160px);
    }
}

.showcase-section .new-banner-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    perspective: 1500px;
}

.new-banner-2 {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1500px;
}

.new-banner-2 .new-slider-2 {
    position: absolute;
    width: 110px;
    height: 170px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRunTwo 20s linear infinite;
    /*z-index: 2;*/
}
@keyframes autoRunTwo {
    from {
        transform: perspective(1000px) rotateX(-20deg) rotateY(0deg);
    }
    to {
        transform: perspective(1000px) rotateX(-20deg) rotateY(360deg);
    }
}

.new-banner-2 .new-slider-2 .new-item-2 {
    position: absolute;
    transform: rotateY(
            calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)
    )
    translateZ(230px);
    width: 110px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-banner-2 .new-slider-2 .new-item-2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    background-color: white;
    opacity: 0.9;
    padding: 5px;
}

@media (min-width: 992px) {
    .showcase-section .new-banner-2 {
        margin: -250px;
    }

    .showcase-content .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .showcase-text, .new-banner-2 {
        height: 100%;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media (min-width: 992px) {
    .showcase-section .new-banner-2 {
        margin: -250px;
    }

    .showcase-content .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .showcase-text, .new-banner-2 {
        height: 100%;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media (max-width: 991px) {
    .new-banner-2 {
        min-height: 300px;
        perspective: 1000px;
    }

    .new-banner-2 .new-slider-2 {
        width: 110px;
        height: 110px;
    }

    .new-banner-2 .new-slider-2 .new-item-2 {
        width: 110px;
        height: 90px;
        transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(170px);
    }
}
@media (max-width: 767px) {
    .showcase-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .new-banner-2 {
        min-height: 250px;
        perspective: 800px;
    }

    .new-banner-2 .new-slider-2 {
        width: 100px;
        height: 70px;
    }

    .new-banner-2 .new-slider-2 .new-item-2 {
        width: 77px;
        height: 77px;
        transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(160px);
    }
}
@media (max-width: 480px) {
    .new-banner-2 {
        min-height: 220px;
        perspective: 600px;
    }

    .new-banner-2 .new-slider-2 {
        width: 100px;
        height: 70px;
    }

    .new-banner-2 .new-slider-2 .new-item-2 {
        width: 77px;
        height: 77px;
        transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(160px);
    }
}

.showcase-section .new-banner-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    perspective: 1000px;
}

.new-banner-3 {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(100px, 10px);
}

.new-banner-3 .new-slider-3 {
    position: absolute;
    width: 110px;
    height: 100px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: threeAutoRun 20s linear infinite;
    /*z-index: 2;*/
}
@keyframes threeAutoRun {
    from {
        transform: perspective(1000px) rotateX(15deg) rotateY(0deg);
    }
    to {
        transform: perspective(1000px) rotateX(15deg) rotateY(360deg);
    }
}

.new-banner-3 .new-slider-3 .new-item-3 {
    position: absolute;
    transform: rotateY(
            calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg)
    )
    translateZ(230px);
    width: 110px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.new-banner-3 .new-slider-3 .new-item-3 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    background-color: white;
    opacity: 0.9;
    padding: 5px;
}

@media (min-width: 992px) {
    .showcase-section .new-banner-3 {
        margin: -250px;
    }

    .showcase-content .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .showcase-text, .new-banner-3 {
        height: 100%;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media (min-width: 992px) {
    .showcase-section .new-banner-3 {
        margin: -250px;
    }

    .showcase-content .row {
        display: flex;
        flex-wrap: nowrap;
    }

    .showcase-text, .new-banner-3 {
        height: 100%;
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}
@media (max-width: 991px) {
    .new-banner-3 {
        min-height: 300px;
        perspective: 1000px;
    }

    .new-banner-3 .new-slider-3 {
        width: 110px;
        height: 110px;
    }

    .new-banner-3 .new-slider-3 .new-item-3 {
        width: 110px;
        height: 90px;
        transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(170px);
    }
}
@media (max-width: 767px) {
    .showcase-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .new-banner-3 {
        min-height: 250px;
        perspective: 800px;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translate(10px, 10px);
    }

    .new-banner-3 .new-slider-3 {
        width: 100px;
        height: 70px;
    }

    .new-banner-3 .new-slider-3 .new-item-3 {
        width: 77px;
        height: 77px;
        transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(160px);
    }
}
@media (max-width: 480px) {
    .new-banner-3 {
        min-height: 220px;
        perspective: 600px;
    }

    .new-banner-3 .new-slider-3 {
        width: 100px;
        height: 70px;
    }

    .new-banner-3 .new-slider-3 .new-item-3 {
        width: 77px;
        height: 77px;
        transform: rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(160px);
    }
}

.show-images-section {
    height: 100vh;
    overflow: hidden;
}

.show-images-section .container {
    height: 100%;
    max-width: 100%;
    padding: 0;
}

.show-images-section .row {
    height: 100%;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
}

.carousel-text {
    width: 40%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100vh;
}

.carousel-text .carousel-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.carousel-container {
    width: 60%;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.single-carousel {
    width: 450px;
    height: 335px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-carousel img {
    transform: scale(0.90);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .show-images-section .row {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .carousel-container {
        width: 100%;
        flex: 1 1 auto;
        padding: 20px;
        order: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel-text {
        width: 100%;
        padding: 20px 20px 90px 20px;
        justify-content: flex-start;
        /*align-items: center;
        text-align: center;*/
        order: 2;
        flex: 0 0 auto;
        height: auto;
    }

    .carousel-text .carousel-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .single-carousel {
        height: 55%;
    }
}

/* Centered division image for split-section */
.img-division {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 380px;
    max-width: 100%;
    height: auto;
    margin-bottom: 50px;
    border-radius: 15px;
}

@media (max-width: 768px) {
    .img-division {
        width: 90% !important;
    }
}

.division-section {
    display: flex;
    padding: 0;
    height: 100vh;
    overflow: hidden;
}

.division-section .text-content {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: #f5f5f5;
    color: #000;
}

.division-section .media-content {
    width: 50%;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/*.division-section {
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}*/

.division-section .text-content .section-title {
    font-size: 30px;
    margin-top: 20px;
}

.division-section video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .division-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    .division-section .text-content {
        width: 100%;
        padding: 24px 10px 16px 20px;
        background: #f5f5f5;
        z-index: 2;
        position: relative;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }

    .division-section .careers-text-content {
        padding: 70px 10px 16px 20px;
    }

    .img-division {
        width: 60vw !important;
        max-width: 220px;
        margin-bottom: 0;
        margin: 50px auto 0 auto;
        display: block;
    }
    .division-section .media-content {
        width: 100%;
        position: relative;
        z-index: 1;
    }
    .division-section .section-title {
        font-size: 1.3rem;
        /*margin-bottom: 10px;*/
        margin-top: 0;
    }
    .division-section .cta-button {
        margin-bottom: 0;
    }
}

.stats-section {
    position: relative;
    min-height: 340px;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    z-index: 1;
}
.stats-bg-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.stats-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 188, 212, 0.85);
    z-index: 2;
}
.stats-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: grid;
    align-items: center;
    /*justify-content: center;*/
}
.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.stats-label {
    font-size: 1.1rem;
    font-weight: 400;
    color: #eaf6fa;
    letter-spacing: 1px;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .stats-section {
        height: auto;
        min-height: 260px;
        padding: 40px 0;
    }
    .stats-number {
        font-size: 2rem;
    }
    .stats-label {
        font-size: 0.95rem;
    }
}

.stats-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
}
.stats-number {
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: 1px;
}
.stats-label {
    font-size: clamp(1.1rem, 2.2vw, 2.2rem);
    font-weight: 600;
    color: #eaf6fa;
    letter-spacing: 1px;
    line-height: 1.2;
}
@media (max-width: 991px) {
    .stats-number {
        font-size: clamp(2rem, 10vw, 4rem);
    }
    .stats-label {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }
}
@media (max-width: 600px) {
    .stats-col {
        margin-bottom: 2rem;
    }
}

.stats-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
}

.stats-number {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
    line-height: 1.1;
    letter-spacing: 1px;
}

.stats-label {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: #eaf6fa;
    letter-spacing: 1px;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .stats-number {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    .stats-label {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    .stats-content .row {
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    .stats-col {
        margin-bottom: 2rem;
    }
    .stats-content .row {
        gap: 0.5rem;
    }
}

.stats-content, .stats-section {
    height: 100%;
    min-height: 340px;
}
.stats-col {
    min-height: 220px;
    height: 100%;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.stats-number {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.7rem;
    line-height: 1.1;
    letter-spacing: 1px;
}
.stats-label {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: #eaf6fa;
    letter-spacing: 1px;
    line-height: 1.2;
}
@media (max-width: 991px) {
    .stats-number {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    .stats-label {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
    .stats-col {
        min-height: 140px;
    }
}
@media (max-width: 600px) {
    .stats-col {
        margin-bottom: 2rem;
        min-height: 100px;
    }
}

.careers-title {
    font-size: 48px;
    font-weight: 700;
}

.careers-links {
    font-size: 30px;
    color: #757272;
}

/*.highlight-underline {
    position: relative;
    display: inline-block;
}
.highlight-underline::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0.1em;
    height: 0.4em;
    background: rgba(255,255,255,0.18);
    z-index: -1;
    border-radius: 0.2em;
    width: fit-content;
}*/

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo-wrapper img {
    width: 180px;
}

.careers-header {
    font-size: 60px;
    font-weight: 700;
    transform: scale3d(1.5, 1.5, 1.5);
}

.careers-buttons {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .main-section-green {
        background-color: #1b8b8b !important; /* your green */
    }

    .main-section .headline-content {
        margin-top: 2rem; /* push text further down */
    }

    .logo-mobile-center {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .logo-mobile-center img {
        max-width: 160px !important;
    }

    .mobile-bottom-content {
        padding: 10px 15px 80px 20px;
    }

    .mobile-bottom-content .cta-button {
        border: 2px solid #d6f0f1 !important;
        color: white !important;
    }

    .careers-header {
        font-size: 45px;
    }

    .careers-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        padding: 10px 10px 90px 10px !important;
    }

    .logo-wrapper img {
        width: 120px;
    }
}

/* ======= Mobile Scrollbar Visibility Fix (Safe for Scrollify) ======= */
@media (max-width: 768px) {
    body {
        /*overflow-y: scroll;*/
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin; /* For Firefox */
    }

    /* WebKit browsers (Chrome, Safari) */
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background-color: rgba(255, 255, 255, 0.05); /* Slightly visible track */
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(23, 137, 140, 0.5); /* Teal thumb */
        border-radius: 4px;
    }
}

/* Language Switcher Styles */
/*.language-switcher {
    margin-right: 15px;
}

.btn-language {
    background: transparent;
    border: 1px solid #1b8b8b;
    color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-language:hover {
    background: #1b8b8b;
    border-color: #1b8b8b;
}*/

.language-flag {
    margin-right: 5px;
}

.dropdown-item.active {
    background-color: #1b8b8b;
    color: white;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .language-flag {
    margin-right: 0;
    margin-left: 5px;
}

[dir="rtl"] .dropdown-item {
    text-align: right;
}

/* RTL Layout for Arabic */
html[dir="rtl"] body {
    text-align: right;
    direction: rtl;
}

html[dir="rtl"] .header-divider {
    margin-left: 15px;
    margin-right: 0;
}

html[dir="rtl"] .language-switcher {
    margin-right: 0;
    /*margin-left: 15px;*/
}

/* Mobile navigation styles */
/*@media (max-width: 768px) {
    .btn-language {
        padding: 4px 5px;
        font-size: 11px;
    }

    .dropdown-item {
        padding: 4px 10px;
    }

    .dropdown-menu {
        z-index: 999999999999999;
        min-width: 7rem;
        padding: 4px;
        font-size: 13px;
    }
}*/

.btn-language {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    outline: none;
}

.btn-language:focus {
    outline: none !important;
    border: none !important;
}

/*.btn-language:hover {
    border-color: #1b8b8b;
}*/

.language-icon {
    filter: grayscale(100%) brightness(1);
    font-size: 1.3em;
}

.language-text {
    font-weight: 500;
}
