/*------------- Base Styles ---------------*/

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    text-wrap: wrap;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

body {
    font-family: 'rubik', sans-serif;
    user-select: none;
    position: relative;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

main {
    margin-top: 85px;
}

iframe, video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.hidden-svg {
    width: 0;
    height: 0;
    position: absolute;
    overflow: hidden;
  }

/*------------- Responsive Container ---------------*/

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 10px;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

@media screen and (max-width: 1024px) {
    .container {
        max-width: 900px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        max-width: 100%;
    }
}

.container>img {
   
    margin: 0 auto;
    margin-bottom: 20px;
}

/* ---------------Header----------- */
.nav-section {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(24, 24, 248, 0.294);
    border-radius: 17px;
    background: #849EA4;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 30px 30px 60px #d9d9d9, -30px -30px 60px #ffffff;
    z-index: 10;
}
.tg {
    /* position: absolute; */
    /* top: 80vh;
    right: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
  }
  
  .tg img {
    animation: pulse 1.5s infinite;
    transition: 0.3s ease-in-out;
  }
  
  .tg:hover img {
    animation: none;
    transform: scale(1.2);
  }
  

  @keyframes pulse {
    0%   { transform: scale(1); }
    15%  { transform: scale(1.2); }
    25%  { transform: scale(1); }
    35%  { transform: scale(1.2); }
    45%  { transform: scale(1); }
    100% { transform: scale(1); }
  }


.nav-container {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px;
    
}
.link-logo{
    position: relative;
    transform: scale(1);
    transition: transform 300ms ease-in-out;
    margin-right: 15px;
    font-size: 26px;
    font-weight: bold;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;

}
.link-logo:hover{
    transform: scale(1.3);
}
.link-logo>span{
    text-transform: lowercase;
    display: flex;
    align-items: center;
}
.link-logo>span::before{
    display: block;
    content: " ";
    width: 25px;
    height: 3px;
    background: white;
}
.link-logo>span::after{
    display: block;
    content: " ";
    width: 25px;
    height: 3px;
    background: white;
}



.menu {
    display: flex;
    gap: 15px;
}
.menu>li{
    margin-top: 5px;
}
.menu>li>a{
    font-size: 20px;
}
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: #555;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}
.nav-li{
    display: flex;
    gap: 15px;
}
@media screen and (max-width: 768px) {
    .nav-li{
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .nav-li>.nav-link{
        font-size: clamp(15px, 4vw, 18px);
    }
}

.burger-menu:hover {
    background: #777;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: #000;
}

.contacts {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.nav-link-phone{
    font-size: clamp(13px, 4vw, 18px);
    padding: 10px 0;
    color: #ffffff;
    transition: 300ms;
    transform: scale(1);
}
.nav-link {
    padding: 10px 0;
    color: #ffffff;
    transition: 300ms;
    transform: scale(1);
}
.nav-link-phone:hover{
    animation: moveNavLink 500ms linear infinite, scaleUp 500ms ease-in-out;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #0a0d16, #7b7ffe, #0a0d16);
    background-size: 200% 100%;
}
.nav-link:hover {
    animation: moveNavLink 500ms linear infinite, scaleUp 500ms ease-in-out;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #0a0d16, #7b7ffe, #0a0d16);
    background-size: 200% 100%;
}
.social-list-menu{
    display: none;
}

@keyframes moveNavLink {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes scaleUp {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/*--------------- Responsive Header -----------*/
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        flex-wrap: wrap;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        height: 300%;
        background: #849EA4;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        outline: #007bff;
    }
    .contacts {
        margin-right: auto;
    }

    .menu.active {
        display: flex;
        /* width: 65px; */
    }

    .burger-menu {
        display: flex;
        width: 65px;
    }
    .nav-link{
        font-size: clamp(18px, 2vw, 22px);
    }
    .menu.active .social-list-menu{
        display: flex;
        margin-top: 10px;
        
    }
    .menu.active  .social-list-menu>li{
        margin-right: 5px;
    }
   
}

/* ---------------------buble------------------ */
@keyframes rise {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 1;
    }
    50% {
        transform: translateY(-150px) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-300px) scale(1.2);
        opacity: 0;
    }
}

