/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Mulish", sans-serif;
}

body {
    background-color: #fff;
    line-height: 1.6;
}

/* Navigation Container */
.nav-container {
    padding: 0px 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    max-width: 100vw;
    /* Ensure it doesn't exceed viewport width */
}

.nav-container.fixed,
.nav-container.mobile-menu-open,
.nav-container.search-page-nav {
    background-color: #2B3E8C;
}

.nav-container.fixed .nav-item {
    color: white !important;
}

.nav-container.search-page-nav .nav-item {
    color: white !important;
}

.nav-container .mobile-menu-toggle,
.nav-container.search-page-nav .mobile-menu-toggle {
    background-color: #27387F !important;
}

.nav-container .logo-section:not(.no-fix) {
    display: none;
}

.nav-container .logo-section.no-fix {
    display: block;
}

.nav-container.fixed .logo-section:not(.no-fix),
.nav-container.search-page-nav .logo-section:not(.no-fix) {
    display: block;
}


/* Navigation Content */
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.logo {
    padding: 12px 0px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

.nav-item {
    padding: 16px 0;
    color: #2B3E8C;
    text-decoration: none !important;
    outline: none !important;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}

.nav-item:hover {
    text-decoration: underline;
}

/* CTA Button */
.cta-button {
    background: white;
    color: #2b3e8c;
    border: none;
    border-radius: 9999px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    min-width: 124px;
    height: 48px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: translateY(0);
}

.star-icon {
    width: 24px;
    height: 24px;
    fill: #2b3e8c;
    transition: transform 0.3s ease;
}

.cta-button:hover .star-icon {
    transform: rotate(15deg);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.nav-container.fixed .mobile-nav-top .logo:not(.no-fix),
.nav-container.search-page-nav .mobile-nav-top .logo.no-fix {
    display: none;
}

.nav-container.fixed .mobile-nav-top .logo:not(.no-fix),
.nav-container.search-page-nav .mobile-nav-top .logo.no-fix {
    display: block;
}

.nav-container.mobile-menu-open .mobile-nav-top .logo:not(.no-fix),
.nav-container.search-page-nav .mobile-nav-top .logo.no-fix {
    display: none;
}

.nav-container.mobile-menu-open .mobile-nav-top .logo:not(.no-fix),
.nav-container.search-page-nav .mobile-nav-top .logo.no-fix {
    display: block;
}


.nav-container .mobile-nav-top .logo:not(.no-fix),
.nav-container.search-page-nav .mobile-nav-top .logo {
    display: none;
}





.mobile-nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle .hamburger-icon,
.mobile-menu-toggle .close-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .close-icon {
    display: none;
}

.mobile-menu-toggle.active .hamburger-icon {
    display: none;
}

.mobile-menu-toggle.active .close-icon {
    display: block !important;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    position: fixed;
    top: 80px;
    left: -300px;
    width: 300px;
    height: calc(100vh - 80px);
    background-color: #2B3E8C;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: flex;
    left: 0;
}



.mobile-nav-item {
    padding: 16px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.mobile-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 16px;
        width: 100%;
        max-width: 100vw;
    }

    .nav-content {
        gap: 20px;
        width: 100%;
    }

    .nav-menu {
        gap: 8px;
    }

    .nav-item {
        padding: 12px 16px;
        font-size: 14px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 100px;
        height: 40px;
    }
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }



    .nav-container {
        padding: 16px;
        width: 100%;
        max-width: 100vw;
    }

    .nav-content {
        display: none;
    }

    .mobile-nav {
        display: flex;
        margin: 0;
        width: 100%;
    }

    .nav-menu {
        display: none;
    }

    .cta-button {
        display: none;
    }

    .logo {
        padding: 0px 12px;
    }

    .mobile-cta-button {
        background: white;
        color: #2b3e8c;
        border: none;
        border-radius: 9999px;
        padding: 8px 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        min-width: 100px;
        height: 36px;
    }

    .mobile-cta-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .mobile-cta-button .star-icon {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
        width: 100%;
        max-width: 100vw;
        margin: 0;
    }

    .logo {
        font-size: 12px;
    }

    .mobile-cta-button {
        padding: 6px 12px;
        font-size: 12px;
        min-width: 80px;
        height: 32px;
        gap: 6px;
    }

    .mobile-cta-button .star-icon {
        width: 16px;
        height: 16px;
    }

    .mobile-nav-item {
        padding: 12px;
        font-size: 16px;
    }
}

/* Animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.active {
    animation: slideInFromLeft 0.3s ease forwards;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 35;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Updated slide animation */
@keyframes slideInFromLeft {
    from {
        left: -300px;
    }

    to {
        left: 0;
    }
}

/* Focus styles for accessibility */
.nav-item:focus,
.cta-button:focus,
.mobile-nav-item:focus,
.mobile-cta-button:focus {
    outline: 2px solid #9747ff;
    outline-offset: 2px;
}

/* Loading animation for logo */
.logo.loading {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

/* Home Slider */

.home-slider-item {
    padding: 16px 80px 80px 80px;
    aspect-ratio: 1440 / 512;
    background-color: gray;
    background-size: cover;
}

.home-slider-item-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    height: 100%;
}

.home-slider-item-content-title {
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 120% */
    color: #fff;
}

.home-slider-item-content-description {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.8px;
    color: #fff;
    max-width: 640px;
}

.home-slider .owl-dots {
    position: absolute;
    bottom: 180px;
    left: 80px;
    z-index: 1;
    justify-content: flex-start;
}

.owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff !important;
    z-index: 1;
    transition: all 0.3s ease;
}

.owl-dot.active {
    width: 20px;
    height: 8px;
    border-radius: 9999px;
    background-color: #2b3e8c !important;
    z-index: 1;
}