#bubble-container {
    position: absolute;
    top: -10px;
    left: 0;
    width: 300px; 
    height: 150px; 
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.bubble {
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: rise 4s infinite ease-in-out;
    opacity: 0;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

.bubble::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 5px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.bubble:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 4s;
}

.bubble:nth-child(2) {
    left: 30%;
    animation-delay: 1s;
    animation-duration: 4.5s;
}

.bubble:nth-child(3) {
    left: 50%;
    animation-delay: 2s;
    animation-duration: 3.8s;
}

.bubble:nth-child(4) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 4.2s;
}

.bubble:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 4s;
}


/*------------------ Hero Section --------------*/
.hero-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 200px 0;
    background-image: url('./src/img/content/Hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
@media screen and (min-width: 768px) {
    .hero-container>img{
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .hero-container{
        background-image: url('./src/img/content/hero-3.jpg');
        background-position: left center;
    }
}
.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(32, 32, 32, 0.4);
    z-index: 1;
}


.hero-title {
    font-size: clamp(36px, 5vw, 76px);
    font-weight: bold;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
}
.hero-title>span{
    display: flex;
    align-items: center;
}
.hero-title>span::before{
    display: block;
    content: " ";
    width: 75px;
    height: 3px;
    background: white;
}
.hero-title>span::after{
    display: block;
    content: " ";
    width: 75px;
    height: 3px;
    background: white;
}
@media screen and (max-width: 1024px) {
    .hero-title>span::before{
        width: 45px;
    }
    .hero-title>span::after{
        width: 45px;
    }
}
.hero-hero-after-title {
    font-size: 56px;
    text-align: center;
    padding: 0 10px;
    color: white ;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #a9fc3d, #03ffd5, #a9fc3d);
    background-size: 200% 100%;
    animation: moveBackground 5s linear infinite, moveBackgroundStart 500ms ease-in;
    z-index: 2;
}

@keyframes moveBackground {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes moveBackgroundStart {
    0% {
        transform: scale(4);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}
@media screen and (max-width: 768px) {
  
    .hero-hero-after-title {
        font-size: 26px;
        
    }
}

/* -------------- About Section -----------------*/

.about-container{
    padding: 50px 0;
}

.about-container>h2 {
    font-size: clamp(25px, 2vw, 50px);
    text-align: center;
    margin-bottom: 50px;
    white-space: wrap;
}

.about-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch; 
}

.about-item {
    padding: 10px;
    max-width: 300px;
    width: 100%; 
    background: #849EA4;
    border-radius: 17px;
    display: flex;
    flex-direction: column; 
}

.about-item p {
    flex-grow: 1; 
}

.about-item img{
    width: 65px;
}

.about-item>h3 {
    margin-bottom: 10px;
}

[src="./src/svg/vacuum-cleaner-blue.svg"] {
    margin-bottom: 15px;
    transition: 500ms ease-in-out;
}

.about-item:hover [src="./src/svg/vacuum-cleaner-blue.svg"] {
    transform: translateX(200px);
}

/*--------------- price -----------------*/

.prices {
    background-color: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.prices-title {
    font-size: clamp(25px, 2vw, 36px);
    color: #333;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}
.prices-title>img{
    margin-left: 10px;
} 

.prices-intro {
    font-size: clamp(16px, 2vw, 25px);
    color: #555;
    margin-bottom: 30px;
}

.prices-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.prices-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.prices-item {
    position: relative;
    background: #849EA4;
    border-radius: 17px;
    padding: 20px;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s ease;
}

.prices-item:hover {
    transform: translateY(-10px);
}

.prices-item img {
    margin-bottom: 15px;
    transition: transform 0.5s ease-in-out;
    z-index: 2;
}

.prices-item:hover img {
    transform: translateX(200px);
}
.price {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    position: absolute;
    top: 7%; 
    left: 7%; 
    transform: translateX(0) scale(0.8); 
    text-align: center;
    opacity: 0; 
    z-index: 1; 
}

.prices-item:hover .price {
    animation: waveEffect 1s ease-out forwards; 
    animation-delay: 0.3s; 
}

@keyframes waveEffect {
    0% {
        opacity: 0;
        transform: translateX(-100%) scale(0.8); 
    }
    50% {
        transform: translateX(20%) scale(1.1); 
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1); 
    }
}
.prices-item h3 {
    font-size: clamp(16px, 2vw, 25px);
    color: #333;
    margin-bottom: 15px;
}

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

.service-list li {
    font-size: clamp(16px, 2vw, 20px);
    color: #444;
    margin-bottom: 10px;
}

.service-list strong {
    color: #000;
}

.note {
    font-size: clamp(16px, 2vw, 20px);
    color: #666;
    margin-top: 10px;
}

.call-to-action {
    font-size: clamp(25px, 2vw, 40px);
    margin-top: 20px;
}

/*--------------- dop-Prices Section ----------------*/

.dop-prices {
    background-color: #f9f9f9;
    padding: 40px 0;
    color: #333;
}

h2 {
    font-size: clamp(25px, 2vw, 36px);
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

 .benefits-list li {
    background-color: #fff;
    margin: 10px 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: clamp(16px, 2vw, 20px);
    display: flex;
    align-items: center;
}

.service-list strong, .benefits-list strong {
    color: #e74c3c;
    
}

.tagline {
    font-size: clamp(16px, 2vw, 20px);
    text-align: center;
    margin: 20px 0;
}

.note {
    font-size: clamp(16px, 2vw, 20px);
    text-align: center;
    color: #888;
    margin-top: 20px;
}
 .benefits-list li:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
   
 .benefits-list li {
       
        padding: 10px;
    }

   
}
.cta-container {
    text-align: center;
    margin-top: 30px;
}

.cta-button {
    margin-top: 14px;
    background-color: #3498db;
    color: #fff;
    border-style: none;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: clamp(16px, 2vw, 20px);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
}

/* ------------------Why Choose Section -----------------*/
.why-choose {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.why-choose h2 {
    font-size: clamp(30px, 2vw, 36px);
    color: #333;
    margin-bottom: 20px;
}

.why-choose .tagline {
    font-size: clamp(16px, 2vw, 20px);
    color: #555;
    margin-bottom: 30px;
}
.photo-box {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    border-radius: 10px;
    margin: 0 auto;
}
@media screen and (max-width: 768px) {
  
    .photo-box {
       
        padding: 10px;
    }
}
.photo-box-list {
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-box-item {
    padding: 10px;
}
.photo-box-item img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 300ms ease-in-out;
}
.photo-box-item:hover img {
    transform: scale(1.2);
}
.slick-prev, .slick-next {
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
}
.slick-prev:hover, .slick-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.slick-dots li button:before {
    font-size: 12px;
    color: #000;
}
/* -------------------advise--------------------  */
.advise-container {
    padding: 50px 10px;
}

.advise-container > h2 {
    font-size: clamp(25px, 2vw, 50px);
    text-align: center;
    margin-bottom: 50px;
    white-space: wrap;
}

.advise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

.advise-item {
    padding: 15px;
    max-width: 320px;
    width: 100%;
    background: #849EA4;
    border-radius: 17px;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

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

.advise-item p {
    flex-grow: 1;
    font-size: 16px;
    color: #333;
}

.advise-item img {
    width: 65px;
    margin-bottom: 15px;
    transition: 500ms ease-in-out;
}

.advise-item:hover img {
    transform: translateX(200px);
}

.advise-item > h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #2C3E50;
}
/*-------------------- Footer -------------------*/

footer {
    background: #333;
    padding: 40px 20px;
    color: white;
}

.footer-container {
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
@media (max-width: 768px) {
    .nav-linl-box{
       flex-direction: column;
       align-items: center;
    }
    .footer-container{
        flex-direction: column;
        align-items: center;
    }
    .link-logo-footer{
        margin: 0;
    }
    .footer-container h3 {
        text-align: center;
    }
    .footer-container li {
        text-align: center;
    }
}
.nav-linl-box{
    display: flex;
    gap: 20px;
    font-weight: 600;
}
.footer-container ul {
    list-style: none;
    padding: 0;
    max-width: 340px;
}


.footer-container li {
    margin-bottom: 16px;
}

.footer-box>li>p{
    text-align: center;
}

.footer-container h3 {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 16px;
}

.footer-container a {
    text-decoration: none;
    color: #bbb;
    transition: all 0.3s;
}

.footer-container a:hover {
    color: white;
}

.social-list {
    display: flex;
    gap: 16px;
}

.input-box {
    display: flex;
    gap: 10px;
}

[type="email"] {
    padding: 12px 20px;
    border-radius: 50px;
    background: transparent;
    border: 1px solid #81818baa;
    color: white;
}

[type="email"]::placeholder {
    color: aliceblue;
}

li>.footer-link__gray{
    color: #849EA4;
}
.detailClas{
    font-size: 24px;
    font-weight: 600;
    color: #93dbe9;
}


@media (max-width: 1200px) {
    .footer-box {
        justify-content: space-around;
    }
}

@media (max-width: 1024px) {
    .footer-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .social-list {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-box ul {
        max-width: 100%;
    }
    .input-box {
        flex-direction: column;
    }
    [type="email"] {
        width: 100%;
        text-align: center;
    }
}
@media (max-width: 375px) {
    .footer-container {
       display: flex;
       flex-direction: column;
        
    }
}

@media (max-width: 320px) {
    .footer-box {
        padding: 10px;
       
    }
    button {
        width: 100%;
    }
}
/* -----------------modal------------------ */
.beckdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(25, 28, 38, 0.533);
    transition: opacity 300ms, visibility 300ms;
    z-index: 1000;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    /* padding: 20px; */
}

.modal {
    position: relative;
    width: 100%;
    max-width: 400px; 
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    transition: transform 300ms ease-in-out;
}

.modal-close::before,
.modal-close::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-close:hover {
    transform: rotate(90deg);
}

.is-hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.modal-title {
    font-size: clamp(26px, 2vw, 36px);
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.Utility-box {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Utility-box li {
    margin-bottom: 10px;
}

.nav-link-modal {
    color: #3498db;
    text-decoration: none;
    font-size: clamp(16px, 2vw, 20px);
    transition: color 300ms;
}

.nav-link-modal:hover {
    color: #e74c3c;
}

.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-item {
    padding: 5px;
    width: 46px;
    height: 46px;
    transition:  300ms ease-in-out;
}

.social-item:hover {
    transform: scale(1.3);
}

.modal a[href^="mailto:"] {
    display: block;
    margin-top: 20px;
    color: #3498db;
    text-decoration: none;
    font-size: clamp(16px, 2vw, 20px);
    transition: 300ms;
}

.modal a[href^="mailto:"]:hover {
    font-size: clamp(16px, 2vw, 20px);
    color: #e74c3c;
}


@media screen and (min-width: 320px) {
    .modal {
        max-width: 300px;
        padding: 15px;
    }

   
}


@media screen and (min-width: 375px) {
    .modal {
        max-width: 350px;
    }

}

@media screen and (min-width: 425px) {
    .modal {
        max-width: 400px;
    }

}


@media screen and (min-width: 768px) {
    .modal {
        max-width: 600px;
        padding: 30px;
    }

}


@media screen and (min-width: 1024px) {
    .modal {
        max-width: 700px;
        padding: 40px;
    }

}
/* ---------------slik-------------- */
.slick-prev, .slick-next {
    z-index: 8;
    background-color: black !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.slick-prev:hover, .slick-next:hover {
    background-color: black !important;
}
/* .photo-box-item.open img {
    width: auto;
    max-width: 100%;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px;
    border-radius: 10px;
} */
/* --------------------id="language-toggle"------------------- */

.language-selector {
    position: relative;
    display: inline-block;
  }
  @media screen and (max-width: 768px) {
    .language-selector {
        display: none;
      }
      .lang-menu {
        right: 50%;
      }
}

.language-selector-menu {
    position: relative;
    display: inline-block;
    max-width: 90px;
  }
  @media screen and (min-width: 769px) {
    .language-selector-menu {
       display: none;
      }

}
.lang-btn{
    display: flex;
    align-items: center;
}
  
  .lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 10px;
  }
  @media screen and (max-width: 769px) {
    .lang-btn  {
        padding: 0;
      }

}
  
  .lang-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
    width: 140px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    z-index: 10;
  }
  
  .lang-menu li {
    padding: 8px 12px;
    cursor: pointer;
  }
  
  .lang-menu li:hover {
    background-color: #f0f0f0;
  }
  
  .hidden {
    display: none;
  }
  