.home-slider-downloads {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.home-slider-container {
    position: relative;
    display: flex;
    background: linear-gradient(180deg, #EAECF4 0%, #BDC3DB 100%);
    padding: 16px 80px 40px 80px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    padding-top: 120px;
    overflow: hidden;

}
.home-slider-container::before {
    content: "";
    position: absolute;
    left: -150px;
    top: -150px;
    width: 638px;
    height: 666.628px;
    background-image: url("../images/slider-background-1.svg");
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.home-slider-container::after {
    content: "";
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 658.464px;
    height: 604px;
    transform: rotate(-90deg);
    background-image: url("../images/slider-background-2.svg");
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.home-slider-content {
    z-index: 3;
    width: 100%;
    max-width: 772px;
    font-family: Mulish;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    color: #2B3E8C;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.home-slider-image {
    z-index: 3;
}

.home-slider-content span {
    font-weight: 700;
}

.home-slider-downloads-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

@media screen and (max-width: 991px) {
    .home-slider-container {
        padding: 16px;
        padding-top: 96px;
    }

    .home-slider-container::before {
        content: "";
        position: absolute;
        left: -150px;
        top: -200px;
        width: 454px;
        height: 474px;
        background-image: url("../images/slider-background-1.svg");
        background-size: cover;
        background-position: center;
        opacity: 0.1;
    }

    .home-slider-container::after {
        content: "";
        position: absolute;
        bottom: -150px;
        right: -150px;
        width: 407px;
        height: 373px;
        transform: rotate(-90deg);
        background-image: url("../images/slider-background-2.svg");
        background-size: cover;
        background-position: center;
        opacity: 0.1;
    }

    .home-slider-content {
        font-size: 20px;
        line-height: 28px;
    }

    .nav-container {
        padding: 16px;
        width: 100%;
        max-width: 100vw;
    }

    .home-slider-item {
        aspect-ratio: 375 / 512;
        background-size: cover;
        background-position: center;
        padding: 16px 16px 80px 16px;
    }

    .home-slider-downloads {
        bottom: 16px;
        left: 16px;
        right: 16px;
        width: calc(100% - 32px);
        justify-content: space-between;
    }

    .home-slider .owl-dots {
        bottom: 96px;
        left: 16px;
        width: calc(100% - 32px);
    }

    .home-slider-downloads-item {
        width: max-content;
    }

    .home-slider-item-content-title {
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px;
        /* 120% */
    }

    .home-slider-item-content-description {
        font-size: 32px;
        font-style: normal;
        font-weight: 700;
        line-height: 40px;
        /* 125% */
    }
}

/* Home Video App */
.home-video-app {
    display: flex;
    padding: 64px 80px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;

}

.home-video-app-content {
    position: relative;
}

.home-video-app-content video {
    border-radius: 12px;
    overflow: hidden;

}

.home-video-app-content .forward-button {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    width: 48px;
    height: 48px;
    padding: 12px;
    z-index: 1;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2B3E8C;
    border-radius: 8px;
}

.home-video-app-content .forward-button.psy {
    background-color: #F87C56;
}

.home-video-app-content .video-title {
    position: absolute;
    top: 1rem;
    left: 0;
    z-index: 1;
    background: linear-gradient(90deg, #2B3E8C 0%, rgba(43, 62, 140, 0.00) 99.72%);
    font-family: Mulish;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    color: white;
    min-width: 280px;
    padding: 8px 16px;
    user-select: none;
    /* 125% */
}

.home-video-app-content .video-title.psy {
    background: linear-gradient(90deg, #E2714E 0%, rgba(226, 113, 78, 0.00) 99.72%);
}

.home-video-app-content .play-pause-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #fff;
    border-radius: 50%;
    z-index: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

.home-video-app-content .play-pause-button {
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-video-app-content .play-pause-button:hover {
    transform: scale(1.1);
}

.home-video-app-content .play-pause-button .elra-icon-play {
    display: block;
}

.home-video-app-content .play-pause-button .elra-icon-pause {
    display: none;
}

/* Video playing state */
.home-video-app-content.playing .play-pause-button .elra-icon-play {
    display: none;
}

.home-video-app-content.playing .play-pause-button .elra-icon-pause {
    display: block;
}

@media screen and (max-width: 991px) {
    .home-video-app {
        flex-direction: column;
        padding: 16px;
    }

    .home-video-app-content .video-title {
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        /* 120% */
        min-width: 170px;
    }
}

/* About Us */
.home-about-us {
    padding: 64px 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    gap: 40px;
}

.about-us-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.about-us-left {
    width: 100%;
}

.about-us-right {
    width: 100%;
}

.about-us-left-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-us-right>img {
    border-radius: 12px;
    max-width: 100%;
    width: 100%;
}

.about-us-left-content-title {
    font-family: Mulish;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.8px;
    color: #212529;
}

.about-us-left-content-description {
    color: #212529;
    font-family: Mulish;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 155.556% */
}

.mission-vision-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mv-card {
    background-color: #2B3E8C;
    color: white;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.mv-card.left::before {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 521px;
    height: 545px;
    background-image: url("../images/statistics-background-1.svg");
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.mv-card.right::before {
    content: "";
    position: absolute;
    bottom: -60%;
    left: -20%;
    width: 521px;
    height: 545px;
    transform: rotate(-90deg);
    background-image: url("../images/statistics-background-2.svg");
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.mv-card-title {
    font-family: Mulish;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 133.333% */
}

.mv-card-content {
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

@media screen and (max-width: 991px) {
    .home-about-us {
        padding: 64px 16px !important;
    }

    .about-us-container {
        flex-direction: column;
        max-width: 100%;
    }

    .mission-vision-container {
        flex-direction: column;
    }
}

/* Home Services */

.home-services {
    display: flex;
    padding: 64px 80px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background-color: #F8F9FA;
}

.hsc-tab-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hsc-tab-menu-item {
    display: flex;
    padding: 16px;
    align-items: center;
    gap: 16px;
    border-radius: 12px;
    border: 1px solid #E9ECEF;
    background: #fff;
    cursor: pointer;
    user-select: none;
}

.hsc-tab-menu-item.doctor.active {
    border: 1px solid #2B3E8C;
    background: #EAECF4;
    color: #27387F;
}

.hsc-tab-menu-item.psychologist.active {
    border: 1px solid #FDD6CB;
    background: #FEF2EE;
    color: #E2714E;
}

/* Hover states */
.hsc-tab-menu-item.doctor:hover:not(.active) {
    border: 1px solid #2B3E8C;
    background: #EAECF4;
    color: #27387F;
}

.hsc-tab-menu-item.psychologist:hover:not(.active) {
    border: 1px solid #FDD6CB;
    background: #FEF2EE;
    color: #E2714E;
}

.hsc-tab-menu-item>.icon-box {
    padding: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2B3E8C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hsc-tab-menu-item.psychologist>.icon-box {
    background: #F87C56;

}

.hsc-tab-menu-item>.text-box {
    font-family: Mulish;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
}


.hsc-title {
    color: #000;
    font-family: Mulish;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.8px;
}

.hsc-tab-content {
    position: relative;
    height: 500px;
    /* Sabit yükseklik */
    width: 100%;
    overflow: hidden;
    /* Taşan içeriği gizle */
}

.hsc-item {
    display: flex;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hsc-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 3;
}

.hsc-item.hover-active {
    opacity: 0.8;
    visibility: visible;
    z-index: 2;
    transition: opacity 0.2s ease-in-out;
}

.hsc-item.temp-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}

.hsc-item>.hsc-left>img {
    border-radius: 12px;
}

.hsc-item>.hsc-left>.hsc-left-image-horizontal {
    display: none;
}

.hsc-item>.hsc-left>.hsc-left-image-vertical {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-height: 565px;
}

.hsc-right {
    flex-shrink: 0;
}

.hsc-item-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hsc-il-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.hsc-il-item-content {
    color: #212529;
    font-family: Mulish;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    max-width: 480px;
    /* 155.556% */
}

.hsc-il-item-content span {
    color: #2B3E8C;
    text-decoration: underline;
    font-family: Mulish;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 155.556% */
}

.hsc-item.psychologist .hsc-il-item-content span {
    color: #F87C56;
}

@media screen and (max-width: 991px) {
    .hsc-title {
        font-family: Mulish;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        /* 133.333% */
    }

    .hsc-tab-menu {
        width: 100%;
    }

    .hsc-tab-menu-item {
        padding: 8px;
        gap: 8px;
        width: 100%;
        flex-direction: column;
    }

    .hsc-tab-menu-item>.text-box {
        font-size: 14px;
        line-height: 20px;
    }

    .hsc-item>.hsc-left>.hsc-left-image-horizontal {
        aspect-ratio: 159/89;
        display: block;
        width: 100%;
    }

    .hsc-il-item-content {
        text-align: left;
    }

}

/* Statistics */

.home-statistics {
    background-color: #2b3e8c;
    padding: 40px 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.statistics-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    flex: 1 0 0;
    border-right: 2px solid rgba(234, 236, 244, 0.2);
}

.statistics-item {
    padding: 0px 80px;
    display: flex;
    align-items: center;
    gap: 12px;
    align-self: stretch;
}

.statistics-item-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.statistics-item-content-title {
    color: #fff;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 125% */
}

.statistics-item-content-sub {
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 150% */
}

.statistics-line {
    display: none;
}

.home-statistics::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-55%) translateX(-50%);
    width: 521px;
    height: 545px;
    background-image: url("../images/statistics-background-1.svg");
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

.home-statistics::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-55%) translateX(50%);
    right: 10%;
    width: 560px;
    height: 512px;
    background-image: url("../images/statistics-background-2.svg");
    background-size: cover;
    background-position: center;
    opacity: 0.05;
}

@media screen and (max-width: 991px) {
    .home-services {
        padding: 64px 16px !important;
    }

    .hsc-tab-content {
        height: 600px;
        /* Mobilde biraz daha yüksek */
    }

    .hsc-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hsc-item>.hsc-left>.hsc-left-image-vertical {
        display: none;
    }

    .home-statistics {
        overflow: hidden;
        padding: 40px 16px !important;
        flex-direction: column;
        gap: 16px;
    }

    .home-about-us {
        overflow: hidden;
        padding: 40px 16px !important;
        flex-direction: column;
        gap: 16px;
    }

    .statistics-content {
        width: 100%;
        border-right: none !important;
        padding-bottom: 16px;
        border-bottom: 2px solid rgba(234, 236, 244, 0.2);
    }

    .statistics-item {
        padding: 0px !important;
        width: 100%;
    }

    .home-statistics::before {
        top: 0;
        left: 50%;
        transform: translateY(-30%) translateX(-60%);
        width: 350px;
        height: 352px;
    }

    .home-statistics::after {
        bottom: 0;
    }
}

.statistics-content:last-child {
    border-right: none !important;
    border-bottom: none !important;
    padding-bottom: 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 64px 80px 32px 80px;
}

.section-title {
    color: #212529;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
    /* 125% */
}

.section-button {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #212529;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    background: #fff;
    padding: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 142.857% */
}

.home-blog {
    display: flex;
    flex-direction: column;
}

.home-blog-content {
    padding: 0px 80px 64px 80px;
    display: flex;
    gap: 24px;
}

.featured-blog {
    aspect-ratio: 1 / 1;
    height: 350px;
    background-size: 100% 100%;
    position: relative;
    padding: 32px 16px 16px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-direction: column;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.featured-blog .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(24, 34, 77, 0.05) 0%, #18224d 100%);
}

.blog-badge {
    border-radius: 6px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #bdc3db;
    z-index: 1;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    color: #2b3e8c;
    width: max-content;
}

.blog-card-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
    color: white;
    z-index: 1;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-card-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    color: white;
    z-index: 1;
}

.blog-card-list {
    display: grid;
    gap: 24px;
    overflow: hidden;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 100%;
}

.blog-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
    width: 100%;
}

.blog-card>.blog-card-content {
    gap: 8px;
}

.blog-card>.blog-card-content .blog-card-title {
    color: #212529;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
}

.blog-card>.blog-card-content .blog-card-description {
    color: #6c757d;

    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 133.333% */
}

.blog-card-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px;
    color: white;
    border-radius: 6px;
    background-color: #2b3e8c;
    width: max-content;
    text-decoration: none;
}

.blog-card-button i {
    background-color: white !important;
}

@media screen and (max-width: 991px) {
    .home-blog-content {
        flex-direction: column;
    }

    .home-blog-content {
        padding: 0 16px 64px 16px;
    }

    .section-header {
        padding: 64px 16px 32px 16px;
    }
}

.home-elra-use .section-header {
    background-color: #f8f9fa;
}

.home-elra-use-content {
    background-color: #f8f9fa;
    padding: 0px 80px 64px 80px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.home-elra-use-content-statistics {
    display: flex;
    padding: 24px 32px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 4;
    border-radius: 12px;
    background: var(--Gradient-1, linear-gradient(91deg, #5565A3 0%, #2B3E8C 100%));
}

.home-elra-use-content-statistics .star-list {
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-elra-use-content-statistics .star-list-percentage {
    color: #fff;
    /* Display sm/Bold */
    font-family: Mulish;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}

.home-elra-use-content-statistics .star-list-text {
    color: #fff;
    /* Text md/Bold */
    font-family: Mulish;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
}

.comment-card {
    padding: 12px;
    border-radius: 12px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comment-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.comment-user-flname {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #dee2e6;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment-user {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comment-user-name {
    color: #212529;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    /* 142.857% */
}

.comment-user-rate {
    color: #212529;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: Mulish;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
}

.comment-card-content {
    color: #212529;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 133.333% */
}

@media screen and (max-width: 991px) {
    .home-elra-use-content {
        padding: 0px 16px 64px 16px;
    }
}

footer {
    padding: 80px;
    background-color: #121a3b;
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex-shrink: 0;
}

.footer-left-logo img {
    width: 145px;
}

.footer-left-content {
    max-width: 411px;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

.fl-contact {
    display: flex;
    gap: 9px;
    flex-direction: column;
}

.fl-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fl-contact-item-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 150% */
    color: #fff;
}

.fl-line {
    height: 1px;
    width: 100%;
    background-color: #fff;
    opacity: 0.2;
}

.fl-follow {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}

.fl-follow-title {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 133.333% */
}

.fl-follow-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.fl-follow-item {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2b3e8c;
}

.fl-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.fl-payment-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fl-payment-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    color: #fff;
}

.footer-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-links-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.footer-links-item-title {
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    /* 133.333% */
}

.footer-links-item-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-item-link {
    max-width: 300px;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 150% */
}

.footer-links-item-link i {
    flex-shrink: 0;
}

@media screen and (max-width: 991px) {
    footer {
        flex-direction: column;
        padding: 64px 16px;
        align-items: center;
    }

    .footer-right {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .footer-links-item {
        width: 100%;
        align-items: flex-start;
    }
}

.scroll-to-top {
    width: 50px;
    height: 50px;
    text-align: center;
    background-color: #234a98;
    border-radius: 50%;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
    opacity: 1;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: spineer 2s infinite;
    animation: spineer 2s infinite;
    cursor: pointer;
}

@-webkit-keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(36, 63, 250, 0.99);
    }

    to {
        box-shadow: 0 0 0 25px rgba(148, 194, 46, 0.01);
    }
}

@keyframes spineer {
    from {
        box-shadow: 0 0 0 0 rgb(36, 63, 250, 0.99);
    }

    to {
        box-shadow: 0 0 0 25px rgba(148, 194, 46, 0.01);
    }
}

.mobile-cta-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    transition: all 0.3s ease;
    width: 48px;
    /* Default width - just the button */
    height: 48px;
}

.search-container:hover,
.search-container.active {
    width: 164px;
    /* Input width only */
    max-width: 164px;
}

.search-button {
    width: 48px;
    height: 48px;
    display: flex;
    padding: 12px;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0;
    opacity: 1;
    transform: scale(1);
}

.search-button:not(.active) {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.search-button.active {
    display: flex;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%) scale(0) rotate(180deg);
    padding: 10px;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: #2b3e8c;
    border-radius: 50%;
    z-index: 10;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.search-container:hover .search-button:not(.active),
.search-container.active .search-button:not(.active) {
    opacity: 0;
    transform: scale(0) rotate(-90deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.6, 1);
}

.search-container:hover .search-button.active,
.search-container.active .search-button.active {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(0deg);
}

.search-input {
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    width: 0;
    height: 100%;
    font-size: 16px;
    outline: none !important;
    border: none !important;
    padding: 0 50px 0 24px;
    border-radius: 9999px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.search-container:hover .search-input,
.search-container.active .search-input {
    display: block;
    animation: expandFromRight 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Keyframe animation for input expansion */
@keyframes expandFromRight {
    0% {
        width: 0;
        opacity: 0;
        right: 0;
        padding-left: 0;
    }

    100% {
        width: 100%;
        opacity: 1;
        right: 0;
        padding-left: 24px;
    }
}

.hero-section {
    height: 192px;
    width: 100%;
    padding: 32px 80px 40px 80px;
    background-color: #BDC3DB;
    position: relative;

}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 613px;
    height: 100%;
    background: url("../images/hero-background.svg") no-repeat center center;
    background-size: cover;
    z-index: 1;
    opacity: 0.05;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 460px;
    height: 100%;
    background: url("../images/hero-background-2.svg") no-repeat center center;
    background-size: cover;
    z-index: 1;
    opacity: 0.05;
}

.hero-section-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    z-index: 2;
}

.hero-section-back {
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 6px;
    background: #2B3E8C;
    color: white;
    text-decoration: none;
    width: max-content;
}

.hero-section-title {
    color: #18224D;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.8px;
}

.search-page {
    display: flex;
    width: 100%;
    padding: 48px 80px 80px 80px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    background-color: #fff;
}

.search-page-container {
    width: 100%;
    max-width: 846px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 32px;
}

.sph-input {
    width: max-content;
    position: relative;
}

.sph-input-input {
    max-width: 376px;
    width: 100%;
    border-radius: 9999px;
    background: #F8F9FA;
    display: flex;
    padding: 4px 48px 4px 24px;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    height: 48px;
    outline: none !important;
    border: 1px solid #E9ECEF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    color: #212529;
}

.sph-input-button {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2b3e8c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none !important;
    outline: none !important;
    padding: 0;
}

.search-page-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.search-page-content-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.search-page-content-header .search-text {
    color: #212529;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 155.556% */
}

.search-page-content-header .search-text span {
    color: #2B3E8C;
    font-family: Mulish;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 155.556% */
}

.search-page-content-header .search-count {
    color: #6C757D;
    font-family: Mulish;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.search-page-content-header .search-count span {
    color: #212529;
    font-weight: 700;
    line-height: 20px;
    /* 142.857% */
}

.search-page-content-blogs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.search-blog-card {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
    text-decoration: none;
}

.search-blog-card .search-blog-card-image {
    height: 192px;
    width: 192px;
    border-radius: 8px;
    border: 1px solid var(--Neutral-gray-100, #E9ECEF);
    background: #FFF;

}

.search-blog-card .search-blog-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.sbc-badge {
    display: flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    background: #BDC3DB;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    color: #2B3E8C;
    width: max-content;
    height: 24px;
}

.sbc-title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
    overflow: hidden;
    color: #212529;
    text-overflow: ellipsis;
    /* Text xl/Bold */
    font-family: Mulish;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 120% */
}

.sbc-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    align-self: stretch;
    overflow: hidden;
    color: var(--Neutral-gray-500, #6C757D);
    text-overflow: ellipsis;
    /* Text sm/Medium */
    font-family: Mulish;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

.sbc-button {
    display: flex;
    padding: 6px;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    background: #2B3E8C;
    color: white;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    border-radius: 6px;
    background: #2B3E8C;
    width: max-content;
    /* 133.333% */
}

@media screen and (max-width: 991px) {
    .search-page {
        padding: 40px 16px 64px 16px;
    }

    .hero-section {
        padding: 32px 16px 40px 16px;
        gap: 16px;
        overflow: hidden;
    }

    .hero-section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .search-blog-card {
        gap: 8px !important;
    }

    .search-blog-card .search-blog-card-image {
        height: 128px;
        width: 128px;
    }

    .search-blog-card .search-blog-card-content {
        gap: 4px !important;
    }

    .sbc-title {
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        /* 150% */
    }

    .sbc-description {
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
        /* 133.333% */
        -webkit-line-clamp: 2 !important;
    }

}

.mobile-search-container {
    position: relative;
    width: 100%;
}

.mobile-search-input {
    width: 100%;
    height: 100%;
    font-size: 16px;
    outline: none !important;
    border: none !important;
    padding: 0 50px 0 24px;
    border-radius: 9999px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 48px;
}

.mobile-search-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2B3E8C;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    right: 4px;
    top: 4px;
    z-index: 10;
    outline: none !important;
    border: none !important;
    user-select: none;
}

.language-options {
    position: absolute;
    top: 100%;
    right: 0px;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
    display: none;
    width: 194px;
    padding: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    z-index: 1000;
    margin-top: 4px;
}

.language-container.active .language-options,
.language-options.active {
    display: flex;
}

.language-option {
    display: flex;
    width: 100%;
    padding: 8px 12px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    color: #212529;
    transition: all 0.2s ease;
    text-decoration: none;
}

.language-option-text {
    flex: 1;
}

.language-check-icon {
    opacity: 0;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.language-option:hover {
    background-color: #f3f4f6;
}

.language-option.active {
    background-color: #F8F9FA;
}

.language-option.active .language-check-icon {
    opacity: 1;
}

.selected-language {
    display: flex;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    color: #2B3E8C;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border-radius: 9999px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.selected-language:hover {
    background-color: #f8fafc;
}

.language-container.active .selected-language {
    background-color: #2B3E8C;
    color: #fff;
}

/* Mobile Language Selector */
.mobile-language-container {
    position: relative;
    margin-top: auto;
    padding: 16px 0 0 0;
    border-top: 1px solid #e5e7eb;
    order: 999;
}

.mobile-selected-language {
    display: flex;
    width: 100%;
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    border: 1px solid #e5e7eb;
}

.mobile-language-name {
    flex: 1;
    color: #2B3E8C;
    font-weight: 500;
}

.mobile-language-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-language-code {
    color: #6C757D;
    font-size: 14px;
    font-weight: 400;
}

.mobile-language-icon {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.mobile-language-container.active .mobile-language-icon {
    transform: rotate(180deg);
}

.mobile-selected-language:hover {
    border-color: #2B3E8C;
}

.mobile-language-container.active .mobile-selected-language {
    background-color: #fff;
    border-color: #2B3E8C;
}

.mobile-language-container.active .mobile-language-name {
    color: #2B3E8C;
}

.mobile-language-container.active .mobile-language-code {
    color: #6C757D;
}

.mobile-language-options {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    z-index: 1000;
    margin-bottom: 4px;
}

.mobile-language-container.active .mobile-language-options,
.mobile-language-options.active {
    display: flex;
}

.mobile-language-option {
    text-decoration: none;

    display: flex;
    width: 100%;
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    color: #212529;
    transition: all 0.2s ease;
}

.mobile-language-option-text {
    flex: 1;
}

.mobile-language-check-icon {
    opacity: 0;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
}

.mobile-language-option:hover {
    background-color: #f3f4f6;
}

.mobile-language-option.active {
    background-color: #F8F9FA;
}

.mobile-language-option.active .mobile-language-check-icon {
    opacity: 1;
}